@import url("https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
    --bg-void: #14121c;
    --bg-deep: #1c1926;
    --surface: #2b2733;
    --surface-hi: #3a3545;
    --edge: #4a4557;

    --mint: #5cd6c0;
    --checkpoint: #3ee88c;
    --coral: #ff7b7b;
    --amber: #ffc44d;
    --lilac: #b79eeb;
    --sky: #4da6e8;

    --text: #edebf2;
    --text-mute: #8e889c;
    --cta: #7bc47f;
    --cta-dark: #4e8a55;

    --font-display: "Silkscreen", "Courier New", monospace;
    --font-body: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --header-h: 72px;
    --radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    background: var(--bg-void);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.fixed {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}
button {
    font: inherit;
    color: inherit;
    cursor: pointer;
}
i {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-void);
    display: flex;
    align-items: center;
    justify-content: center;
}

html.hide .preloader {
    display: none;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(19px, 2.5vw, 29px);
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    max-width: 20ch;
}

.section-head {
    margin-bottom: 64px;
}
.section-head .section-title {
    max-width: 24ch;
}

p {
    max-width: 62ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition:
        transform 220ms var(--ease),
        box-shadow 220ms var(--ease),
        background-color 220ms var(--ease);
}

.btn-cta {
    background: var(--cta);
    color: #10200f;
    box-shadow: 4px 4px 0 var(--cta-dark);
}

.btn-cta:hover {
    background: #8ed092;
    transform: translate(1px, 1px);
    box-shadow: 3px 3px 0 var(--cta-dark);
}

.btn-cta:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--cta-dark);
}

.btn-sm {
    padding: 11px 18px;
    font-size: 12px;
    box-shadow: 3px 3px 0 var(--cta-dark);
}

@keyframes float-cta {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.btn-float {
    animation: float-cta 3s ease-in-out infinite;
}
.btn-float:hover {
    animation-play-state: paused;
}

.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 24px 38px, rgba(237, 235, 242, 0.2), transparent),
        radial-gradient(1px 1px at 148px 96px, rgba(237, 235, 242, 0.13), transparent),
        radial-gradient(1px 1px at 212px 22px, rgba(237, 235, 242, 0.17), transparent),
        radial-gradient(1px 1px at 68px 172px, rgba(237, 235, 242, 0.1), transparent),
        radial-gradient(1px 1px at 258px 208px, rgba(237, 235, 242, 0.15), transparent),
        radial-gradient(1px 1px at 176px 254px, rgba(237, 235, 242, 0.09), transparent),
        radial-gradient(1px 1px at 108px 122px, rgba(237, 235, 242, 0.12), transparent);
    background-size: 300px 300px;
}

.beam {
    position: absolute;
    width: 200px;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(92, 214, 192, 0.3), rgba(62, 232, 140, 0.1) 45%, transparent 80%);
    filter: blur(34px);
    animation: beam-pulse 3s ease-in-out infinite;
}

@keyframes beam-pulse {
    0%,
    100% {
        opacity: 0.72;
    }
    50% {
        opacity: 1;
    }
}

.tilegrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(26.57deg, var(--edge) 0 1px, transparent 1px 64px),
        repeating-linear-gradient(-26.57deg, var(--edge) 0 1px, transparent 1px 64px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: var(--header-h);
    transition:
        background-color 300ms var(--ease),
        border-color 300ms var(--ease);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(20, 18, 28, 0.88);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--edge);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-word {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
    white-space: nowrap;
}

.logo-word i:nth-child(1) {
    color: var(--mint);
}
.logo-word i:nth-child(2) {
    color: var(--checkpoint);
}
.logo-word i:nth-child(3) {
    color: var(--amber);
}
.logo-word i:nth-child(4) {
    color: var(--lilac);
}
.logo-word i:nth-child(5) {
    color: var(--sky);
}
.logo-word i:nth-child(6) {
    color: var(--coral);
}
.logo-word i:nth-child(7) {
    color: var(--mint);
}
.logo-word i:nth-child(8) {
    color: var(--amber);
}
.logo-word i:nth-child(9) {
    color: var(--checkpoint);
}
.logo-word i:nth-child(10) {
    color: var(--lilac);
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav .nav-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
    transition: color 260ms var(--ease);
}

.nav .nav-link:hover {
    color: var(--mint);
}

.burger-btn {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    padding: 8px;
    margin-left: auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.burger-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    transform-origin: 50% 50%;
    transition:
        transform 300ms var(--ease),
        opacity 200ms var(--ease);
}

.burger-btn.act span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.burger-btn.act span:nth-child(2) {
    opacity: 0;
}
.burger-btn.act span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 890;
    background: var(--bg-void);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms var(--ease);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 40px 24px;
    overflow-y: auto;
}

.mobile-menu.opened {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav .nav-link {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 80px) 0 100px;
    overflow: hidden;
}

.hero {
    background:
        radial-gradient(ellipse 46% 52% at 76% 58%, rgba(92, 214, 192, 0.14), transparent 70%),
        radial-gradient(ellipse 60% 46% at 18% 26%, rgba(77, 166, 232, 0.07), transparent 72%),
        radial-gradient(ellipse 96% 78% at 52% 34%, #211e2e, transparent 78%), var(--bg-void);
}

.hero .tilegrid {
    opacity: 0.07;
    -webkit-mask-image: linear-gradient(to top, #000 4%, transparent 60%);
    mask-image: linear-gradient(to top, #000 4%, transparent 60%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 62%, var(--bg-void) 99%);
    pointer-events: none;
}

.beam-hero {
    right: 15%;
    height: 74%;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(26px, 4.4vw, 52px);
    line-height: 1.32;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-mute);
    max-width: 46ch;
    margin-bottom: 38px;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.pills li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: 4px;
    padding: 7px 12px;
}

.hero-art {
    position: relative;
}

.hero-art img {
    width: 100%;
    max-width: clamp(400px, 36vw, 560px);
    max-height: 66vh;
    object-fit: contain;
    object-position: right center;
    margin-left: auto;
    filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.62));
}

.section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.section-about {
    background: var(--bg-deep);
}
.section-features {
    background: var(--bg-deep);
}
.section-highlights {
    background: var(--bg-deep);
}

.section-about .tilegrid {
    opacity: 0.05;
    -webkit-mask-image: linear-gradient(115deg, #000 6%, transparent 58%);
    mask-image: linear-gradient(115deg, #000 6%, transparent 58%);
}

.about-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: 24px;
    align-items: start;
}

.about-head {
    grid-column: 1 / 8;
    grid-row: 1;
}

.about-head .section-title {
    max-width: 18ch;
}

.about-art {
    position: relative;
    grid-column: 1 / 8;
    grid-row: 2;
    margin-top: 58px;
    margin-left: calc(-1 * (max(0px, (100vw - 1200px) / 2) + 24px));
}

.about-art img {
    width: 100%;
    border: 1px solid var(--edge);
    border-left: 0;
}

.about-art::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 2px;
    background: var(--mint);
}

.about-copy {
    grid-column: 8 / 13;
    grid-row: 1 / span 2;
    position: relative;
    padding: 132px 0 0 34px;
    border-left: 1px solid var(--edge);
}

.about-copy::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 132px;
    width: 2px;
    height: 58px;
    background: var(--mint);
}

.about-copy .lead {
    font-size: 21px;
    line-height: 1.6;
    color: var(--mint);
    margin: 0 0 30px;
    max-width: 34ch;
}

.about-copy p + p {
    margin-top: 20px;
}
.about-copy p:not(.lead) {
    color: var(--text-mute);
}

@media (min-width: 1025px) {
    .section-about {
        padding-bottom: 0;
    }
}

.section-steps .tilegrid {
    opacity: 0.05;
    -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 62%, #000, transparent 78%);
    mask-image: radial-gradient(ellipse 62% 58% at 50% 62%, #000, transparent 78%);
}

.steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    padding: 26px 0 130px;
}

.step {
    --accent: var(--edge);
    --drop: 0px;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    padding: 42px 22px 28px;
    transition:
        transform 400ms var(--ease),
        border-color 400ms var(--ease),
        background-color 400ms var(--ease);
}

.step-1 {
    --accent: var(--mint);
}
.step-2 {
    --accent: var(--lilac);
    --drop: 28px;
}
.step-3 {
    --accent: var(--coral);
    --drop: 56px;
}
.step-4 {
    --accent: var(--amber);
    --drop: 84px;
}
.step-5 {
    --accent: var(--checkpoint);
    --drop: 112px;
}

.steps .reveal {
    transform: translate(-24px, calc(var(--drop) + 14px));
}

.steps .reveal.in {
    transform: translate(0, var(--drop));
}

.steps .reveal.in:hover {
    transform: translate(0, calc(var(--drop) - 3px));
    border-color: var(--accent);
    background: var(--surface-hi);
}

.step-num {
    position: absolute;
    top: -17px;
    left: 22px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--accent);
    background: var(--bg-void);
    transform: rotate(45deg);
    transition:
        background-color 400ms var(--ease),
        box-shadow 400ms var(--ease);
}

.step-num i {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--accent);
    transform: rotate(-45deg);
    transition: color 400ms var(--ease);
}

.step:hover .step-num {
    background: var(--accent);
    box-shadow: 0 0 22px -4px var(--accent);
}

.step:hover .step-num i {
    color: var(--bg-void);
}

.step-5 .step-num {
    box-shadow: 0 0 26px -6px var(--checkpoint);
}

.step-5::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -130px;
    width: 120px;
    height: 130px;
    margin-left: -60px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(62, 232, 140, 0.22), transparent 78%);
    filter: blur(24px);
    animation: beam-pulse 3s ease-in-out infinite;
}

.step h3,
.feature h3,
.hl h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.step p,
.feature p,
.hl p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-mute);
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 35.6px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(to right, var(--accent), var(--edge));
    opacity: 0.5;
    transform-origin: 0 50%;
    transform: rotate(51.84deg);
    transition: opacity 400ms var(--ease);
}

.step:hover::after {
    opacity: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--edge);
    border-left: 2px solid var(--edge);
    border-radius: var(--radius);
    padding: 30px 26px 32px;
    transition:
        transform 400ms var(--ease),
        border-color 400ms var(--ease);
}

.feature:hover {
    transform: translateY(-2px);
}

.glyph {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: var(--surface-hi);
    margin-bottom: 22px;
}

.glyph svg {
    display: block;
}

.f-mint {
    border-left-color: var(--mint);
}
.f-mint .glyph svg {
    fill: var(--mint);
}
.f-mint:hover {
    border-color: var(--mint);
}

.f-checkpoint {
    border-left-color: var(--checkpoint);
}
.f-checkpoint .glyph svg {
    fill: var(--checkpoint);
}
.f-checkpoint:hover {
    border-color: var(--checkpoint);
}

.f-coral {
    border-left-color: var(--coral);
}
.f-coral .glyph svg {
    fill: var(--coral);
}
.f-coral:hover {
    border-color: var(--coral);
}

.f-lilac {
    border-left-color: var(--lilac);
}
.f-lilac .glyph svg {
    fill: var(--lilac);
}
.f-lilac:hover {
    border-color: var(--lilac);
}

.f-sky {
    border-left-color: var(--sky);
}
.f-sky .glyph svg {
    fill: var(--sky);
}
.f-sky:hover {
    border-color: var(--sky);
}

.section-levels .section-title {
    color: var(--amber);
}

.levels-art {
    margin: 0 0 56px;
    border-top: 1px solid var(--edge);
    border-bottom: 1px solid var(--edge);
}

.levels-art img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.levels-copy {
    font-size: 18px;
    color: var(--text-mute);
    max-width: 62ch;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--edge) transparent;
}

.gallery-strip::-webkit-scrollbar {
    height: 6px;
}
.gallery-strip::-webkit-scrollbar-track {
    background: var(--surface);
}
.gallery-strip::-webkit-scrollbar-thumb {
    background: var(--edge);
    border-radius: 3px;
}

.shot {
    min-width: 0;
    scroll-snap-align: center;
}

.shot img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border: 1px solid var(--edge);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 0 34px rgba(92, 214, 192, 0.14);
    transition:
        box-shadow 400ms var(--ease),
        border-color 400ms var(--ease);
}

.shot:hover img {
    border-color: var(--mint);
    box-shadow: 0 0 44px rgba(92, 214, 192, 0.28);
}

.shot figcaption {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 16px;
}

.highlights {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--edge);
}

.hl {
    --accent: var(--mint);
    --glow: rgba(92, 214, 192, 0.3);
    position: relative;
    padding: 58px 32px 46px;
    overflow: hidden;
    transition: background-color 400ms var(--ease);
}

.hl + .hl {
    border-left: 1px solid var(--edge);
}

.hl::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 104px;
    height: 220px;
    margin-left: -52px;
    pointer-events: none;
    background: linear-gradient(to bottom, var(--glow), transparent 82%);
    filter: blur(32px);
    opacity: 0.55;
    animation: beam-pulse 3s ease-in-out infinite;
    transition: opacity 400ms var(--ease);
}

.hl::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 64px;
    height: 2px;
    background: var(--accent);
    transition: width 460ms var(--ease);
}

.hl:hover {
    background: rgba(43, 39, 51, 0.4);
}

.hl:hover::before {
    opacity: 1;
}

.hl:hover::after {
    width: 100%;
}

.hl-num {
    position: relative;
    display: block;
    font-family: var(--font-display);
    font-size: 46px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--accent);
    margin-bottom: 34px;
}

.h-mint {
    --accent: var(--mint);
    --glow: rgba(92, 214, 192, 0.3);
}

.h-checkpoint {
    --accent: var(--checkpoint);
    --glow: rgba(62, 232, 140, 0.28);
}

.h-amber {
    --accent: var(--amber);
    --glow: rgba(255, 196, 77, 0.24);
}

.h-lilac {
    --accent: var(--lilac);
    --glow: rgba(183, 158, 235, 0.26);
}

.faq {
    max-width: none;
}

section.section-faq {
    overflow: visible;
    padding-bottom: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
    gap: 72px;
    align-items: start;
}

.faq-head {
    position: sticky;
    top: calc(var(--header-h) + 48px);
    margin-bottom: 0;
}

.faq-head .section-title {
    max-width: 12ch;
}

.faq-item {
    --accent: var(--mint);
    --glow: rgba(92, 214, 192, 0.13);
    position: relative;
    border-top: 1px solid var(--edge);
}
.faq-item:last-child {
    border-bottom: 1px solid var(--edge);
}

.q-mint {
    --accent: var(--mint);
    --glow: rgba(92, 214, 192, 0.13);
}
.q-lilac {
    --accent: var(--lilac);
    --glow: rgba(183, 158, 235, 0.12);
}
.q-sky {
    --accent: var(--sky);
    --glow: rgba(77, 166, 232, 0.12);
}
.q-amber {
    --accent: var(--amber);
    --glow: rgba(255, 196, 77, 0.11);
}
.q-checkpoint {
    --accent: var(--checkpoint);
    --glow: rgba(62, 232, 140, 0.12);
}

.faq-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 2px;
    height: 0;
    background: var(--accent);
    transition: height 460ms var(--ease);
}

.faq-item.open::before {
    height: calc(100% + 1px);
}

.faq-item::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 210px;
    pointer-events: none;
    background: linear-gradient(to right, var(--glow), transparent);
    opacity: 0;
    transition: opacity 460ms var(--ease);
}

.faq-item.open::after {
    opacity: 1;
}

.faq-q {
    position: relative;
    z-index: 1;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 16px;
    padding: 26px 22px 26px 24px;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    transition: color 260ms var(--ease);
}

.faq-q:hover {
    color: var(--accent);
}

.faq-idx {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-mute);
    transition: color 360ms var(--ease);
}

.faq-q:hover .faq-idx,
.faq-item.open .faq-idx {
    color: var(--accent);
}

.faq-ico {
    position: relative;
    width: 22px;
    height: 22px;
    border: 1px solid var(--edge);
    transform: rotate(45deg);
    transition:
        border-color 360ms var(--ease),
        background-color 360ms var(--ease);
}

.faq-q:hover .faq-ico {
    border-color: var(--accent);
}

.faq-item.open .faq-ico {
    border-color: var(--accent);
    background: var(--accent);
}

.faq-ico::before,
.faq-ico::after {
    content: "";
    position: absolute;
    background: var(--accent);
    transition:
        transform 320ms var(--ease),
        opacity 320ms var(--ease),
        background-color 320ms var(--ease);
}

.faq-ico::before {
    top: 10px;
    left: 3px;
    width: 14px;
    height: 1px;
    transform: rotate(-45deg);
}

.faq-ico::after {
    top: 3px;
    left: 10px;
    width: 1px;
    height: 14px;
    transform: rotate(-45deg);
}

.faq-item.open .faq-ico::before {
    background: var(--bg-void);
}

.faq-item.open .faq-ico::after {
    transform: rotate(45deg);
    opacity: 0;
}

.faq-a {
    position: relative;
    z-index: 1;
    display: none;
}
.faq-a p {
    padding: 0 22px 30px 86px;
    color: var(--text-mute);
    max-width: 62ch;
}

.section-contact {
    padding: 150px 0 160px;
}
.beam-end {
    left: 50%;
    margin-left: -100px;
    height: 55%;
}

.contact-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-inner .section-title {
    max-width: unset;
}

.contact-mail {
    font-family: var(--font-mono);
    font-size: 15px;
    letter-spacing: 0.06em;
    color: var(--mint);
    margin: 28px 0 40px;
    border-bottom: 1px solid rgba(92, 214, 192, 0.35);
    padding-bottom: 3px;
    transition:
        color 260ms var(--ease),
        border-color 260ms var(--ease);
}

.contact-mail:hover {
    color: var(--checkpoint);
    border-bottom-color: var(--checkpoint);
}

.footer {
    position: relative;
    border-top: 1px solid var(--edge);
    padding: 56px 0 48px;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(20, 18, 28, 0.72), var(--bg-void));
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.logo-sm .logo-word {
    font-size: 14px;
    color: var(--text-mute);
    text-shadow: none;
}

.footer-nav {
    display: flex;
    gap: 26px;
}

.footer-nav a,
.copy {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text-mute);
}

.footer-nav a {
    transition: color 260ms var(--ease);
}
.footer-nav a:hover {
    color: var(--mint);
}

.legal-page {
    padding: calc(var(--header-h) + 90px) 0 120px;
    position: relative;
}

.legal-page .stars {
    opacity: 0.5;
}

.legal-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-deep);
    border: 1px solid var(--edge);
    border-top: 2px solid var(--mint);
    border-radius: var(--radius);
    padding: 56px 48px 60px;
}

.legal-content h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.legal-content h2,
.legal-content h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mint);
    margin: 40px 0 16px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-mute);
    max-width: none;
}

.legal-content p {
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 18px;
}

.legal-content ol {
    list-style: decimal;
}
.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--mint);
    border-bottom: 1px solid rgba(92, 214, 192, 0.35);
}
.legal-content a:hover {
    color: var(--checkpoint);
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
    font-size: 14px;
}

.legal-content th,
.legal-content td {
    border: 1px solid var(--edge);
    padding: 12px 14px;
    text-align: left;
    color: var(--text-mute);
    vertical-align: top;
}

.legal-content th {
    color: var(--text);
    font-weight: 600;
    background: var(--surface);
}

.legal-scroll {
    overflow-x: auto;
}

.reveal {
    opacity: 0;
    transform: translate(-24px, 14px);
    transition:
        opacity 520ms var(--ease),
        transform 520ms var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translate(0, 0);
}

.steps .reveal:nth-child(2),
.features .reveal:nth-child(2),
.highlights .reveal:nth-child(2),
.gallery-strip .reveal:nth-child(2) {
    transition-delay: 70ms;
}
.steps .reveal:nth-child(3),
.features .reveal:nth-child(3),
.highlights .reveal:nth-child(3),
.gallery-strip .reveal:nth-child(3) {
    transition-delay: 140ms;
}
.steps .reveal:nth-child(4),
.features .reveal:nth-child(4),
.highlights .reveal:nth-child(4),
.gallery-strip .reveal:nth-child(4) {
    transition-delay: 210ms;
}
.steps .reveal:nth-child(5),
.features .reveal:nth-child(5),
.gallery-strip .reveal:nth-child(5) {
    transition-delay: 280ms;
}
.faq-item:nth-child(2) {
    transition-delay: 60ms;
}
.faq-item:nth-child(3) {
    transition-delay: 120ms;
}
.faq-item:nth-child(4) {
    transition-delay: 180ms;
}
.faq-item:nth-child(5) {
    transition-delay: 240ms;
}

@media (max-width: 1024px) {
    .section {
        padding: 108px 0;
    }
    .section-head {
        margin-bottom: 48px;
    }
    .nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .hero {
        min-height: 0;
        padding: calc(var(--header-h) + 64px) 0 84px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-art img {
        max-width: 300px;
        margin: 0 auto;
    }
    .about-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .about-head,
    .about-art,
    .about-copy {
        grid-column: 1;
        grid-row: auto;
    }
    .about-art {
        margin-top: 0;
        margin-left: -24px;
        margin-right: -24px;
    }
    .about-art img {
        border-right: 0;
    }
    .about-art::after {
        right: 24px;
    }
    .about-copy {
        padding: 0 0 0 24px;
    }
    .about-copy::before {
        top: 0;
        height: 46px;
    }
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 20px;
        padding: 26px 0 0;
    }
    .step-2,
    .step-3,
    .step-4,
    .step-5 {
        --drop: 0px;
    }
    .step:not(:last-child)::after {
        display: none;
    }
    .step-5::before {
        display: none;
    }
    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hl {
        padding: 46px 26px 38px;
    }
    .hl + .hl {
        border-left: 0;
    }
    .hl:nth-child(even) {
        border-left: 1px solid var(--edge);
    }
    .hl:nth-child(n + 3) {
        border-top: 1px solid var(--edge);
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .faq-head {
        position: static;
        margin-bottom: 48px;
    }
    .faq-head .section-title {
        max-width: 24ch;
    }
    .legal-content {
        padding: 44px 32px 48px;
    }
    .gallery-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -24px;
        padding: 4px 24px 24px;
    }
    .shot {
        flex: 0 0 auto;
        width: 244px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }
    body {
        font-size: 16px;
    }
    .section {
        padding: 84px 0;
    }
    .section-contact {
        padding: 92px 0 96px;
    }
    .hero-sub {
        font-size: 17px;
        margin-bottom: 32px;
    }
    .about-copy .lead {
        font-size: 19px;
    }
    .levels-copy {
        font-size: 17px;
    }
    .levels-art {
        margin-bottom: 40px;
    }
    .levels-art img {
        max-height: 320px;
    }
    .beam {
        width: 150px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }
    .section {
        padding: 76px 0;
    }
    .section-head {
        margin-bottom: 40px;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .about-art {
        margin-left: -18px;
        margin-right: -18px;
    }
    .about-art::after {
        right: 18px;
    }
    .about-copy {
        padding-left: 18px;
    }
    .features {
        grid-template-columns: 1fr;
    }
    .highlights {
        grid-template-columns: 1fr;
    }
    .hl {
        padding: 40px 0 34px;
    }
    .hl:nth-child(even) {
        border-left: 0;
    }
    .hl + .hl {
        border-top: 1px solid var(--edge);
    }
    .hl-num {
        font-size: 38px;
        margin-bottom: 26px;
    }
    .hero-art img {
        max-width: 230px;
    }
    .pills {
        gap: 8px;
        margin-top: 32px;
    }
    .btn {
        width: 100%;
    }
    .btn-sm {
        width: auto;
    }
    .gallery-strip {
        margin: 0 -18px;
        padding: 4px 18px 22px;
        gap: 16px;
    }
    .shot {
        width: 200px;
    }
    .faq-q {
        font-size: 16px;
        grid-template-columns: 32px minmax(0, 1fr) 20px;
        gap: 12px;
        padding: 22px 14px 22px 16px;
    }
    .faq-a p {
        padding: 0 14px 26px 60px;
    }
    .faq-item::after {
        width: 150px;
    }
    .legal-content {
        padding: 32px 20px 36px;
        border-radius: 4px;
    }
    .legal-content th,
    .legal-content td {
        padding: 9px 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .beam {
        animation: none;
    }
    .btn-float {
        animation: none;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        scroll-behavior: auto !important;
    }
}
