﻿:root {
    --bg: #05050a;
    --bg-soft: #0b0b12;
    --panel: rgba(17, 17, 27, .78);
    --line: rgba(255, 255, 255, .13);
    --line-strong: rgba(255, 255, 255, .26);
    --text: #f8f8fb;
    --muted: #9a9aab;
    --cyan: #21e7ff;
    --pink: #ff3fce;
    --violet: #8b5cff;
    --green: #80ffba;
    --danger: #ff647c;
    --max: 1480px;
    --header-h: 90px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: radial-gradient( circle at 15% 20%, rgba(139, 92, 255, .09), transparent 27rem), radial-gradient( circle at 85% 75%, rgba(33, 231, 255, .06), transparent 30rem), var(--bg);
    font-family: Inter, Pretendard, "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
    line-height: 1.55;
    word-break: keep-all;
    cursor: default;
}

    body.modal-open {
        overflow: hidden;
    }


.cursor-enhanced,
.cursor-enhanced a,
.cursor-enhanced button,
.cursor-enhanced input,
.cursor-enhanced select,
.cursor-enhanced textarea {
    cursor: none !important;
}

.cursor-dot,
.cursor-ring {
    opacity: 0;
}

.cursor-enhanced .cursor-dot,
.cursor-enhanced .cursor-ring {
    opacity: 1;
}


.no-custom-cursor,
.no-custom-cursor a,
.no-custom-cursor button,
.no-custom-cursor input,
.no-custom-cursor select,
.no-custom-cursor textarea {
    cursor: auto !important;
}

    .no-custom-cursor .cursor-dot,
    .no-custom-cursor .cursor-ring {
        display: none !important;
    }

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    color: inherit;
}

button {
    border: 0;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: #05050a;
    background: var(--cyan);
}

.section-shell {
    position: relative;
    width: min(calc(100% - 80px), var(--max));
    margin-inline: auto;
}

.stage-canvas,
.aurora,
.noise-layer,
.scanline-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.stage-canvas {
    z-index: -6;
    width: 100%;
    height: 100%;
    opacity: .92;
}

.aurora {
    z-index: -5;
    filter: blur(90px);
    opacity: .18;
    border-radius: 50%;
    animation: aurora-float 15s ease-in-out infinite alternate;
}

.aurora-a {
    top: -22vh;
    left: -18vw;
    width: 55vw;
    height: 55vw;
    background: var(--violet);
}

.aurora-b {
    right: -18vw;
    bottom: -30vh;
    width: 60vw;
    height: 60vw;
    background: var(--cyan);
    animation-delay: -7s;
}

.noise-layer {
    z-index: 20;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.scanline-layer {
    z-index: 19;
    opacity: .1;
    background: linear-gradient( to bottom, transparent 49%, rgba(255, 255, 255, .05) 50%, transparent 51%);
    background-size: 100% 5px;
    mask-image: linear-gradient( to bottom, transparent, #000 10%, #000 90%, transparent);
}

.noscript-message {
    position: fixed;
    z-index: 3000;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 15px 18px;
    border: 1px solid var(--line-strong);
    color: #fff;
    background: #15151f;
    text-align: center;
    font-size: 13px;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 12px;
    background: #05050a;
    transition: opacity .75s var(--ease), visibility .75s;
}

    .site-loader.is-hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-orbit {
    position: relative;
    width: 104px;
    height: 104px;
    margin-bottom: 24px;
}

    .loader-orbit span {
        position: absolute;
        inset: 0;
        border: 1px solid rgba(255, 255, 255, .2);
        border-top-color: var(--cyan);
        border-radius: 50%;
        animation: spin 1.4s linear infinite;
    }

        .loader-orbit span:nth-child(2) {
            inset: 15px;
            border-top-color: var(--pink);
            animation-duration: 1.05s;
            animation-direction: reverse;
        }

        .loader-orbit span:nth-child(3) {
            inset: 31px;
            border-top-color: #fff;
            animation-duration: .8s;
        }

.loader-kicker {
    margin: 0;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .36em;
}

.loader-status {
    margin: 0;
    font-size: 13px;
    letter-spacing: .12em;
}

.loader-progress {
    width: 240px;
    height: 2px;
    margin-top: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
}

    .loader-progress span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient( 90deg, var(--pink), var(--cyan));
        box-shadow: 0 0 18px var(--cyan);
        transition: width .3s ease;
    }

.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .16s ease, width .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
}

.cursor-dot {
    width: 7px;
    height: 7px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, .95), 0 0 18px rgba(33, 231, 255, .72);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(33, 231, 255, .9);
    background: rgba(5, 5, 10, .08);
    box-shadow: 0 0 16px rgba(33, 231, 255, .22), inset 0 0 12px rgba(255, 255, 255, .05);
}

    .cursor-ring.is-active {
        width: 58px;
        height: 58px;
        border-color: var(--pink);
        background: rgba(255, 63, 206, .08);
        box-shadow: 0 0 22px rgba(255, 63, 206, .28), inset 0 0 15px rgba(255, 255, 255, .06);
    }

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    height: var(--header-h);
    padding: 0 42px;
    border-bottom: 1px solid transparent;
    transition: height .35s var(--ease), background .35s, border-color .35s, backdrop-filter .35s;
}

    .site-header.is-scrolled {
        height: 70px;
        border-color: var(--line);
        background: rgba(5, 5, 10, .72);
        backdrop-filter: blur(18px);
    }

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0;
}

.brand-logo {
    display: block;
    width: min(18vw, 280px);
    min-width: 160px;
    height: auto;
}

.footer-brand .brand-logo {
    width: min(18vw, 240px);
    min-width: 170px;
    height: auto;
}

.brand-copy {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.desktop-nav {
    display: flex;
    gap: 34px;
}

    .desktop-nav a {
        position: relative;
        color: #c7c7d2;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .16em;
    }

        .desktop-nav a::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: -8px;
            left: 0;
            height: 1px;
            background: var(--cyan);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform .3s var(--ease);
        }

        .desktop-nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

.header-apply {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    padding: 12px 17px;
    color: #05050a;
    background: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
    cursor: pointer;
}

    .header-apply i {
        font-size: 16px;
        font-style: normal;
    }

.hero {
    min-height: 100svh;
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .22;
    background-image: linear-gradient( rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient( 90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient( circle at 65% 40%, #000 0, transparent 67%);
    transform: perspective(700px) rotateX(64deg) translateY(38%);
    transform-origin: center bottom;
}

.hero-copy {
    position: relative;
    z-index: 4;
    width: min(72%, 1060px);
    max-width: 1060px;
    min-width: 0;
}

.eyebrow,
.section-index {
    margin: 0;
    color: #b4b4c2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .28em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 24px;
}

.status-light {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px var(--green);
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    margin: 0;
    font-family: "Arial Black", Impact, sans-serif;
    font-size: clamp(68px, 9.2vw, 168px);
    line-height: .78;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.hero-line {
    display: block;
    transform-origin: left center;
    will-change: transform, opacity;
}

    .hero-line.outline {
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, .8);
        text-stroke: 1px rgba(255, 255, 255, .8);
    }

    .hero-line.accent {
        width: fit-content;
        color: transparent;
        background: linear-gradient( 90deg, #fff 0%, var(--cyan) 42%, var(--pink) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        filter: drop-shadow( 0 0 28px rgba(33, 231, 255, .16));
    }

.hero-description {
    margin: 34px 0 0;
    color: #c4c4cf;
    font-size: clamp(15px, 1.3vw, 20px);
}

.hero-actions {
    position: relative;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px 30px;
    margin-top: 34px;
}

.primary-cta {
    position: relative;
    z-index: 7;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    min-width: 250px;
    padding: 18px 22px 18px 26px;
    color: #05050a;
    background: linear-gradient( 90deg, #fff 0%, #d8fbff 100%);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 60px rgba(33, 231, 255, .12);
}

    .primary-cta > span {
        white-space: nowrap;
    }

    .primary-cta svg {
        flex: 0 0 40px;
        width: 40px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
    }

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #bdbdcc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

    .text-link i {
        width: 34px;
        height: 1px;
        background: currentColor;
        transition: width .25s;
    }

    .text-link:hover i {
        width: 52px;
    }

.hero-orbit {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: 50%;
    right: max(12px, 2%);
    width: min(34vw, 510px);
    aspect-ratio: 1;
    translate: 0 -47%;
    perspective: 1000px;
    isolation: isolate;
}

.hero-orbit-visual {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    will-change: transform, opacity;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform;
    box-shadow: inset 0 0 60px rgba(33, 231, 255, .03), 0 0 24px rgba(255, 255, 255, .018);
}

    .orbit::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 50%;
        width: 9px;
        height: 9px;
        translate: -50% 0;
        border: 2px solid rgba(5, 5, 10, .9);
        border-radius: 50%;
        background: var(--orbit-node, var(--cyan));
        box-shadow: 0 0 10px var(--orbit-node, var(--cyan)), 0 0 24px var(--orbit-node, var(--cyan));
    }

    .orbit::after {
        content: "";
        position: absolute;
        right: 13%;
        bottom: 12%;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .9);
        box-shadow: 0 0 10px rgba(255, 255, 255, .65);
    }

.orbit-one {
    --orbit-node: #21e7ff;
    inset: 1%;
    border-color: rgba(255, 255, 255, .2);
    animation: orbit-one 13s linear infinite;
}

.orbit-two {
    --orbit-node: #ff3fce;
    inset: 13%;
    border-color: rgba(255, 63, 206, .35);
    animation: orbit-two 9s linear infinite;
}

.orbit-three {
    --orbit-node: #b9ff76;
    inset: 27%;
    border-color: rgba(33, 231, 255, .44);
    animation: orbit-three 6.5s linear infinite;
}

.orbit-core {
    position: absolute;
    z-index: 3;
    inset: 37%;
    display: grid;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: radial-gradient( circle at 35% 28%, rgba(84, 84, 126, .96), #11111c 38%, #06060c 72%);
    box-shadow: 0 0 42px rgba(33, 231, 255, .18), 0 0 92px rgba(255, 63, 206, .08), inset 0 0 35px rgba(255, 63, 206, .12);
    animation: orbit-core-pulse 3.2s ease-in-out infinite;
}

    .orbit-core::before,
    .orbit-core::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .orbit-core::before {
        inset: -10%;
        border: 1px solid rgba(33, 231, 255, .18);
        animation: orbit-core-wave 3.2s ease-out infinite;
    }

    .orbit-core::after {
        top: 18%;
        left: 23%;
        width: 19%;
        height: 12%;
        background: rgba(255, 255, 255, .2);
        filter: blur(2px);
        rotate: -28deg;
    }

    .orbit-core span {
        color: var(--cyan);
        font-size: 10px;
        letter-spacing: .25em;
    }

    .orbit-core strong {
        font-family: "Arial Black", sans-serif;
        font-size: clamp(28px, 4vw, 62px);
        line-height: 1;
        text-shadow: 0 0 16px rgba(255, 255, 255, .16);
    }

.orbit-label {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(5, 5, 10, .72);
    box-shadow: 0 7px 24px rgba(0, 0, 0, .2), inset 0 0 16px rgba(255, 255, 255, .02);
    color: #d5d5df;
    font-size: 9px;
    letter-spacing: .2em;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

    .orbit-label::before {
        content: "";
        flex: 0 0 auto;
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--label-color, var(--cyan));
        box-shadow: 0 0 8px var(--label-color, var(--cyan));
    }

.label-a {
    --label-color: #21e7ff;
    top: 7%;
    left: 2%;
    animation: label-float-a 5.2s ease-in-out infinite;
}

.label-b {
    --label-color: #ff3fce;
    top: 27%;
    right: -2%;
    animation: label-float-b 6.1s ease-in-out infinite;
}

.label-c {
    --label-color: #b9ff76;
    bottom: 7%;
    left: 17%;
    animation: label-float-c 4.8s ease-in-out infinite;
}

.hero-bottom {
    position: absolute;
    right: 0;
    bottom: 38px;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.hero-values {
    display: flex;
    gap: 38px;
}

    .hero-values div {
        display: flex;
        flex-direction: column;
        padding-left: 12px;
        border-left: 1px solid var(--line-strong);
    }

    .hero-values strong {
        font-size: 10px;
        letter-spacing: .17em;
    }

    .hero-values span {
        color: #777788;
        font-size: 9px;
        letter-spacing: .22em;
    }

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #7e7e8f;
    font-size: 9px;
    letter-spacing: .2em;
}

    .scroll-indicator i {
        position: relative;
        width: 1px;
        height: 52px;
        overflow: hidden;
        background: rgba(255, 255, 255, .14);
    }

        .scroll-indicator i::after {
            content: "";
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cyan);
            animation: scroll-line 1.8s ease-in-out infinite;
        }

.manifesto {
    height: 250vh;
}

.manifesto-sticky {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - 80px), var(--max));
    height: 100vh;
    margin-inline: auto;
}

.manifesto-copy {
    margin-top: 40px;
    font-family: "Arial Black", Impact, sans-serif;
    font-size: clamp(48px, 8vw, 145px);
    line-height: .9;
    letter-spacing: -.055em;
}

.manifesto-line {
    margin: 0;
}

    .manifesto-line.muted {
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
    }

    .manifesto-line.accent {
        color: var(--pink);
        text-shadow: 0 0 45px rgba(255, 63, 206, .16);
    }

.manifesto-meter {
    position: absolute;
    right: 0;
    bottom: 70px;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .1);
}

    .manifesto-meter span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient( 90deg, var(--pink), var(--cyan));
        box-shadow: 0 0 14px var(--cyan);
    }

.about {
    padding-block: 150px 190px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 90px;
    align-items: end;
}

    .section-heading h2,
    .support-intro h2,
    .final-cta h2 {
        margin: 22px 0 0;
        font-family: "Arial Black", Impact, sans-serif;
        font-size: clamp(46px, 6vw, 96px);
        line-height: .96;
        letter-spacing: -.055em;
    }

.section-lead {
    margin: 0;
    color: #ababba;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.85;
}

.about-stage {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    grid-template-rows: repeat(2, minmax(240px, auto));
    gap: 18px;
    margin-top: 84px;
}

.about-panel {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border: 1px solid var(--line);
    background: linear-gradient( 145deg, rgba(20, 20, 31, .88), rgba(8, 8, 14, .72));
    backdrop-filter: blur(14px);
    transform-style: preserve-3d;
}

    .about-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .5;
        background: radial-gradient( circle at var(--mx, 50%) var(--my, 50%), rgba(33, 231, 255, .18), transparent 38%);
        pointer-events: none;
    }

.about-panel-main {
    grid-row: 1 / 3;
    min-height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-tag {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .26em;
}

.about-panel-main h3 {
    position: relative;
    margin: auto 0 28px;
    font-family: "Arial Black", sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .88;
    letter-spacing: -.06em;
}

    .about-panel-main h3 em {
        color: transparent;
        font-style: normal;
        -webkit-text-stroke: 1px rgba(255, 255, 255, .7);
    }

.about-panel-main > p {
    position: relative;
    max-width: 610px;
    color: #b5b5c2;
    font-size: 16px;
}

.signal-bars {
    position: absolute;
    right: 42px;
    bottom: 38px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 80px;
    opacity: .58;
}

    .signal-bars span {
        width: 5px;
        height: 20%;
        background: linear-gradient( var(--cyan), var(--pink));
        animation: signal 1.2s ease-in-out infinite alternate;
    }

        .signal-bars span:nth-child(2) {
            animation-delay: -.25s;
        }

        .signal-bars span:nth-child(3) {
            animation-delay: -.5s;
        }

        .signal-bars span:nth-child(4) {
            animation-delay: -.75s;
        }

        .signal-bars span:nth-child(5) {
            animation-delay: -1s;
        }

.about-panel-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-number {
    position: relative;
    z-index: 1;
    font-family: "Arial Black", sans-serif;
    font-size: clamp(60px, 7vw, 112px);
    color: transparent;
    -webkit-text-stroke: 1px var(--cyan);
}

.about-panel-side p {
    position: relative;
    z-index: 1;
    max-width: 260px;
    margin: 0;
    color: #babac6;
}

.radar {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

    .radar i {
        position: absolute;
        inset: 20%;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 50%;
    }

        .radar i:nth-child(2) {
            inset: 35%;
        }

        .radar i:nth-child(3) {
            inset: 49%;
        }

    .radar span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50%;
        height: 1px;
        background: linear-gradient( 90deg, var(--cyan), transparent);
        transform-origin: left;
        animation: radar 3s linear infinite;
    }

.about-panel-quote {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient( 145deg, rgba(255, 63, 206, .1), transparent 50%), rgba(15, 15, 24, .8);
}

    .about-panel-quote blockquote {
        position: relative;
        z-index: 1;
        margin: 0;
        font-size: clamp(24px, 2.5vw, 40px);
        font-weight: 800;
        line-height: 1.25;
    }

    .about-panel-quote > span {
        position: relative;
        z-index: 1;
        color: #777789;
        font-size: 9px;
        letter-spacing: .2em;
    }

.support {
    position: relative;
    padding-top: 110px;
    overflow: hidden;
}

.support-intro {
    margin-bottom: 55px;
}

    .support-intro > p:last-child {
        color: var(--muted);
    }

.support-track-wrap {
    width: min(calc(100% - 80px), var(--max));
    margin-inline: auto;
}

.support-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    padding: 0 0 130px;
}

.support-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 560px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient( 155deg, rgba(30, 30, 45, .86), rgba(8, 8, 14, .88)), var(--bg-soft);
    transition: border-color .3s, transform .3s, background .3s;
}

    .support-card::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -30%;
        width: 120%;
        aspect-ratio: 1;
        border-radius: 50%;
        opacity: 0;
        background: radial-gradient( circle, rgba(33, 231, 255, .2), transparent 62%);
        transition: opacity .4s, transform .5s;
    }

    .support-card:hover {
        border-color: rgba(33, 231, 255, .55);
        transform: translateY(-10px);
    }

        .support-card:hover::before {
            opacity: 1;
            transform: translate(15%, 10%);
        }

.support-no {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #696979;
    font-size: 12px;
    letter-spacing: .18em;
}

.support-icon {
    position: relative;
    display: grid;
    place-content: center;
    width: 92px;
    height: 92px;
    margin-top: 44px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow: inset 0 0 34px rgba(33, 231, 255, .06);
}

    .support-icon::before,
    .support-icon::after {
        content: "";
        position: absolute;
        inset: -9px;
        border: 1px dashed rgba(255, 255, 255, .13);
        border-radius: 50%;
        animation: spin 9s linear infinite;
    }

    .support-icon::after {
        inset: 9px;
        border-style: solid;
        border-color: rgba(255, 63, 206, .2);
        animation-direction: reverse;
        animation-duration: 5s;
    }

    .support-icon i {
        position: relative;
        z-index: 1;
        width: 28px;
        height: 28px;
    }

.icon-power {
    border: 2px solid var(--cyan);
    border-top-color: transparent;
    border-radius: 50%;
}

    .icon-power::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 11px;
        width: 2px;
        height: 17px;
        background: var(--cyan);
    }

.icon-grid {
    background: linear-gradient( var(--pink), var(--pink)) 0 0 / 11px 11px, linear-gradient( var(--cyan), var(--cyan)) 100% 0 / 11px 11px, linear-gradient( var(--cyan), var(--cyan)) 0 100% / 11px 11px, linear-gradient( var(--pink), var(--pink)) 100% 100% / 11px 11px;
    background-repeat: no-repeat;
}

.icon-wave::before {
    content: "≋";
    position: absolute;
    inset: -10px;
    color: var(--cyan);
    font-size: 42px;
    line-height: 1;
}

.icon-chart {
    border-left: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
}

    .icon-chart::before {
        content: "";
        position: absolute;
        inset: 5px 1px 5px 4px;
        border-top: 2px solid var(--cyan);
        transform: skewY(-28deg);
    }

.icon-shield {
    border: 2px solid var(--cyan);
    border-radius: 14px 14px 18px 18px;
    clip-path: polygon( 50% 0, 100% 18%, 90% 78%, 50% 100%, 10% 78%, 0 18%);
}

.icon-heart::before {
    content: "♡";
    position: absolute;
    inset: -13px;
    color: var(--pink);
    font-size: 45px;
    line-height: 1;
}

.support-kicker {
    position: relative;
    margin: 68px 0 14px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.support-card h3 {
    position: relative;
    margin: 0;
    font-size: clamp(31px, 3.2vw, 48px);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.support-card > p:not(.support-kicker) {
    position: relative;
    margin: 24px 0 0;
    color: #a9a9b7;
    line-height: 1.8;
}

.card-line {
    position: absolute;
    right: 34px;
    bottom: 35px;
    left: 34px;
    height: 1px;
    background: linear-gradient( 90deg, var(--pink), var(--cyan), transparent);
    transform-origin: left;
    transform: scaleX(.25);
    transition: transform .45s var(--ease);
}

.support-card:hover .card-line {
    transform: scaleX(1);
}

.process {
    padding-block: 180px;
}

.section-heading.compact {
    grid-template-columns: 1fr .55fr;
}

.process-line {
    position: relative;
    width: 100%;
    height: 1px;
    margin-top: 100px;
    background: rgba(255, 255, 255, .12);
}

    .process-line span {
        display: block;
        width: 0;
        height: 100%;
        background: linear-gradient( 90deg, var(--pink), var(--cyan));
        box-shadow: 0 0 18px var(--cyan);
    }

.process-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .process-list li {
        position: relative;
        min-height: 230px;
        padding-top: 36px;
    }

        .process-list li::before {
            content: "";
            position: absolute;
            top: -6px;
            left: 0;
            width: 11px;
            height: 11px;
            border: 2px solid var(--bg);
            border-radius: 50%;
            background: #777789;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, .22);
        }

.process-number {
    color: #696979;
    font-size: 11px;
    letter-spacing: .2em;
}

.process-list strong {
    display: block;
    margin-top: 35px;
    font-family: "Arial Black", sans-serif;
    font-size: clamp(25px, 2.4vw, 39px);
    letter-spacing: -.03em;
}

.process-list p {
    margin: 6px 0 0;
    color: #9292a2;
}

.final-cta {
    min-height: 90vh;
    padding-block: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: min(75vw, 980px);
    aspect-ratio: 1.8;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(139, 92, 255, .25), rgba(33, 231, 255, .08) 36%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(25px);
}

.final-overline {
    margin: 26px 0 0;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .34em;
}

.final-cta > p:not(.section-index):not(.final-overline) {
    color: #a8a8b7;
}

.final-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    margin-top: 35px;
    padding: 21px 28px;
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .04);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background .25s, color .25s, border-color .25s;
}

    .final-button:hover {
        color: #05050a;
        border-color: #fff;
        background: #fff;
    }

    .final-button i {
        font-size: 22px;
        font-style: normal;
    }

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: end;
    padding: 55px max(40px, calc((100vw - var(--max)) / 2));
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 10, .75);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .footer-brand div {
        display: flex;
        flex-direction: column;
    }

    .footer-brand strong {
        font-size: 16px;
    }

    .footer-brand span {
        color: #777789;
        font-size: 8px;
        letter-spacing: .24em;
    }

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
}

.footer-company-label {
    margin: 0;
    color: var(--cyan);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .22em;
}

.footer-company-name {
    display: block;
    color: #f2f2f6;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.footer-company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    width: 100%;
    color: #858596;
    font-size: 11px;
    line-height: 1.65;
}

    .footer-company-meta span {
        display: inline-flex;
        align-items: baseline;
        gap: 6px;
        min-width: 0;
    }

    .footer-company-meta b {
        color: #aaaaba;
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
    }

.footer-company-wide {
    flex-basis: 100%;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 3px;
    color: #d7d7e0;
    font-size: 11px;
    line-height: 1.4;
}

    .footer-contact span {
        color: #686879;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .18em;
    }

    .footer-contact strong {
        font-weight: 600;
        word-break: break-all;
        transition: color .2s ease;
    }

    .footer-contact:hover strong,
    .footer-contact:focus-visible strong {
        color: var(--cyan);
    }

.footer-actions {
    text-align: right;
}

    .footer-actions button,
    .footer-actions a {
        margin-left: 18px;
        padding: 0;
        color: #b8b8c5;
        background: none;
        font-size: 10px;
        letter-spacing: .1em;
        cursor: pointer;
    }

    .footer-actions p {
        margin: 18px 0 0;
        color: #5f5f70;
        font-size: 10px;
    }

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
}

    .modal-shell.is-open {
        opacity: 1;
        visibility: visible;
    }

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(18px);
}

.apply-modal,
.privacy-modal {
    position: relative;
    width: min(100%, 1040px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .2);
    background: linear-gradient( 145deg, rgba(25, 25, 38, .98), rgba(7, 7, 12, .98));
    box-shadow: 0 35px 140px rgba(0, 0, 0, .65);
    transform: translateY(28px) scale(.98);
    transition: transform .4s var(--ease);
}

.modal-shell.is-open .apply-modal,
.modal-shell.is-open .privacy-modal {
    transform: translateY(0) scale(1);
}

.apply-modal {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 0;
}

.modal-close {
    position: absolute;
    z-index: 3;
    top: 19px;
    right: 22px;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    font-size: 25px;
    cursor: pointer;
}

.apply-modal-heading {
    position: sticky;
    top: 0;
    min-height: 100%;
    padding: 55px 34px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: radial-gradient( circle at 0 100%, rgba(255, 63, 206, .22), transparent 45%), radial-gradient( circle at 100% 0, rgba(33, 231, 255, .18), transparent 42%);
}

    .apply-modal-heading::after {
        content: "W";
        position: absolute;
        right: -28px;
        bottom: -60px;
        color: transparent;
        font-family: "Arial Black", sans-serif;
        font-size: 250px;
        -webkit-text-stroke: 1px rgba(255, 255, 255, .07);
    }

    .apply-modal-heading p {
        color: var(--cyan);
        font-size: 9px;
        font-weight: 900;
        letter-spacing: .22em;
    }

    .apply-modal-heading h2 {
        margin-top: 34px;
        font-family: "Arial Black", sans-serif;
        font-size: 46px;
        line-height: .95;
        letter-spacing: -.05em;
    }

    .apply-modal-heading span {
        position: absolute;
        bottom: 34px;
        color: #777789;
        font-size: 10px;
    }

#creatorApplicationForm {
    padding: 58px 45px 45px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-full {
    grid-column: 1 / -1;
}

.field > span {
    color: #b8b8c5;
    font-size: 12px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, .025);
    transition: border-color .2s, background .2s, box-shadow .2s;
}

.field input,
.field select {
    height: 48px;
    padding: 0 12px;
}

.field textarea {
    resize: vertical;
    min-height: 135px;
    padding: 13px 12px;
    line-height: 1.7;
}

.field select {
    appearance: none;
    background-image: linear-gradient( 45deg, transparent 50%, #999 50%), linear-gradient( 135deg, #999 50%, transparent 50%);
    background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

    .field select option {
        color: #111;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
        border-color: var(--cyan);
        background: rgba(33, 231, 255, .035);
        box-shadow: 0 10px 30px rgba(33, 231, 255, .035);
    }

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--danger);
}

.field-error {
    min-height: 16px;
    color: var(--danger);
    font-size: 10px;
}

.field-meta {
    display: flex;
    justify-content: space-between;
    color: #707080;
    font-size: 10px;
}

.hp-field {
    position: fixed !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

.consent-box {
    margin-top: 30px;
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .025);
}

    .consent-box label {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        margin: 8px 0;
        color: #a7a7b5;
        font-size: 12px;
    }

    .consent-box input {
        accent-color: var(--cyan);
    }

    .consent-box button {
        margin: 8px 0 0 24px;
        padding: 0;
        color: var(--cyan);
        background: none;
        font-size: 11px;
        text-decoration: underline;
        cursor: pointer;
    }

.form-message {
    min-height: 23px;
    margin-top: 18px;
    color: var(--danger);
    font-size: 12px;
}

.submit-application {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 62px;
    margin-top: 12px;
    padding: 0 23px;
    color: #05050a;
    background: linear-gradient( 90deg, #fff, #d8fbff);
    font-weight: 900;
    cursor: pointer;
}

    .submit-application:disabled {
        opacity: .62;
    }

    .submit-application i {
        font-size: 22px;
        font-style: normal;
    }

.submit-loader {
    display: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(5, 5, 10, .22);
    border-top-color: #05050a;
    border-radius: 50%;
    animation: spin .75s linear infinite;
}

.submit-application.is-loading .submit-label,
.submit-application.is-loading i {
    opacity: .25;
}

.submit-application.is-loading .submit-loader {
    position: absolute;
    top: 20px;
    left: 50%;
    display: block;
    translate: -50% 0;
}

.application-success {
    grid-column: 2;
    align-self: center;
    padding: 70px 55px;
    text-align: center;
}

    .application-success[hidden] {
        display: none;
    }

.success-orbit {
    display: grid;
    place-content: center;
    width: 105px;
    height: 105px;
    margin: 0 auto 28px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(33, 231, 255, .15);
}

    .success-orbit span {
        font-size: 35px;
    }

.application-success > p:first-of-type {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .22em;
}

.application-success h3 {
    margin: 15px 0 8px;
    font-size: 34px;
}

.application-success > p {
    color: #aaaab8;
}

.application-success > div {
    margin-top: 25px;
    color: #7c7c8c;
    font-size: 12px;
}

.application-success strong {
    color: #fff;
    letter-spacing: .08em;
}

.application-success button,
.privacy-confirm {
    margin-top: 30px;
    padding: 14px 28px;
    color: #05050a;
    background: #fff;
    font-weight: 900;
    cursor: pointer;
}

.privacy-modal {
    width: min(100%, 760px);
    padding: 55px;
}

.privacy-kicker {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .22em;
}

.privacy-modal h2 {
    margin: 18px 0 30px;
    font-size: 36px;
}

.privacy-content {
    max-height: 50vh;
    overflow: auto;
    padding-right: 20px;
}

    .privacy-content h3 {
        margin: 24px 0 7px;
        font-size: 15px;
    }

    .privacy-content p {
        margin: 0;
        color: #aaaab8;
        font-size: 13px;
        line-height: 1.8;
    }

.error-page {
    display: grid;
    min-height: 100vh;
    place-content: center;
    padding: 24px;
}

.error-panel {
    width: min(100%, 680px);
    padding: 55px;
    border: 1px solid var(--line);
    background: rgba(16, 16, 25, .9);
    text-align: center;
}

    .error-panel img {
        width: min(62vw, 240px);
        height: auto;
    }

    .error-panel > p:first-of-type {
        color: var(--cyan);
        font-size: 10px;
        letter-spacing: .2em;
    }

    .error-panel h1 {
        font-size: clamp(32px, 6vw, 60px);
    }

    .error-panel > p {
        color: #aaaab8;
    }

    .error-panel a {
        display: inline-block;
        margin-top: 25px;
        padding: 13px 22px;
        color: #05050a;
        background: #fff;
        font-weight: 900;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    50% {
        opacity: .35;
        transform: scale(.78);
    }
}

@keyframes scroll-line {
    0% {
        top: -100%;
    }

    55%, 100% {
        top: 100%;
    }
}

@keyframes orbit-one {
    from {
        transform: rotateX(68deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(68deg) rotateZ(360deg);
    }
}

@keyframes orbit-two {
    from {
        transform: rotateY(66deg) rotateZ(0deg);
    }

    to {
        transform: rotateY(66deg) rotateZ(-360deg);
    }
}

@keyframes orbit-three {
    from {
        transform: rotateX(58deg) rotateY(48deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(58deg) rotateY(48deg) rotateZ(360deg);
    }
}

@keyframes orbit-core-pulse {
    0%, 100% {
        scale: 1;
        filter: brightness(1);
    }

    50% {
        scale: 1.045;
        filter: brightness(1.12);
    }
}

@keyframes orbit-core-wave {
    0% {
        scale: .86;
        opacity: .62;
    }

    75%, 100% {
        scale: 1.42;
        opacity: 0;
    }
}

@keyframes label-float-a {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 7px -8px;
    }
}

@keyframes label-float-b {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: -8px 7px;
    }
}

@keyframes label-float-c {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 9px -5px;
    }
}

@keyframes signal {
    to {
        height: 100%;
    }
}

@keyframes radar {
    to {
        transform: rotate(360deg);
    }
}

@keyframes aurora-float {
    to {
        transform: translate(10vw, 8vh) scale(1.15);
    }
}



/*
    1920×1080 및 유사한 중간 데스크톱 해상도 보정
    2560×1440에서는 기존 대형 화면 연출을 그대로 유지합니다.
*/
@media (min-width: 1321px) and (max-width: 2100px) {
    .site-header {
        padding-inline: clamp(26px, 2.1vw, 40px);
    }

    .desktop-nav {
        gap: clamp(20px, 1.7vw, 32px);
    }

    .hero {
        padding-top: calc(var(--header-h) + 42px);
        padding-bottom: 112px;
    }

    .hero-copy {
        width: min(64%, 940px);
        max-width: 940px;
    }

    .hero-title {
        font-size: clamp(76px, 7.15vw, 138px);
        line-height: .82;
        letter-spacing: -.065em;
    }

    .hero-description {
        margin-top: 25px;
        font-size: clamp(15px, 1vw, 18px);
    }

    .hero-actions {
        gap: 18px 26px;
        margin-top: 25px;
    }

    .primary-cta {
        min-width: 238px;
        padding: 16px 20px 16px 23px;
    }

    .hero-orbit {
        top: 49%;
        right: clamp(18px, 3vw, 58px);
        width: clamp(310px, 20vw, 390px);
        opacity: .52;
        translate: 0 -50%;
    }

    .orbit-core strong {
        font-size: clamp(30px, 3vw, 52px);
    }

    .hero-bottom {
        bottom: 26px;
    }

    .hero-values {
        gap: 25px;
    }
}

/*
    브라우저 상단 UI를 제외한 실제 뷰포트 높이가 짧을 때
    절대 배치된 하단 요소와 본문이 겹치지 않도록 수직 공간을 재배치합니다.
*/
@media (min-width: 1101px) and (max-height: 1100px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        justify-content: flex-start;
        padding-top: calc(var(--header-h) + 38px);
        padding-bottom: 122px;
    }

    .hero-copy {
        width: min(66%, 900px);
        max-width: 900px;
    }

    .eyebrow {
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(70px, 6.9vw, 132px);
        line-height: .83;
    }

    .hero-description {
        margin-top: 21px;
        font-size: clamp(14px, .95vw, 17px);
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 21px;
        gap: 16px 24px;
    }

    .primary-cta {
        min-width: 228px;
        padding-block: 15px;
    }

    .hero-orbit {
        top: 48%;
        right: clamp(16px, 3.5vw, 62px);
        width: clamp(280px, 18vw, 350px);
        opacity: .4;
        translate: 0 -48%;
    }

    .hero-bottom {
        bottom: 20px;
    }

    .hero-values {
        gap: 21px;
    }

    .scroll-indicator i {
        height: 42px;
    }
}

@media (max-width: 1320px) and (min-width: 1101px) {
    .desktop-nav {
        gap: 20px;
    }

    .site-header {
        padding-inline: 28px;
    }

    .hero-copy {
        width: min(76%, 900px);
    }

    .hero-title {
        font-size: clamp(66px, 8.6vw, 126px);
    }

    .hero-orbit {
        right: -4%;
        width: min(31vw, 400px);
        opacity: .48;
    }
}

@media (max-width: 1100px) {
    :root {
        --header-h: 76px;
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding-inline: 24px;
    }

    .desktop-nav {
        display: none;
    }

    .hero-copy {
        width: min(100%, 820px);
        max-width: 820px;
    }

    .hero-orbit {
        right: -6%;
        width: min(42vw, 360px);
        opacity: .3;
    }

    .hero-title {
        font-size: clamp(62px, 10.5vw, 118px);
    }

    .section-heading,
    .section-heading.compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stage {
        grid-template-columns: 1.1fr .9fr;
    }

    .support-track-wrap {
        width: min(calc(100% - 48px), var(--max));
    }

    .support-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-card {
        min-height: 530px;
    }

    .site-footer {
        grid-template-columns: 1fr 1.3fr;
    }

    .footer-company {
        padding-left: 10px;
        border-left: 1px solid var(--line);
    }

    .footer-actions {
        grid-column: 1 / -1;
        text-align: left;
    }

        .footer-actions button,
        .footer-actions a {
            margin: 0 18px 0 0;
        }
}

@media (max-width: 760px) {
    .section-shell {
        width: min(calc(100% - 36px), var(--max));
    }

    .site-header {
        height: 68px;
        padding-inline: 18px;
    }

        .site-header.is-scrolled {
            height: 62px;
        }

    .brand-logo {
        width: min(48vw, 220px);
        min-width: 136px;
    }

    .footer-brand .brand-logo {
        width: min(62vw, 240px);
        min-width: 150px;
    }

    .header-apply {
        padding: 10px 12px;
        font-size: 8px;
    }

        .header-apply i {
            display: none;
        }

    .hero {
        min-height: 100svh;
        padding-top: 118px;
        padding-bottom: 110px;
        justify-content: flex-start;
    }

    .hero-grid {
        background-size: 48px 48px;
    }

    .hero-title {
        font-size: clamp(54px, 18vw, 92px);
        line-height: .82;
    }

    .hero-description br {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .primary-cta {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
    }

    .hero-orbit {
        top: auto;
        left: 50%;
        right: auto;
        bottom: 18px;
        width: min(68vw, 300px);
        max-width: 300px;
        opacity: .22;
        translate: -50% 0;
    }

    .hero-bottom {
        right: 0;
        bottom: 25px;
        left: 0;
    }

    .hero-values {
        display: none;
    }

    .scroll-indicator {
        margin-left: auto;
    }

    .manifesto-sticky {
        width: calc(100% - 36px);
    }

    .manifesto-copy {
        font-size: clamp(45px, 15.5vw, 80px);
        line-height: .96;
    }

    .about {
        padding-block: 105px;
    }

    .section-heading h2,
    .support-intro h2,
    .final-cta h2 {
        font-size: clamp(41px, 13vw, 68px);
    }

    .about-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin-top: 55px;
    }

    .about-panel-main {
        grid-row: auto;
        min-height: 500px;
    }

    .about-panel {
        padding: 27px;
    }

    .about-panel-main h3 {
        font-size: 54px;
    }

    .signal-bars {
        right: 25px;
        bottom: 25px;
    }

    .support {
        padding-top: 60px;
    }

    .support-intro {
        margin-bottom: 38px;
    }

    .support-track-wrap {
        width: calc(100% - 36px);
    }

    .support-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        padding: 0 0 90px;
    }

    .support-card {
        width: 100%;
        min-height: 500px;
    }

    .process {
        padding-block: 105px;
    }

    .process-line {
        display: none;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 55px;
        border-left: 1px solid var(--line);
    }

        .process-list li {
            min-height: 175px;
            padding: 0 0 40px 30px;
        }

            .process-list li::before {
                top: 6px;
                left: -6px;
            }

        .process-list strong {
            margin-top: 17px;
        }

    .final-cta {
        min-height: 80vh;
        padding-block: 100px;
    }

    .final-button {
        width: 100%;
        justify-content: space-between;
        font-size: 10px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 42px 18px;
    }

    .footer-company {
        gap: 10px;
        padding-left: 0;
        border-left: 0;
    }

    .footer-company-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
    }

        .footer-company-meta span,
        .footer-company-wide {
            display: flex;
            flex-basis: auto;
        }

    .footer-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .footer-actions {
        grid-column: auto;
    }

    .apply-modal {
        display: block;
    }

    .apply-modal-heading {
        position: relative;
        min-height: 250px;
        padding: 40px 25px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

        .apply-modal-heading h2 {
            margin-top: 22px;
            font-size: 40px;
        }

        .apply-modal-heading span {
            bottom: 25px;
        }

    #creatorApplicationForm {
        padding: 36px 22px 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .application-success {
        padding: 55px 25px;
    }

    .privacy-modal {
        padding: 45px 24px 30px;
    }

        .privacy-modal h2 {
            font-size: 29px;
        }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .stage-canvas {
        opacity: .35;
    }

    .orbit-one {
        transform: rotateX(68deg) rotateZ(22deg);
    }

    .orbit-two {
        transform: rotateY(66deg) rotateZ(-34deg);
    }

    .orbit-three {
        transform: rotateX(58deg) rotateY(48deg) rotateZ(52deg);
    }
}


@media (max-width: 760px) {
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .stage-canvas {
        opacity: .62;
    }
}
