/* AppQuantum Creators — 2026 light canvas + dark monoliths */

:root {
    --gold: #fdb733;
    --gold-soft: #ffe8a8;
    --gold-deep: #e8a01c;
    --ink: #0a0a0a;
    --ink-2: #141414;
    --canvas: #ffffff;
    --gray: #f4f4f5;
    --canvas-2: #f4f4f5;
    --white: #ffffff;
    --muted: #6b6b6f;
    --line: rgba(10, 10, 10, 0.08);
    --radius: 22px;
    --radius-lg: 32px;
    --font: 'Outfit', system-ui, sans-serif;
    --display: 'Montserrat', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --spring: cubic-bezier(0.34, 1.25, 0.64, 1);
    --wrap: 1400px;
}

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

html {
    scroll-behavior: auto;
    scroll-padding-top: calc(80px + env(safe-area-inset-top, 0px));
    width: 100%;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font);
    background: var(--ink);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

main,
section,
footer,
header {
    width: 100%;
}

/* Anchor targets — clear fixed dock */
section[id],
main[id] {
    scroll-margin-top: calc(80px + env(safe-area-inset-top, 0px));
}

.wrap {
    max-width: var(--wrap);
    width: 100%;
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 40px);
}

.section-label {
    font-family: var(--display);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.28em;
    color: var(--gold-deep);
    margin-bottom: 14px;
}

.section--dark .section-label {
    color: var(--gold);
}

.section--gold .section-label {
    color: rgba(10, 10, 10, 0.55);
}

.monolith .section-label {
    color: var(--gold);
    margin-bottom: 0;
}

/* Scroll progress */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* Icons */
.ic {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ic-fill {
    fill: currentColor;
    stroke: none;
}

/* Dock nav — same width as .wrap */
.dock {
    position: fixed;
    top: max(12px, env(safe-area-inset-top, 0px));
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    box-sizing: border-box;
    width: min(var(--wrap), calc(100% - clamp(40px, 8vw, 80px)));
    max-width: var(--wrap);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 40px;
    box-shadow: 0 8px 40px rgba(10, 10, 10, 0.12), 0 0 0 1px var(--line);
}

@media (min-width: 900px) {
    .dock {
        top: max(20px, env(safe-area-inset-top, 0px));
        padding: 14px 24px;
        gap: 28px;
        border-radius: 40px;
    }
}

.dock-brand {
    font-family: var(--display);
    font-weight: 900;
    font-size: 17px;
    letter-spacing: -0.04em;
    line-height: 1;
    text-decoration: none;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}

.dock-brand span {
    color: var(--gold-deep);
}

.dock-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.dock-nav.is-open {
    display: flex;
}

@media (min-width: 900px) {
    .dock-nav {
        display: flex;
        gap: 8px;
        padding-inline: 16px;
    }
}

.dock-nav a {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--muted);
    padding: 10px 16px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.dock-nav a:hover {
    color: var(--ink);
    background: var(--canvas-2);
}

.dock-cta {
    flex-shrink: 0;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--gold);
    font-family: var(--display);
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 999px;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dock-cta:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.dock-nav a.dock-cta {
    color: var(--gold);
    background: var(--ink);
    font-family: var(--display);
    font-weight: 900;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.dock-nav a.dock-cta:hover {
    color: var(--gold);
    background: var(--ink);
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.dock-menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 900px) {
    .dock-menu {
        display: none;
    }

    .dock-nav-cta {
        display: none;
    }
}

@media (max-width: 899px) {
    .dock-bar-cta {
        display: none;
    }

    .dock-nav {
        position: fixed;
        top: calc(68px + env(safe-area-inset-top, 0px));
        right: 16px;
        left: 16px;
        bottom: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--white);
        padding: 12px;
        border-radius: var(--radius);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        display: none;
        z-index: 199;
    }

    .dock-nav.is-open {
        display: flex;
    }

    .dock-nav a:not(.dock-cta) {
        width: 100%;
        text-align: center;
    }

    .dock-nav-cta {
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
}

/* CTA buttons — solid pills, full border + offset shadow */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 999px;
    font-family: var(--display);
    font-weight: 900;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 3px solid var(--ink);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta .ic {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cta--gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
}

.cta--gold:hover {
    background: #ffc94a;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 var(--ink);
}

.cta--dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.35);
}

.cta--dark:hover {
    background: #1a1a1a;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

/* Gold sections: white primary on gold bg only */
.hero .cta--gold,
.section--gold .cta--gold {
    background: var(--white);
}

.hero .cta--gold:hover,
.section--gold .cta--gold:hover {
    background: #fff8e6;
}

/* Dark sections: gold primary */
.section--dark .cta--gold {
    background: var(--gold);
}

.section--dark .cta--gold:hover {
    background: #ffc94a;
}

/* ═══ HERO ═══ */
.hero--404 {
    min-height: min(92svh, 100%);
}

.hero--404>.wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding-bottom: clamp(40px, 6vh, 72px);
}

.hero--404 .hero-copy {
    container-type: normal;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.hero--404 .hero-title,
.hero--404 .hero-title__lead,
.hero--404 .hero-title__line {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 100%;
}

.hero--404 .hero-title__line {
    font-size: clamp(1.5rem, 7.5vw, 4.625rem);
}

.hero--404 .hero-title__line .hl-mark {
    white-space: nowrap;
}

.hero--404 .hero-actions .cta {
    flex: 0 1 auto;
}

.hero--404 .hero-actions .cta .ic {
    transform: scaleX(-1);
}

.hero-404-code {
    margin: 0 0 0.2em;
    font-family: var(--display);
    font-size: clamp(5.5rem, 24vw, 12rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.06em;
    color: var(--ink);
    text-transform: uppercase;
    max-width: 100%;
    overflow-wrap: break-word;
}

@media (max-width: 640px) {
    .hero--404 .hero-title__lead {
        font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    }

    .hero--404 .hero-title__line {
        font-size: clamp(1.2rem, 6.2vw, 1.65rem);
        line-height: 1.22;
    }

    .hero--404 .hero-404-code {
        font-size: clamp(3.5rem, 18vw, 5.5rem);
    }

    .hero--404 .lede {
        max-width: 100%;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    min-height: 90svh;
    padding: clamp(88px, 11vh, 132px) 0 0;
    position: relative;
    background: #e8960f;
    border-bottom: 4px solid var(--ink);
    overflow: hidden;
    isolation: isolate;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-backdrop::before,
.hero-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
}

/* Base sun + depth (enhanced original gradient) */
.hero-backdrop::before {
    background:
        radial-gradient(ellipse 50% 40% at 82% 22%, rgba(255, 252, 235, 0.7) 0%, transparent 68%),
        radial-gradient(ellipse 65% 50% at 8% 92%, rgba(180, 95, 8, 0.4) 0%, transparent 62%),
        radial-gradient(ellipse 95% 85% at 58% 48%, #ffe08a 0%, #ffd166 18%, #fdb733 42%, #e8a01c 72%, #e8960f 100%);
}

/* Ambient bloom + fine grain (no rays) */
.hero-backdrop::after {
    background-image:
        radial-gradient(ellipse 45% 38% at 22% 18%, rgba(255, 255, 255, 0.22) 0%, transparent 72%),
        radial-gradient(ellipse 50% 42% at 88% 78%, rgba(255, 210, 100, 0.18) 0%, transparent 68%),
        radial-gradient(circle, rgba(10, 10, 10, 0.028) 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(10, 10, 10, 0.022) 0.5px, transparent 0.5px),
        radial-gradient(ellipse 130% 100% at 50% 108%, rgba(90, 55, 5, 0.2) 0%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 42px 42px, 42px 42px, 100% 100%;
    background-position: center, center, 0 0, 21px 21px, center;
}

.hero>.wrap {
    position: relative;
    z-index: 1;
}

.hero-copy {
    container-type: inline-size;
    container-name: hero-copy;
    min-width: 0;
    max-width: 100%;
}

.hero .tag {
    color: var(--ink);
    font-weight: 800;
    opacity: 1;
}

.hero .lede {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.0625rem;
    line-height: 1.45;
    max-width: 32rem;
}

@media (min-width: 960px) {
    .hero .lede {
        max-width: 70%;
    }
}

.hero>.wrap.hero-grid {
    flex: 1;
    display: grid;
    align-content: center;
    padding-bottom: clamp(40px, 6vh, 72px);
}

@media (min-width: 900px) {
    .hero {
        padding-top: clamp(112px, 10vh, 140px);
    }
}

.hero-grid {
    gap: clamp(40px, 5vh, 56px);
    align-items: center;
    width: 100%;
    min-width: 0;
}

.hero-grid>* {
    min-width: 0;
    max-width: 100%;
}

@media (min-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.78fr);
        gap: clamp(40px, 4vw, 56px);
        align-items: center;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
        min-width: 0;
        padding-right: clamp(8px, 1vw, 16px);
    }

    .hero-bento {
        position: relative;
        z-index: 1;
        max-width: 100%;
        justify-self: stretch;
        width: 100%;
    }
}

@media (min-width: 960px) and (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-bento {
        max-width: min(520px, 100%);
        margin-inline: auto;
        width: 100%;
    }
}

.tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

/* Hero headline — lead line small, then two large lines */
.hero-title {
    margin-bottom: 24px;
    color: var(--ink);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.hero-title__lead {
    display: block;
    margin-bottom: 0.55em;
    font-family: var(--display);
    font-size: clamp(1.5rem, 6.2cqi, 2.5rem);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ink);
}

.hero-title__line {
    display: block;
    max-width: 100%;
    font-family: var(--display);
    font-size: clamp(2.125rem, 11.5cqi, 4.625rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero-title__line+.hero-title__line {
    margin-top: 0.14em;
}

@media (max-width: 959px) {

    .hero-title__lead,
    .hero-title__line {
        white-space: normal;
        overflow-wrap: break-word;
    }

    .hero-title__lead {
        font-size: clamp(1.35rem, 5.5vw, 2rem);
    }

    .hero-title__line {
        font-size: clamp(1.65rem, 7.5vw, 2.75rem);
    }
}

/*@media (min-width: 960px) {
    @container hero-copy (min-width: 480px) {
        .hero:not(.hero--404) .hero-title__lead {
            white-space: nowrap;
        }

        .hero:not(.hero--404) .hero-title__line:nth-child(2) {
            white-space: nowrap;
        }
    }
}*/

@media (max-width: 899px) {
    .hero {
        padding-top: calc(104px + env(safe-area-inset-top, 0px));
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: calc(118px + env(safe-area-inset-top, 0px));
    }

    .hero-title__lead {
        font-size: clamp(1.2rem, 6.5vw, 1.5rem);
        line-height: 1.3;
        margin-bottom: 0.45em;
    }

    .hero-title__line {
        font-size: clamp(1.5rem, 7.8vw, 2rem);
        line-height: 1.12;
        letter-spacing: -0.028em;
    }

    .hero .hl-mark {
        padding: 0.04em 0.16em 0.06em;
        border-radius: 4px;
    }

    .hero-actions {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .hero-actions .cta {
        flex: 1 1 0;
        min-width: 0;
        padding: 14px 10px;
        font-size: 10px;
        gap: 6px;
        justify-content: center;
    }

    .hero-actions .cta .ic {
        width: 16px;
        height: 16px;
    }
}

.hero .hl-mark {
    display: inline;
    padding: 0.05em 0.22em 0.07em;
    background: var(--white);
    color: var(--ink);
    border-radius: 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.lede {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 32px;
    font-weight: 500;
}

/* Hero bento */
.hero-bento {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-inline: auto;
}

@media (min-width: 960px) {
    .hero-bento {
        margin-inline: 0;
        max-width: 100%;
    }
}

.bento-video {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 24px 48px -12px rgba(10, 10, 10, 0.35);
    border: 4px solid var(--ink);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.bento-video:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 36px 64px -14px rgba(10, 10, 10, 0.45);
}

.bento-video-inner {
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: clamp(220px, 28vh, 300px);
    background: var(--ink);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: pointer;
}

@media (min-width: 960px) {
    .bento-video-inner {
        aspect-ratio: 16 / 11;
        min-height: clamp(260px, 32vh, 360px);
    }
}

.bento-video-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(253, 183, 51, 0.35), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(253, 183, 51, 0.12), transparent 40%);
}

.bento-live {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 1;
}

.logo-text {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.logo-text span {
    color: var(--gold);
}

.bento-play {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    pointer-events: none;
    cursor: pointer;
    transition: transform 0.45s var(--spring), box-shadow 0.45s var(--ease);
}

.bento-play .ic {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: block;
}

.bento-video:hover .bento-play {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(253, 183, 51, 0.28);
}

.bento-video:active {
    transform: translateY(-2px) scale(0.99);
}

.bento-video-inner .logo-text,
.bento-video-inner .bento-live {
    pointer-events: none;
    cursor: pointer;
}

/* Sections */
.section {
    padding: clamp(80px, 12vw, 140px) 0;
}

.section--alt {
    background: var(--white);
}

.section--light {
    background: var(--white);
}

.section--gray {
    background: var(--gray);
}

.section--gold {
    background: var(--gold);
    border-top: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
}

.section--dark {
    background: var(--ink);
    color: var(--white);
    border-bottom: 4px solid #222;
}

.section--dark .headline {
    color: var(--white);
}

.section--dark .sub {
    color: #999;
}

.section--dark#journey {
    background: var(--ink);
    position: relative;
}

.section--dark#journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(253, 183, 51, 0.14), transparent 70%);
    pointer-events: none;
}

.section--dark#journey .wrap {
    position: relative;
    z-index: 1;
}

.section--submit {
    border-bottom: none;
}

.section-intro {
    margin-bottom: 48px;
    max-width: 720px;
}

.monolith-head .headline {
    flex: 1;
    min-width: 0;
}

.headline {
    font-family: var(--display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
}

.headline--light {
    color: var(--white);
}

.sub {
    margin-top: 14px;
    font-size: 1.0625rem;
    color: var(--muted);
    font-weight: 500;
    max-width: 520px;
}

.sub--light {
    color: #999;
}

.center-cta {
    text-align: center;
    margin-top: 48px;
}

/* Journey — process flow */
.section--dark .section-intro .sub--light {
    max-width: 520px;
}

.steps-flow {
    list-style: none;
    display: grid;
    gap: 0;
    position: relative;
}

@media (min-width: 900px) {
    .steps-flow {
        --step-marker-size: 48px;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding-top: 0;
    }

    .steps-flow::before {
        content: '';
        position: absolute;
        top: calc(var(--step-marker-size) / 2 - 1px);
        left: calc(16.666% + 20px);
        right: calc(16.666% + 20px);
        height: 2px;
        background: linear-gradient(90deg, var(--gold) 0%, rgba(253, 183, 51, 0.25) 50%, var(--gold) 100%);
        pointer-events: none;
    }
}

.step-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 24px;
    padding: 28px 0;
    border-bottom: 1px solid #222;
}

.step-item:last-child {
    border-bottom: none;
}

@media (min-width: 900px) {
    .step-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
        border-bottom: none;
        text-align: center;
    }
}

.step-marker {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 900px) {
    .step-marker {
        width: var(--step-marker-size, 48px);
        height: var(--step-marker-size, 48px);
        margin: 0 auto 28px;
    }
}

.step-marker span {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.step-body {
    background: #111;
    border: 1px solid #252525;
    border-radius: var(--radius);
    padding: 28px 26px;
    transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

@media (min-width: 900px) {
    .step-body {
        text-align: left;
        min-height: 220px;
        padding: 32px 28px;
    }
}

.step-item:hover .step-body {
    border-color: rgba(253, 183, 51, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.step-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--display);
    font-size: 1.375rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 14px;
}

@media (min-width: 900px) {
    .step-title {
        font-size: 1.5rem;
    }
}

.step-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.step-title-icon .ic {
    width: 22px;
    height: 22px;
}

.step-body p {
    color: #9a9a9a;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
}

.journey-cta {
    margin-top: clamp(40px, 5vw, 56px);
    text-align: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* Perks — gray section, dark monolith (not yellow bg) */
#perks.section--perks {
    background: linear-gradient(165deg, #f6f6f7 0%, #ececed 45%, #f2f2f3 100%);
    position: relative;
    overflow: hidden;
}

#perks.section--perks::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 20%, rgba(10, 10, 10, 0.04) 0%, transparent 42%),
        radial-gradient(circle at 88% 80%, rgba(10, 10, 10, 0.03) 0%, transparent 38%),
        radial-gradient(circle, rgba(10, 10, 10, 0.025) 0.5px, transparent 0.5px);
    background-size: 100% 100%, 100% 100%, 28px 28px;
    pointer-events: none;
}

#perks .wrap {
    position: relative;
    z-index: 1;
}

/* Monolith — perks */
.monolith {
    background: linear-gradient(155deg, #121212 0%, #0a0a0a 55%, #111 100%);
    border: 3px solid var(--ink);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    color: var(--white);
    box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.14);
    overflow: hidden;
    position: relative;
}

.monolith::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 0% 100%, rgba(255, 255, 255, 0.06), transparent 65%),
        radial-gradient(ellipse 45% 40% at 100% 0%, rgba(255, 255, 255, 0.04), transparent 55%);
    pointer-events: none;
}

.monolith::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(253, 183, 51, 0.08), transparent 68%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.monolith-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.monolith-head>.section-label {
    width: 100%;
}

.tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tab {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #888;
    font-family: var(--font);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.tab.is-on,
.tab:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

@media (max-width: 767px) {
    #perks.section--perks {
        padding-top: clamp(40px, 6vh, 56px);
        padding-bottom: clamp(40px, 6vh, 56px);
    }

    .monolith-head {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-bottom: 28px;
    }

    .monolith-head>.section-label {
        margin-bottom: 10px;
    }

    .monolith-head .headline {
        font-size: clamp(1.5rem, 7.5vw, 2rem);
        line-height: 1.05;
        margin-bottom: 20px;
    }

    .tablist {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .tab {
        padding: 10px 6px;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
    }

    .monolith {
        padding: 22px 16px 16px;
        border-radius: 22px;
        box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.12);
    }

    .chip {
        margin-bottom: 12px;
    }

    .perk-copy h3 {
        font-size: clamp(1.2rem, 5.5vw, 1.45rem);
        margin-bottom: 10px;
    }

    .perk-copy p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    .perk-nav {
        margin-top: 20px;
        padding-top: 10px;
        gap: 10px;
    }

    .perk-arrow {
        width: 36px;
        height: 36px;
    }

    .perk-arrow .ic {
        width: 17px;
        height: 17px;
    }

    .perk-counter {
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .monolith-head {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .monolith-head .headline {
        min-width: min(100%, 280px);
    }
}

.perk-panels {
    position: relative;
    min-height: 320px;
    z-index: 1;
}

@media (max-width: 1024px) {
    .perk-panels {
        touch-action: pan-y;
    }
}

@media (min-width: 768px) {
    .perk-panels {
        min-height: 360px;
    }
}

.perk-panel {
    display: none;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    animation: fadeUp 0.5s var(--ease);
}

.perk-panel.is-on {
    display: grid;
}

@media (min-width: 768px) {
    .perk-panel.is-on {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.perk-visual {
    position: relative;
    background: #000;
    border: 1px solid #2e2e2e;
    border-radius: var(--radius);
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 16px 40px rgba(0, 0, 0, 0.35);
}

.perk-visual img {
    position: relative;
    z-index: 1;
    max-height: 100%;
    width: 100%;
	height: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    #perks .perk-panels {
        min-height: 0;
    }

    #perks .perk-panel.is-on {
        gap: 20px;
    }

    #perks .perk-visual {
        width: 60%;
        margin-inline: 0;
        margin-right: auto;
        min-height: 0;
        height: 180px;
        max-height: 180px;
        padding: 0;
        display: flex;
        align-items: stretch;
        justify-content: center;
        flex-shrink: 0;
        padding: 10px;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 8px 20px rgba(0, 0, 0, 0.28);
    }

    #perks .perk-visual img {
        display: block;
        height: 100%;
        max-height: 100%;
        width: auto;
        max-width: 100%;
        margin-inline: auto;
        object-fit: contain;
        object-position: bottom center;
        transform: none;
    }

    #perks .perk-img--goblin {
        transform: none;
    }
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.perk-copy h3 {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.perk-copy p {
    color: #999;
    font-weight: 500;
    line-height: 1.65;
}

.perk-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.perk-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--spring);
}

.perk-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: scale(1.06);
}

.perk-arrow .ic {
    width: 20px;
    height: 20px;
}

.perk-counter {
    font-family: var(--display);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    min-width: 4.5rem;
    text-align: center;
}

/* Tiers — three cards, apex column narrower */
#tiers.section--gray {
    background: var(--gray);
}

.tiers-head {
    margin-bottom: clamp(36px, 5vw, 52px);
}

.tiers-head-row {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .tiers-head-row {
        grid-template-columns: 1fr minmax(240px, 340px);
        align-items: start;
        gap: 32px 48px;
    }

    .tiers-head-sub {
        margin: 0;
        text-align: left;
        font-size: 1rem;
        line-height: 1.45;
        max-width: none;
    }
}

.tier-deck {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .tier-deck {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto auto;
        gap: 20px;
    }
}

.tier-panel {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr;
    padding: 26px 24px 28px;
    background: var(--white);
    color: var(--ink);
    border: 3px solid var(--ink);
    border-radius: 24px;
    box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.06);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.tier-panel:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(10, 10, 10, 0.09);
}

.tier-panel--apex {
    background: var(--ink);
    color: var(--white);
    box-shadow: 6px 6px 0 var(--gold);
}

.tier-panel--apex:hover {
    box-shadow: 8px 8px 0 var(--gold);
}

@media (min-width: 1024px) {
    .tier-panel {
        grid-template-rows: subgrid;
        grid-row: span 3;
    }
}

.tier-panel-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    overflow: visible;
}

.tier-icon-wrap {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #000;
    border: 2px solid var(--ink);
    box-shadow: none;
    overflow: visible;
}

.tier-panel--apex .tier-icon-wrap {
    border-color: rgba(253, 183, 51, 0.45);
    box-shadow:
        0 0 10px rgba(253, 183, 51, 0.22),
        0 0 18px rgba(253, 183, 51, 0.1);
}

.tier-unicorn-glow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.tier-unicorn-glow::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 105%;
    height: 105%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 183, 51, 0.16) 0%, rgba(253, 183, 51, 0.05) 52%, transparent 74%);
    z-index: 0;
    pointer-events: none;
}

.tier-unicorn-glow--pulse::before {
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(253, 183, 51, 0.22) 0%, rgba(253, 183, 51, 0.08) 50%, transparent 76%);
}

.tier-unicorn-glow--apex::before {
    width: 115%;
    height: 115%;
    background: radial-gradient(circle, rgba(253, 183, 51, 0.28) 0%, rgba(253, 183, 51, 0.1) 46%, transparent 74%);
    animation: tierAura 2.6s var(--ease) infinite alternate;
}

.tier-unicorn {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.tier-unicorn--spark {
    filter: drop-shadow(0 0 6px rgba(253, 183, 51, 0.28));
}

.tier-unicorn--pulse {
    filter: drop-shadow(0 0 7px rgba(253, 183, 51, 0.34));
}

.tier-unicorn--apex {
    filter: drop-shadow(0 0 8px rgba(253, 183, 51, 0.4));
    animation: tierGlow 2.6s var(--ease) infinite alternate;
}

@keyframes tierAura {
    from {
        opacity: 0.45;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

.tier-rank {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.tier-rank span {
    font-family: var(--display);
    font-weight: 900;
    color: var(--gold-deep);
    margin-right: 6px;
}

.tier-panel--apex .tier-rank {
    color: #888;
}

.tier-panel--apex .tier-rank span {
    color: var(--gold);
}

.tier-name {
    font-family: var(--display);
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 0;
}

.tier-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 0;
    align-self: start;
}

.tier-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-height: 84px;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    width: 100%;
    min-width: 0;
}

.tier-stat--muted {
    background: #333;
}

.tier-stat--gold {
    background: var(--gold);
    color: var(--ink);
}

.tier-stat--gold-dim {
    background: #b88412;
    color: var(--white);
}

.tier-stat-num {
    font-family: var(--display);
    font-size: clamp(1.0625rem, 1.85vw, 1.375rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.tier-stat-views {
    font-size: 0.68em;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tier-stat-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    opacity: 0.8;
    hyphens: auto;
    overflow-wrap: break-word;
}

.tier-feats {
    list-style: none;
    margin: 0;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: start;
    width: 100%;
}

.tier-panel--apex .tier-feats {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.tier-feats li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: #444;
}

.tier-panel--apex .tier-feats li {
    color: #aaa;
}

.tier-feat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(253, 183, 51, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-feat-icon .ic {
    width: 14px;
    height: 14px;
    color: var(--gold-deep);
}

.tier-panel--apex .tier-feat-icon .ic {
    color: var(--gold);
}

/* Creator kit — gold section, copy left / tiles + art right */
#kit.section--gold {
    padding: clamp(80px, 10vw, 120px) 0;
}

#kit .headline {
    color: var(--ink);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.02;
}

.kit-inner {
    display: grid;
    gap: clamp(40px, 6vw, 64px);
    align-items: start;
}

@media (min-width: 960px) {
    .kit-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: clamp(48px, 5vw, 72px);
    }
}

.kit-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kit-lead {
    margin: 20px 0 32px;
    max-width: 36em;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
    color: rgba(10, 10, 10, 0.68);
}

.kit-copy .cta--dark {
    margin-top: 0;
}

.kit-fine {
    margin-top: 22px;
    max-width: 34em;
    font-size: clamp(15px, 1.15vw, 17px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: rgba(10, 10, 10, 0.58);
}

.kit-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.kit-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kit-tile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.14);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.kit-tile:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.kit-tile--wide {
    grid-column: 1 / -1;
}

.kit-tile-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-tile-icon .ic {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.kit-tile-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.kit-tile-text strong {
    font-family: var(--display);
    font-size: clamp(11px, 1.1vw, 12px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
}

.kit-tile-text small {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(10, 10, 10, 0.5);
}

.kit-figure {
    margin: 0;
    grid-column: 1 / -1;
    border: 3px solid var(--ink);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 8px 8px 0 var(--ink);
    aspect-ratio: 16 / 9;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.kit-figure:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 var(--ink);
}

.kit-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* Submit slab */
.submit-slab {
    display: grid;
    gap: 32px;
    background: #111;
    border: 2px solid #222;
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    color: var(--white);
}

@media (max-width: 768px) {
    .submit-slab {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
    }
}

@media (min-width: 960px) {
    .submit-slab {
        grid-template-columns: 1fr 1.15fr;
        gap: 40px;
        align-items: start;
    }
}

.submit-copy .section-label {
    margin-bottom: 12px;
}

.submit-flow {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.submit-flow li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 14px;
    color: #ccc;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.submit-flow span {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--display);
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-slab {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    color: var(--ink);
}

.form-slab header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.form-slab header h4 {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1rem;
}

.form-slab header p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.form-slab iframe {
    width: 100%;
    height: 680px;
    border: none;
    display: block;
}

/* FAQ */
.faq-layout {
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 900px) {
    .faq-layout {
        grid-template-columns: minmax(220px, 0.35fr) 1fr;
        gap: 56px;
    }
}

.faq-aside {
    position: sticky;
    top: 100px;
    align-self: start;
}

.faq-aside .sub {
    max-width: none;
}

.faq-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    color: var(--gold-deep);
    text-decoration: none;
    border-bottom: 2px solid var(--gold);
}

.faq-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.faq-row {
    background: var(--white);
    border: 2px solid rgba(10, 10, 10, 0.08);
    border-radius: var(--radius);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-row.is-open {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(10, 10, 10, 0.08);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--ink);
    border: none;
    background: transparent;
    cursor: pointer;
}

.faq-q>span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    border-radius: 50%;
    transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}

.faq-toggle .ic {
    width: 18px;
    height: 18px;
}

.faq-row.is-open .faq-toggle {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
    border-top: 0 solid transparent;
}

.faq-row.is-open .faq-a {
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.faq-a-inner {
    padding: 20px 24px 24px;
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.65;
}

.faq-a-inner strong {
    color: var(--ink);
}

.faq-a-inner ul {
    margin-top: 12px;
    padding-left: 18px;
}

/* Legal + footer */
.legal-bar {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}

.legal-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.legal-flex p {
    font-size: 13px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.6;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--gold-deep);
}

.site-foot {
    background: var(--ink);
    color: var(--white);
    padding: 56px 0 calc(48px + env(safe-area-inset-bottom, 0px));
    margin-top: 0;
}

.foot-grid {
    display: grid;
    gap: 24px;
    text-align: center;
}

@media (min-width: 700px) {
    .foot-grid {
        grid-template-columns: 1fr auto;
        text-align: left;
        align-items: center;
    }

    .foot-copy {
        grid-column: 1 / -1;
    }
}

.foot-brand {
    font-family: var(--display);
    font-size: 1.75rem;
    font-weight: 900;
}

.foot-brand span {
    color: var(--gold);
}

.foot-tag {
    color: #777;
    font-size: 14px;
    margin-top: 6px;
}

.foot-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.foot-social a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s;
}

.foot-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.foot-copy {
    font-size: 12px;
    color: #555;
    text-align: center;
}

.foot-copy a {
    color: #777;
}

/* ═══ Motion — hero, scroll reveal, hovers ═══ */
@media (prefers-reduced-motion: no-preference) {
    .hero:not(.is-visible) .hero-copy>* {
        opacity: 0;
        transform: translateY(28px);
    }

    .hero.is-visible .hero-copy>* {
        opacity: 1;
        transform: none;
        transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }

    .hero.is-visible .hero-copy .tag {
        transition-delay: 0.05s;
    }

    .hero.is-visible .hero-copy .hero-title {
        transition-delay: 0.14s;
    }

    .hero.is-visible .hero-copy .lede {
        transition-delay: 0.26s;
    }

    .hero.is-visible .hero-copy .hero-actions {
        transition-delay: 0.38s;
    }

    .hero:not(.is-visible) .bento-video {
        opacity: 0;
        transform: translateY(36px) scale(0.97);
    }

    .hero.is-visible .bento-video {
        opacity: 1;
        transform: none;
        transition: opacity 0.85s var(--ease) 0.2s, transform 0.85s var(--ease) 0.2s,
            box-shadow 0.4s var(--ease);
    }

    .dock:not(.is-visible) {
        opacity: 0;
        transform: translate(-50%, -12px);
    }

    .dock.is-visible {
        opacity: 1;
        transform: translateX(-50%);
        transition: opacity 0.6s var(--ease) 0.45s, transform 0.6s var(--ease) 0.45s;
    }

    @media (min-width: 900px) {
        .dock:not(.is-visible) {
            transform: translate(-50%, -16px);
        }

        .dock.is-visible {
            transform: translateX(-50%);
        }
    }

    [data-reveal] {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
    }

    [data-reveal].is-in {
        opacity: 1;
        transform: none;
    }

    [data-reveal-stagger]>* {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }

    [data-reveal-stagger].is-in>* {
        opacity: 1;
        transform: none;
    }

    [data-reveal-stagger].is-in>*:nth-child(1) {
        transition-delay: 0.05s;
    }

    [data-reveal-stagger].is-in>*:nth-child(2) {
        transition-delay: 0.12s;
    }

    [data-reveal-stagger].is-in>*:nth-child(3) {
        transition-delay: 0.19s;
    }

    [data-reveal-stagger].is-in>*:nth-child(4) {
        transition-delay: 0.26s;
    }

    [data-reveal-stagger].is-in>*:nth-child(5) {
        transition-delay: 0.33s;
    }

    [data-reveal-stagger].is-in>*:nth-child(6) {
        transition-delay: 0.4s;
    }
}

/* Interactive polish */
.cta .ic {
    transition: transform 0.3s var(--ease);
}

.cta:hover .ic {
    transform: translateY(1px);
}

.cta:active {
    transform: translate(-1px, -1px) scale(0.98);
}

.step-item:hover .step-marker {
    transform: scale(1.08);
    box-shadow: 0 0 0 4px rgba(253, 183, 51, 0.2);
}

.step-marker {
    transition: transform 0.35s var(--spring), box-shadow 0.35s var(--ease);
}

.kit-tile:hover .kit-tile-icon {
    transform: scale(1.06) rotate(-3deg);
}

.kit-tile-icon {
    transition: transform 0.35s var(--spring);
}

.tier-panel--apex:hover .tier-unicorn--apex {
    animation-duration: 1.2s;
}

@keyframes tierGlow {
    from {
        filter: drop-shadow(0 0 7px rgba(253, 183, 51, 0.34));
    }

    to {
        filter: drop-shadow(0 0 9px rgba(253, 183, 51, 0.44));
    }
}

@media (prefers-reduced-motion: reduce) {

    .tier-unicorn-glow--apex::before,
    .tier-unicorn--apex {
        animation: none;
    }

    .tier-unicorn--apex {
        filter: drop-shadow(0 0 8px rgba(253, 183, 51, 0.38));
    }
}

.faq-row {
    transition: border-color 0.3s, box-shadow 0.35s var(--ease);
}

/* Modals */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overlay.is-open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: pop 0.4s var(--ease);
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }
}

.modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
}

.modal-head h3 {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.modal-x {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.modal-split {
    display: flex;
    flex: 1;
    min-height: 0;
}

.modal-tabs {
    width: 140px;
    border-right: 1px solid var(--line);
    overflow-y: auto;
    flex-shrink: 0;
}

.modal-tab {
    width: 100%;
    padding: 16px 12px;
    border: none;
    border-bottom: 1px solid var(--line);
    background: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--muted);
}

.modal-tab img {
    height: 32px;
    object-fit: contain;
}

.modal-tab.is-active,
.modal-tab.active {
    background: var(--ink);
    color: var(--gold);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.overlay--sheet {
    align-items: flex-end;
    padding: 0;
}

.sheet {
    width: 100%;
    max-height: 90vh;
    background: var(--white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.45s var(--ease);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
}

.sheet-scroll {
    overflow-y: auto;
    padding: 24px;
}

.sheet-scroll h4 {
    font-family: var(--display);
    margin: 20px 0 8px;
    font-size: 0.9rem;
}

.sheet-scroll p,
.sheet-scroll li {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
}

.tldr {
    background: var(--gold-soft);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
}

.overlay--video {
    background: rgba(0, 0, 0, 0.92);
}

.video-box {
    position: relative;
    width: min(900px, 100%);
}

.video-x {
    position: absolute;
    top: -52px;
    right: 0;
}

.video-box-inner {
    aspect-ratio: 16/9;
    background: var(--ink-2);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #888;
}

.video-box-inner p {
    font-family: var(--display);
    font-weight: 900;
    text-transform: uppercase;
}

.video-box-inner--embed {
    display: block;
    padding: 0;
    overflow: hidden;
}

.video-box-inner--embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Rewards modal */
.modal--rewards {
    max-width: 920px;
    max-height: 80svh;
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.2);
}

.modal--rewards .modal-head {
    background: var(--ink);
    border-bottom: none;
}

.modal--rewards .modal-head h3 {
    color: var(--white);
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
}

.modal-tabs--dark {
    width: 156px;
    background: var(--ink);
    border-right: 1px solid #252525;
    padding: 10px 8px;
    overflow-y: auto;
}

.modal-tabs--dark .modal-tab {
    width: 100%;
    margin: 0 0 6px;
    padding: 10px 8px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #666;
    gap: 8px;
    text-align: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.modal-tab-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 10px 8px;
    background: #000;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    transition: border-color 0.2s;
}

.modal-tab-logo img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.modal-tab-label {
    font-family: var(--display);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.modal-tabs--dark .modal-tab.is-active {
    background: rgba(253, 183, 51, 0.1);
    color: var(--gold);
    box-shadow: inset 3px 0 0 var(--gold);
}

.modal-tabs--dark .modal-tab.is-active .modal-tab-logo {
    background: #000;
    border-color: rgba(253, 183, 51, 0.45);
}

.modal-body--rewards {
    background: var(--gray);
    padding: clamp(20px, 3vw, 28px);
}

.rewards-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rewards-game-head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.08);
}

.rewards-game-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    padding: 10px;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #222;
}

.rewards-game-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.rewards-game-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 4px;
}

.rewards-game-name {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
}

.rewards-tier-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reward-tier-card {
    padding: 18px 20px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    box-shadow: 4px 4px 0 rgba(10, 10, 10, 0.06);
}

.reward-tier-card--pulse {
    border-color: var(--ink);
}

.reward-tier-card--apex {
    background: var(--ink);
    color: var(--white);
    box-shadow: 4px 4px 0 var(--gold);
}

.reward-tier-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.reward-tier-card--apex .reward-tier-head {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.reward-tier-rank {
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
    padding-top: 4px;
}

.reward-tier-card--apex .reward-tier-rank {
    color: var(--gold);
}

.reward-tier-title {
    flex: 1;
    min-width: 0;
}

.reward-tier-name {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--ink);
}

.reward-tier-card--apex .reward-tier-name {
    color: var(--white);
}

.reward-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.reward-tag--spark {
    background: var(--ink);
    color: var(--white);
}

.reward-tag--pulse {
    background: var(--gold-deep);
    color: var(--ink);
}

.reward-tag--apex {
    background: var(--gold);
    color: var(--ink);
}

.reward-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.reward-items li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--gray);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
}

.reward-tier-card--apex .reward-items li {
    background: rgba(255, 255, 255, 0.06);
    color: #ddd;
}

.reward-item-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(253, 183, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reward-tier-card--apex .reward-item-icon {
    background: rgba(253, 183, 51, 0.2);
}

.reward-item-icon .ic {
    width: 14px;
    height: 14px;
    color: var(--gold-deep);
}

.reward-tier-card--apex .reward-item-icon .ic {
    color: var(--gold);
}

.reward-cap {
    margin: 12px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.reward-tier-card--apex .reward-cap {
    color: #888;
}

@media (max-width: 768px) {
    .modal--rewards {
        max-height: 95svh;
    }

    .modal-split {
        flex-direction: column;
    }

    .modal-tabs,
    .modal-tabs--dark {
        width: 100%;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #252525;
        padding: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .modal-tabs--dark .modal-tab {
        width: 40%;
        min-width: 40%;
        flex: 0 0 40%;
        margin: 0 6px 0 0;
        box-shadow: none;
        scroll-snap-align: start;
    }

    .modal-tabs--dark .modal-tab.is-active {
        box-shadow: inset 0 -3px 0 var(--gold);
    }

    .modal-tab {
        min-width: 100px;
        border-bottom: none;
        border-right: 1px solid var(--line);
    }

    .form-slab iframe {
        height: 580px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding-inline: 16px;
    }

    .dock {
        width: calc(100% - 20px);
        padding: 10px 12px;
        gap: 8px;
        border-radius: 32px;
    }

    .dock-brand {
        font-size: 13px;
    }

    .dock-cta {
        padding: 9px 14px;
        font-size: 10px;
        letter-spacing: 0.04em;
        box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    }

    .dock-menu {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .hero .tag {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-top: 4px;
        margin-bottom: 16px;
    }

    .cta {
        padding: 14px 20px;
        font-size: 11px;
    }
}