/* ============================================================
   Vorex — vorex.fit
   Premium visual system (vanilla CSS).
   Restraint is the premium signal: one accent color, one gradient,
   confident type, generous space.
   ============================================================ */

/* ----------------------------------------
   Tokens — single source of truth
   ---------------------------------------- */
:root {
    /* Surfaces */
    --bg:              #080808;
    --surface:         #141414;
    --surface-deep:    #0F0F0F;
    --border:          rgba(201, 168, 76, 0.15);
    --border-hover:    rgba(201, 168, 76, 0.40);
    --border-faint:    rgba(255, 255, 255, 0.06);

    /* Gold scale — primary accent only */
    --gold:            #C9A84C;
    --gold-light:      #F5E070;
    --gold-mid:        #C8960C;
    --gold-deep:       #A07830;

    /* Text */
    --text:            #FAFAFA;
    --text-muted:      #9A9A9A;
    --text-faint:      #7A7A7A;

    /* Type */
    --font-display:    "Bebas Neue", "Impact", sans-serif;
    --font-body:       "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono:       "SF Mono", ui-monospace, "Menlo", monospace;

    /* Layout */
    --container:       1200px;
    --gutter:          clamp(20px, 5vw, 56px);
    --section-pad:     clamp(72px, 11vw, 140px);
    --radius:          16px;
    --radius-sm:       12px;
    --radius-lg:       24px;

    /* Motion */
    --ease:            cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Metallic gradient — RESERVED for primary CTA + the single hero accent. */
.metallic-gold {
    background: linear-gradient(180deg,
        var(--gold-light) 0%,
        var(--gold-mid) 55%,
        var(--gold-deep) 100%);
}

/* ----------------------------------------
   Reset
   ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;        /* sticky nav offset for anchor jumps */
}
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Selection */
::selection { background: var(--gold); color: #0A0A0A; }

/* Focus — always visible, gold ring */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ----------------------------------------
   Layout primitives
   ---------------------------------------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section { padding: var(--section-pad) 0; position: relative; }

/* Display headings — Bebas Neue, confident */
.h-display,
.hero__title,
.section__title,
.legal__title,
.page__title {
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--text);
    text-wrap: balance;
}
.hero__title       { font-size: clamp(3.5rem, 9vw, 7rem); }
.section__title    { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 16px; }

.section__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.section__subtitle {
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--text-muted);
    max-width: 65ch;
    margin: 0 auto 48px;
    text-wrap: balance;
}
.section--centered .section__eyebrow,
.section--centered .section__title,
.section--centered .section__subtitle {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------
   Buttons / CTAs
   ---------------------------------------- */
.btn,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    letter-spacing: 2px;
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    min-height: 48px;
    cursor: pointer;
    user-select: none;
    border: 1.5px solid transparent;
    transition: transform 180ms var(--ease),
                background 220ms var(--ease),
                box-shadow 260ms var(--ease),
                color 180ms var(--ease),
                border-color 220ms var(--ease);
    text-align: center;
    white-space: nowrap;
}

/* Filled metallic gold — primary CTA only */
.cta--gold {
    color: #0A0A0A;
    background: linear-gradient(180deg,
        var(--gold-light) 0%,
        var(--gold-mid) 55%,
        var(--gold-deep) 100%);
    box-shadow: 0 10px 24px rgba(200, 150, 12, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.cta--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(200, 150, 12, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.cta--gold:active { transform: translateY(0); }

/* Outline — gold border, gold text, fills on hover */
.cta--outline {
    color: var(--gold);
    background: transparent;
    border-color: rgba(201, 168, 76, 0.6);
}
.cta--outline:hover {
    background: var(--gold);
    color: #0A0A0A;
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Ghost — transparent + faint border (used for secondary hero CTA) */
.cta--ghost {
    color: var(--text);
    background: transparent;
    border-color: var(--border);
}
.cta--ghost:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: var(--border-hover);
    color: var(--gold);
}

.cta--small { font-size: 13px; padding: 10px 18px; min-height: 40px; }
.cta--block { width: 100%; }

/* ----------------------------------------
   Navigation — sticky, glassy
   ---------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 8, 0.90);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-faint);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    padding: 0 var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 4px;
    color: var(--text);
}
.nav__brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    object-fit: contain;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    padding: 2px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset,
                0 4px 12px rgba(200, 150, 12, 0.25);
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 180ms var(--ease);
}
.nav__link:hover { color: var(--text); }

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border-faint);
    color: var(--text);
}
.nav__toggle:hover { border-color: var(--border-hover); }
.nav__toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    position: relative;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 200ms var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top:  6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.nav__menu {
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px var(--gutter);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 0s linear 220ms;
    z-index: 99;
}
.nav__menu[data-open="true"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.nav__menu a {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-faint);
}
.nav__menu .cta { margin-top: 16px; align-self: flex-start; }

@media (max-width: 820px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
}

/* ----------------------------------------
   Hero — full viewport, two-column on desktop
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: grid;
    place-items: center;
    padding: clamp(56px, 8vw, 96px) var(--gutter) clamp(56px, 8vw, 96px);
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 7vw, 96px);
    align-items: center;
    max-width: var(--container);
    width: 100%;
    position: relative;
    z-index: 2;
}
.hero__content { text-align: left; }
.hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 28px;
}
.hero__title {
    margin-bottom: 28px;
}
.hero__title__accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__subtitle {
    font-size: clamp(17px, 1.5vw, 19px);
    color: var(--text-muted);
    max-width: 56ch;
    margin-bottom: 40px;
    text-wrap: balance;
}
.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Trust line — small uppercase letterspaced with thin gold rules */
.trusted {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.trusted::before,
.trusted::after {
    content: "";
    flex: 0 0 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}
.trusted__logo {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2.5px;
    color: var(--text-muted);
}

/* Hero phone column */
.hero__visual {
    display: grid;
    place-items: center;
    position: relative;
}
.hero__glow {
    position: absolute;
    width: 110%;
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.04) 35%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

/* Hero grid background lines — kept subtle */
.hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(201, 168, 76, 0.10) 0%, transparent 55%),
        repeating-linear-gradient(to right,
            transparent, transparent 99px,
            rgba(255, 255, 255, 0.012) 99px,
            rgba(255, 255, 255, 0.012) 100px),
        repeating-linear-gradient(to bottom,
            transparent, transparent 99px,
            rgba(255, 255, 255, 0.012) 99px,
            rgba(255, 255, 255, 0.012) 100px);
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 75%);
    pointer-events: none;
    z-index: 1;
}

/* ----------------------------------------
   Hero Vorex Score — pure CSS/SVG product motif
   Replaces the prior phone mockup. Drop a real dashboard image in
   later by swapping the .hero__visual content for an <img>; the
   column sizing + radial glow stay.
   ---------------------------------------- */
.hero-score {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(24px, 3vw, 36px);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    padding: clamp(24px, 3vw, 36px);
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.55), rgba(8, 8, 8, 0.35));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-score__ring-wrap {
    position: relative;
    width: clamp(240px, 26vw, 320px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}
.hero-score__ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}
.hero-score__ring-track {
    fill: none;
    stroke: rgba(201, 168, 76, 0.10);
    stroke-width: 10;
}
.hero-score__ring-progress {
    fill: none;
    stroke: url(#hero-score-gradient);
    stroke-width: 10;
    stroke-linecap: round;
    /* circumference for r=105 is 2π·105 ≈ 660 */
    --circumference: 660;
    --target: 0.87;            /* 87/100 */
    stroke-dasharray: var(--circumference);
    stroke-dashoffset: var(--circumference);
    animation: hero-score-sweep 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}
@keyframes hero-score-sweep {
    to { stroke-dashoffset: calc(var(--circumference) * (1 - var(--target))); }
}
.hero-score__center {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    pointer-events: none;
}
.hero-score__value {
    font-family: var(--font-display);
    font-size: clamp(64px, 7vw, 96px);
    line-height: 1;
    letter-spacing: 0.02em;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-mid) 60%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-score__label {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-score__stats {
    display: grid;
    gap: 14px;
}
.hero-score__row {
    display: grid;
    grid-template-columns: clamp(78px, 9vw, 96px) 1fr 30px;
    align-items: center;
    gap: 14px;
}
.hero-score__row-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-score__bar {
    height: 4px;
    background: rgba(201, 168, 76, 0.10);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.hero-score__bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
    border-radius: 999px;
    animation: hero-score-bar 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: calc(0.45s + var(--bar-delay, 0) * 120ms);
}
@keyframes hero-score-bar {
    to { width: var(--target-width); }
}
.hero-score__row-value {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--text);
    text-align: right;
    letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .hero-score__ring-progress {
        animation: none;
        stroke-dashoffset: calc(var(--circumference) * (1 - var(--target)));
    }
    .hero-score__bar-fill {
        animation: none;
        width: var(--target-width);
    }
}

/* ----------------------------------------
   Features grid + SVG icons
   ---------------------------------------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 56px;
}
.feature {
    padding: 36px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 200ms var(--ease),
                border-color 220ms var(--ease),
                box-shadow 240ms var(--ease);
}
.feature:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.40);
}
.feature__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--gold);
    margin-bottom: 22px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(201, 168, 76, 0.04);
}
.feature__icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature__title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1.5px;
    color: var(--text);
    margin-bottom: 10px;
}
.feature__body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ----------------------------------------
   Demo section — 16:9 video container
   ---------------------------------------- */
.demo__frame {
    margin: 56px auto 0;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: var(--surface);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 30px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 80px -10px rgba(201, 168, 76, 0.18);
}
.demo__poster {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.10) 0%, transparent 60%),
        var(--surface-deep);
}
.demo__play {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    display: grid;
    place-items: center;
    box-shadow: 0 20px 40px rgba(200, 150, 12, 0.4);
    transition: transform 240ms var(--ease-spring);
    border: none;
    cursor: pointer;
}
.demo__play:hover { transform: scale(1.08); }
.demo__play svg { width: 32px; height: 32px; fill: #0A0A0A; margin-left: 4px; }
.demo__label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* ----------------------------------------
   Challenge — full-width event moment
   ---------------------------------------- */
.challenge {
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 65%),
        var(--bg);
    border-top: 1px solid var(--border-faint);
    border-bottom: 1px solid var(--border-faint);
}
.challenge__card {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.challenge__amount {
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 400;
}
.challenge__lead {
    font-size: clamp(18px, 1.7vw, 22px);
    color: var(--text);
    max-width: 56ch;
    margin: 0 auto 18px;
    text-wrap: balance;
    font-weight: 500;
    line-height: 1.45;
}
.challenge__body {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 60ch;
    margin: 0 auto 36px;
    line-height: 1.7;
    text-wrap: balance;
}

/* ----------------------------------------
   Pricing
   ---------------------------------------- */
.pricing-toggle {
    display: inline-flex;
    margin: 8px auto 56px;
    background: var(--surface);
    border: 1px solid var(--border-faint);
    border-radius: 999px;
    padding: 4px;
    position: relative;
}
.pricing-toggle__btn {
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: color 250ms var(--ease);
    z-index: 1;
    position: relative;
    min-height: 40px;
}
.pricing-toggle__btn.is-active { color: #0A0A0A; }
.pricing-toggle__indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    transition: transform 320ms var(--ease), width 320ms var(--ease);
    z-index: 0;
}
.pricing-toggle__save {
    margin-left: 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.14);
    border-radius: 6px;
    padding: 2px 6px;
    letter-spacing: 1px;
}
.pricing-toggle__btn.is-active .pricing-toggle__save {
    color: #0A0A0A;
    background: rgba(0, 0, 0, 0.20);
}

.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    transition: transform 250ms var(--ease),
                border-color 250ms var(--ease),
                box-shadow 280ms var(--ease);
}
.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.price-card--featured {
    transform: scale(1.04);
    border: 1px solid rgba(201, 168, 76, 0.35);
    box-shadow:
        0 28px 56px rgba(200, 150, 12, 0.15),
        0 0 0 1px rgba(201, 168, 76, 0.15) inset;
    background:
        linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, var(--surface) 30%),
        var(--surface);
}
.price-card--featured::before {
    content: "";
    position: absolute;
    top: -1px; left: 24px; right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-deep));
    border-radius: 2px;
}
.price-card--featured::after {
    content: "MOST POPULAR";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
    color: #0A0A0A;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(200, 150, 12, 0.4);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.price-card__tier {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
}
.price-card__capacity { font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.price-card__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-card__amount {
    font-family: var(--font-display);
    font-size: 62px;
    letter-spacing: 1px;
    line-height: 1;
    color: var(--text);
}
.price-card__period { font-size: 16px; color: var(--text-muted); }
.price-card__note {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 28px;
    min-height: 18px;
}
.price-card__features {
    margin: 0 0 32px;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(250, 250, 250, 0.85);
}
.price-card__features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--gold);
    margin-top: 2px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.price-card__footnote {
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    margin-top: 40px;
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------
   How it works — oversized gold numerals behind each step
   ---------------------------------------- */
.how {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-deep) 100%);
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.step {
    position: relative;
    padding: 36px 28px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.step__numeral {
    position: absolute;
    top: -10px;
    right: 12px;
    font-family: var(--font-display);
    font-size: 140px;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.10;
    pointer-events: none;
    user-select: none;
}
.step__inner { position: relative; z-index: 1; }
.step__title { font-family: var(--font-display); font-size: 24px; letter-spacing: 1.5px; margin-bottom: 10px; }
.step__body { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

/* ----------------------------------------
   Athletes section
   ---------------------------------------- */
.athletes {
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface-deep) 100%);
    text-align: center;
}
.athletes__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.appstore-badge {
    display: inline-block;
    margin-top: 16px;
    transition: transform 200ms var(--ease);
}
.appstore-badge:hover { transform: scale(1.04); }
.appstore-badge img { height: 60px; }

/* ----------------------------------------
   Founder — full-width manifesto statement
   ONE decorative element: oversized gold "V" watermark behind the
   centered text block. Reads like a brand-book manifesto page.
   ---------------------------------------- */
.founder-statement {
    position: relative;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.founder-statement__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(280px, 38vw, 520px);
    line-height: 0.85;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: 0.02em;
}
.founder-statement__content {
    position: relative;
    z-index: 1;
}
.founder-statement__content .section__eyebrow,
.founder-statement__content .section__title {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.founder-statement__body {
    font-size: clamp(18px, 1.6vw, 21px);
    color: var(--text-muted);
    max-width: 60ch;
    margin: 0 auto;
    text-wrap: balance;
    line-height: 1.55;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    border-top: 1px solid var(--border-faint);
    padding: 72px 0 32px;
    background: #050505;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 56px;
}
.footer__brand { font-family: var(--font-display); font-size: 28px; letter-spacing: 4px; color: var(--text); margin-bottom: 14px; }
.footer__tag { font-size: 14px; color: var(--text-muted); max-width: 240px; }
.footer__heading { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 180ms var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
    border-top: 1px solid var(--border-faint);
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: var(--text-faint);
}

/* ----------------------------------------
   Reveal on scroll (with stagger)
   ---------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 400ms var(--ease), transform 400ms var(--ease);
    will-change: opacity, transform;
    transition-delay: calc(var(--stagger, 0) * 60ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ----------------------------------------
   PRESERVED: Centered single-card pages (success, cancel)
   ---------------------------------------- */
.page {
    min-height: calc(100vh - 68px);
    display: grid;
    place-items: center;
    padding: 64px var(--gutter);
}
.page__card {
    max-width: 560px;
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
}
.page__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    color: #080808;
    display: grid; place-items: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(200, 150, 12, 0.4);
}
.page__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 48px);
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.page__subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 32px; }
.page__highlight {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}
.page__reference {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 24px;
}
.page__secondary {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    color: var(--gold);
}
.page__support { font-size: 12px; color: var(--text-faint); margin-top: 24px; }

/* ----------------------------------------
   PRESERVED: Legal page layout (challenge-rules etc.)
   ---------------------------------------- */
.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px var(--gutter) 96px;
}
.legal__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 56px);
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.legal__updated { font-size: 13px; color: var(--text-faint); margin-bottom: 48px; }
.legal h2 { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: var(--gold); margin: 32px 0 12px; }
.legal p, .legal li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal ul { margin: 12px 0 12px 24px; }
.legal ul li { list-style: disc; }
.legal a { color: var(--gold); border-bottom: 1px solid rgba(201, 168, 76, 0.4); transition: border-color 180ms var(--ease); }
.legal a:hover { border-bottom-color: var(--gold); }

/* ============================================================
   Responsive — mobile-first checks at 1280 / 768 / 375
   ============================================================ */

/* Tablet — hero stacks, pricing collapses to single column */
@media (max-width: 980px) {
    .hero { min-height: auto; padding-top: 56px; padding-bottom: 64px; }
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 56px;
        text-align: center;
    }
    .hero__content { text-align: center; }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__ctas { justify-content: center; }
    .trusted { justify-content: center; margin: 0 auto; }
    .features { grid-template-columns: repeat(2, 1fr); }
    .pricing {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Featured card surfaces FIRST on mobile per art direction */
    .price-card--featured {
        transform: none;
        order: -1;
    }
    .price-card--featured:hover { transform: translateY(-4px); }
    .steps { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Phone */
@media (max-width: 620px) {
    body { font-size: 16px; }
    .features { grid-template-columns: 1fr; }
    .feature { padding: 28px 24px; }
    .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin-left: auto; margin-right: auto; }
    .hero__ctas .cta { width: 100%; }
    .trusted { font-size: 10px; gap: 12px; }
    .trusted::before, .trusted::after { flex-basis: 24px; }
    .price-card { padding: 32px 24px; }
    .step__numeral { font-size: 110px; }
    .footer__grid { grid-template-columns: 1fr; }
}

/* Small phone — last-resort */
@media (max-width: 380px) {
    .container { padding: 0 18px; }
    .nav__inner { padding: 0 18px; }
    .hero__title { font-size: 3.2rem; }
}
