/* START RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.5;
    vertical-align: baseline;
}

a {
    text-decoration: none;
}
/* END RESET */

/* START OTHER */
header .right ul li,
header .left ul li,
.block ul li {
    list-style-type: none;
}

a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.creator {
    text-transform: uppercase;
    text-align: end;
}
.what,
.creator {
    opacity: 0.85;
}
/* END OTHER */

/* START EFFECTS */
/*footer,
section .block,*/
.left,
.header,
.right {
    backdrop-filter: blur(8px);
}

.noise-layer {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 128 128' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='16' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; /* или soft-light, multiply */
  opacity: 0.08;
  pointer-events: none;
}
/* END EFFECTS */

/* START BASIC LAYOUT */
.content,
section,
footer,
.masters,
.pricelist {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    z-index: 1;
}

header {
    text-align: center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}

section {
    justify-content: center;
    align-items: center;
}

.hero .text {
    text-align: center;
}

footer,
section .block,
.header,
.right {
    border-style: solid;
    border-width: 3px;
    border-radius: 1.5em;
}

footer {
    border-width: 3px 0 0 0 ;
    border-radius: 0;
}
/* END BASIC LAYOUT */
/* START COLORS */
body {
    background-color: rgb(22, 0, 46);
    color: rgb(205, 214, 244);
}

header,
footer,
section .block,
.left,
.header,
.right {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

section .block {
    background-color: rgb(33, 11, 57);
}

.header .logo,
.business-name {
    background: linear-gradient(45deg, rgb(200, 20, 200), rgb(132, 20, 255));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

a {
    color: rgb(205, 214, 244);
    text-decoration-color: rgba(132, 20, 255, 0.5);
}

h2,
section .text strong {
    color: rgb(132, 20, 255);
}

.block.block-nobg {
    background-color: rgb(22, 0, 46);
}

.grid-background::before {
    background-image:
        linear-gradient(rgba(132, 20, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(132, 20, 255, 0.1) 1px, transparent 1px);
}

.plane {
    background-image:
        linear-gradient(to right, rgba(132, 20, 255, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(132, 20, 255, 0.4) 1px, transparent 1px);
}

.plane-fog-bottom {
    background: linear-gradient(transparent 50%, rgb(22, 0, 46) 60%);
}

.plane-fog-center {
    background: linear-gradient(90deg, transparent 0%, rgb(22, 0, 46) 40%, rgb(22, 0, 46) 60%, transparent 100%);
}
/* END COLORS */
/* START BACKGROUND */
.grid-background {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 20px 20px;
    z-index: -1;
}

.plane {
    position: absolute;
    top: 0;
    height: 100%;
    width: 45vw;
    background-size: 40px 40px;
    transform-style: preserve-3d;
}

.plane_left {
    left: 0;
    transform-origin: right center;
    transform: rotateY(45deg);
}

.plane_right {
    right: 0;
    transform-origin: left center;
    transform: rotateY(-45deg);
}

.plane-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* ← важно: не мешать кликам */
  z-index: -1;          /* ← фон, но не -999 (может конфликтовать с ::before/::after) */
  perspective: 1000px;  /* ← только здесь, а не на body */
}

.plane-fog-bottom {
    position: absolute;
    bottom: -40%;
    height: 100%;
    width: 100%;
}

.plane-fog-center {
    position: absolute;
    bottom: 0%;
    height: 150vh;
    width: 100%;
}
/* END BACKGROUND */
/* START FONTS */
header,
section .text,
section .block {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

header .logo,
.business-name {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-weight: 650;
}

header * .logo {
    text-transform: uppercase;
}

header * .tagline {
    font-weight: 500;
}

.text .accent strong {
    font-family: "Roboto Flex", sans-serif;
    font-variation-settings:
        "wdth" 150;
}

header .right,
section .text .accent {
    font-weight: 400;
}

.right .material-icons {
    font-size: 1.2em;
}

.material-icons {
    vertical-align: middle;
}
/* END FONTS */
