:root {
    --ink: #090a0c;
    --panel: #121419;
    --panel-2: #191c22;
    --paper: #f3f0e9;
    --white: #f8f8f6;
    --muted: #92969e;
    --line: rgba(255, 255, 255, .11);
    --orange: #ff4f1f;
    --orange-hot: #ff6a3d;
    --mint: #52f2b0;
    --max: 1240px;
    --pad: clamp(20px, 5vw, 72px);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--ink);
    font-family: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(circle at 78% 8%, rgba(255, 79, 31, .12), transparent 29rem),
        linear-gradient(115deg, transparent 0 70%, rgba(255, 255, 255, .015) 70% 71%, transparent 71%);
}

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button, input, textarea, select { font: inherit; }

::selection { color: var(--ink); background: var(--orange); }

.site-noise {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: .22;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 12px 16px;
    color: var(--ink);
    background: var(--mint);
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 0 var(--pad);
    border-bottom: 1px solid transparent;
    transition: background-color 240ms ease, border-color 240ms ease, min-height 240ms ease;
}

.site-header.is-scrolled {
    min-height: 68px;
    background: rgba(9, 10, 12, .86);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    gap: 11px;
    align-items: center;
    color: var(--white);
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 22px;
    font-style: italic;
    letter-spacing: .12em;
    text-decoration: none;
}

.brand-mark {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 8px);
    gap: 3px;
    width: 19px;
    height: 25px;
    transform: skewX(-14deg);
}

.brand-mark i { display: block; background: var(--orange); }
.brand-mark i:last-child { margin-top: 7px; background: var(--white); }

.site-nav {
    display: flex;
    gap: clamp(18px, 2.5vw, 38px);
    align-items: center;
}

.site-nav a {
    position: relative;
    color: #bbbfc6;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
}

.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    padding: 13px 17px;
    color: var(--ink) !important;
    background: var(--white);
    clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
    transition: background-color 180ms ease, transform 180ms var(--ease) !important;
}

.nav-cta:hover { background: var(--orange); transform: translateY(-2px); }
.menu-toggle { display: none; }

.section-shell {
    width: min(100%, calc(var(--max) + (var(--pad) * 2)));
    margin: 0 auto;
    padding-right: var(--pad);
    padding-left: var(--pad);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
    min-height: 850px;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pad);
    width: 1px;
    content: "";
    background: linear-gradient(transparent, var(--line) 18%, var(--line) 85%, transparent);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 24px;
    color: #b5b8be;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.eyebrow span { color: var(--orange); }

h1, h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: .88;
    text-transform: uppercase;
}

h1 { font-size: clamp(4.3rem, 7.8vw, 8.1rem); }
h2 { font-size: clamp(3.4rem, 6vw, 6.4rem); }
h1 em, h2 em { color: var(--orange); font-style: normal; }

.hero-lede {
    max-width: 610px;
    margin: 34px 0 0;
    color: #b5b8be;
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 28px;
    align-items: center;
    margin-top: 38px;
}

.button {
    display: inline-flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 23px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
    transition: transform 220ms var(--ease), background-color 220ms ease, box-shadow 220ms ease;
}

.button-primary { color: #0c0b0a; background: var(--orange); box-shadow: 0 18px 45px rgba(255, 79, 31, .18); }
.button:hover, .button:focus-visible { transform: translateY(-3px); background: var(--orange-hot); box-shadow: 0 22px 55px rgba(255, 79, 31, .3); }

.text-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.text-link span { margin-left: 7px; color: var(--orange); }

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 25px;
    margin-top: 52px;
    color: #767a82;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 10px;
    letter-spacing: .12em;
}

.hero-proof span { display: flex; gap: 9px; align-items: center; }
.hero-proof span::before { width: 4px; height: 4px; content: ""; background: var(--mint); border-radius: 50%; box-shadow: 0 0 10px var(--mint); }

.hero-visual { position: relative; min-height: 620px; perspective: 1300px; }

.phone-shell {
    position: absolute;
    top: 15px;
    right: clamp(8px, 5vw, 62px);
    z-index: 2;
    width: min(360px, 82vw);
    padding: 9px;
    overflow: hidden;
    background: #050607;
    border: 1px solid #343840;
    border-radius: 52px;
    box-shadow: 0 55px 110px rgba(0, 0, 0, .62), 0 0 0 5px #0e1013;
    transform: rotateY(-7deg) rotateZ(2deg);
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 34px;
    padding: 0 22px;
    color: #d7d8da;
    background: #111419;
    font-size: 9px;
    font-weight: 700;
}

.phone-top i { width: 85px; height: 24px; background: #050607; border-radius: 20px; }

.phone-map { position: relative; height: 555px; overflow: hidden; border-radius: 0 0 43px 43px; }
.phone-map svg { width: 100%; height: 100%; }

.track-line {
    fill: none;
    stroke: var(--orange);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    animation: draw-track 2.1s .35s var(--ease) forwards;
}

.map-status, .map-timer, .turn-card, .map-bottom { position: absolute; left: 18px; }
.map-status { top: 18px; display: flex; gap: 7px; align-items: center; padding: 8px 10px; background: rgba(9, 10, 12, .76); border: 1px solid var(--line); border-radius: 30px; font-size: 8px; font-weight: 900; letter-spacing: .13em; backdrop-filter: blur(9px); }
.map-status i { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 9px var(--mint); }
.map-timer { top: 58px; padding: 8px 12px; background: rgba(9, 10, 12, .8); border-radius: 10px; font-family: "SFMono-Regular", Consolas, monospace; font-size: 22px; font-weight: 900; }
.turn-card { top: 112px; display: flex; gap: 10px; align-items: center; padding: 10px 13px; background: rgba(9, 10, 12, .84); border: 1px solid var(--line); border-radius: 13px; }
.turn-card > strong { color: var(--orange); font-size: 29px; }
.turn-card span { display: grid; gap: 2px; color: var(--muted); font-size: 9px; }
.turn-card b { color: var(--white); font-family: "SFMono-Regular", Consolas, monospace; font-size: 13px; }
.map-bottom { right: 18px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; padding: 14px; background: rgba(9, 10, 12, .89); border: 1px solid var(--line); border-radius: 16px; backdrop-filter: blur(12px); }
.map-bottom span { font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.map-bottom strong { color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }

.floating-rank {
    position: absolute;
    right: 0;
    bottom: 55px;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2px 22px;
    min-width: 192px;
    padding: 16px 18px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .46);
    transform: rotate(-3deg);
}

.floating-rank span { grid-column: 1 / -1; font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.floating-rank strong { font-family: Impact, sans-serif; font-size: 48px; line-height: 1; }
.floating-rank i { align-self: end; padding-bottom: 5px; color: #088553; font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; font-style: normal; font-weight: 800; }

.orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .07); border-radius: 50%; }
.orbit-one { top: 45px; right: -80px; width: 530px; height: 530px; }
.orbit-two { top: 132px; right: 10px; width: 350px; height: 350px; border-color: rgba(255, 79, 31, .16); }
.hero-index { position: absolute; right: var(--pad); bottom: 36px; color: rgba(255, 255, 255, .13); font-family: Impact, sans-serif; font-size: 54px; font-style: italic; }

.ticker { overflow: hidden; color: var(--ink); background: var(--orange); border-top: 1px solid #ff7955; border-bottom: 1px solid #cf3210; transform: rotate(-1deg) scale(1.02); }
.ticker div { display: flex; gap: 31px; align-items: center; width: max-content; padding: 16px 0; animation: ticker 26s linear infinite; }
.ticker span { font-family: Impact, "Arial Narrow", sans-serif; font-size: 19px; letter-spacing: .04em; }
.ticker i { font-size: 10px; font-style: normal; }

.process { padding-top: 150px; padding-bottom: 160px; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 60px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading p:last-child { max-width: 420px; margin: 0 0 7px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { position: relative; min-height: 420px; padding: 26px clamp(24px, 3vw, 42px) 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(18, 20, 25, .55); transition: background-color 300ms ease, transform 300ms var(--ease); }
.process-card:hover { z-index: 2; background: var(--panel-2); transform: translateY(-7px); }
.process-card.featured { background: var(--orange); color: var(--ink); }
.process-card.featured p { color: rgba(9, 10, 12, .68); }
.card-index { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; }
.card-index span { padding: 6px 8px; color: var(--ink); background: var(--white); font-size: 8px; font-weight: 900; }
.featured .card-index { color: rgba(9, 10, 12, .58); }
.featured .card-index span { color: var(--white); background: var(--ink); }
.process-card h3 { margin: 23px 0 12px; font-size: 25px; letter-spacing: -.02em; }
.process-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.process-icon { position: relative; display: grid; place-items: center; height: 180px; }
.route-icon i { width: 82px; height: 105px; border: 5px solid var(--orange); border-color: var(--orange) transparent var(--orange) var(--orange); border-radius: 58% 40% 60% 42%; transform: rotate(28deg); }
.route-icon b { position: absolute; top: 28px; left: 50%; width: 12px; height: 12px; background: var(--mint); border: 3px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 2px var(--mint); }
.trim-icon i { width: 120px; height: 6px; background: var(--ink); transform: rotate(-26deg); }
.trim-icon i::before, .trim-icon i::after { position: absolute; top: -7px; width: 19px; height: 19px; content: ""; background: var(--white); border: 5px solid var(--ink); border-radius: 50%; }
.trim-icon i::before { left: -4px; }.trim-icon i::after { right: -4px; }
.trim-icon b { position: absolute; width: 2px; height: 120px; background: rgba(9, 10, 12, .22); }
.flag-icon { color: var(--orange); font-size: 92px; line-height: 1; }

.leaderboard-section { padding: 150px 0; background: var(--paper); color: var(--ink); }
.leaderboard-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.leaderboard-copy .eyebrow { color: #62656b; }
.leaderboard-copy > p:not(.eyebrow) { max-width: 430px; margin: 30px 0; color: #555960; line-height: 1.65; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 34px 0 0; list-style: none; font-size: 13px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.check-list i { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-right: 9px; color: var(--ink); background: var(--mint); border-radius: 50%; font-style: normal; }

.scoreboard { background: var(--ink); color: var(--white); box-shadow: 20px 24px 0 var(--orange); }
.scoreboard-head { display: flex; align-items: center; justify-content: space-between; padding: 25px 27px; border-bottom: 1px solid var(--line); }
.scoreboard-head div { display: grid; gap: 4px; }
.scoreboard-head span, .scoreboard-head > b { color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: .12em; }
.scoreboard-head strong { font-size: 17px; letter-spacing: .03em; }
.score-row { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto 58px; gap: 14px; align-items: center; min-height: 75px; padding: 10px 25px; border-bottom: 1px solid var(--line); }
.score-row > span { color: #777c84; font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; }
.score-row > b { display: flex; gap: 10px; align-items: center; overflow: hidden; font-size: 13px; text-overflow: ellipsis; }
.score-row > b i { display: grid; place-items: center; flex: 0 0 31px; height: 31px; color: var(--ink); background: #d7d7d4; border-radius: 50%; font-size: 10px; font-style: normal; }
.score-row > strong { font-family: "SFMono-Regular", Consolas, monospace; font-size: 13px; }
.score-row > em { color: #777c84; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-style: normal; text-align: right; }
.score-row.champion { background: #17191e; }
.score-row.champion > span, .score-row.champion > strong { color: var(--orange); }
.score-row.champion > b i { background: var(--orange); }
.score-row.active { position: relative; background: rgba(82, 242, 176, .08); }
.score-row.active::before { position: absolute; top: 0; bottom: 0; left: 0; width: 4px; content: ""; background: var(--mint); }
.score-row.active > em { color: var(--mint); }
.scoreboard-foot { display: flex; align-items: center; justify-content: space-between; padding: 15px 25px; color: #666b73; font-family: "SFMono-Regular", Consolas, monospace; font-size: 8px; letter-spacing: .1em; }

.safety { padding-top: 140px; padding-bottom: 140px; }
.safety-panel { position: relative; display: grid; grid-template-columns: .95fr .7fr; gap: 70px; padding: clamp(34px, 6vw, 80px); overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.safety-panel::after { position: absolute; right: -30px; bottom: -65px; width: 300px; height: 150px; content: ""; background: repeating-linear-gradient(-45deg, var(--orange) 0 16px, transparent 16px 32px); opacity: .09; }
.safety-mark { position: absolute; top: 0; right: 0; display: grid; place-items: center; width: 68px; height: 68px; color: var(--ink); background: var(--orange); font-family: Impact, sans-serif; font-size: 42px; }
.safety-copy { align-self: end; }
.safety-copy p { color: #a4a8af; line-height: 1.65; }

.availability { padding-bottom: 150px; }
.availability-card { display: grid; grid-template-columns: .75fr 1fr .7fr; gap: 55px; padding: clamp(35px, 5vw, 70px); background: var(--paper); color: var(--ink); clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px); }
.availability-card .eyebrow { color: #676b71; }
.plans { display: grid; gap: 1px; background: #c7c5bf; border: 1px solid #c7c5bf; }
.plans article { padding: 24px; background: var(--paper); }
.plans span, .launch-cta > span { color: #707279; font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.plans strong { display: block; margin: 9px 0; font-size: 18px; }
.plans p { margin: 0; color: #62656b; font-size: 13px; line-height: 1.55; }
.plans .premium-plan { color: var(--white); background: var(--ink); }
.plans .premium-plan span { color: var(--orange); }.plans .premium-plan p { color: #9da0a6; }
.launch-cta { align-self: center; }
.launch-cta strong { display: block; margin: 12px 0 23px; font-size: 20px; line-height: 1.3; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; padding: 65px var(--pad) 32px; border-top: 1px solid var(--line); }
.footer-brand p { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: #b6bac0; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--orange); }
.footer-meta { grid-column: 1 / -1; margin: 45px 0 0; padding-top: 23px; color: #858a94; border-top: 1px solid var(--line); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; letter-spacing: .08em; }

/* Privacy */
.legal-hero { display: grid; grid-template-columns: 1fr .6fr; gap: 70px; align-items: end; min-height: 630px; padding-top: 170px; padding-bottom: 90px; border-bottom: 1px solid var(--line); }
.legal-hero .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
.legal-hero h1 { font-size: clamp(5.2rem, 10vw, 10rem); }
.legal-intro { padding-bottom: 8px; }
.legal-intro p { margin: 0 0 30px; color: #b1b5bc; font-size: 18px; line-height: 1.65; }
.legal-intro span { color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: clamp(50px, 10vw, 150px); justify-content: center; padding-top: 100px; padding-bottom: 150px; }
.legal-nav { position: sticky; top: 105px; align-self: start; display: grid; gap: 15px; padding-left: 18px; border-left: 1px solid var(--line); }
.legal-nav span { margin-bottom: 8px; color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.legal-nav a { color: #777b83; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; transition: color 180ms ease, transform 180ms ease; }
.legal-nav a:hover, .legal-nav a:focus-visible { color: var(--white); transform: translateX(5px); }
.legal-copy section { position: relative; padding: 0 0 85px 70px; }
.legal-copy section + section { padding-top: 85px; border-top: 1px solid var(--line); }
.legal-number { position: absolute; top: 3px; left: 0; color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 11px; font-weight: 800; }
.legal-copy section + section .legal-number { top: 88px; }
.legal-copy h2 { margin-bottom: 34px; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(2.3rem, 4.3vw, 4.3rem); }
.legal-copy h3 { margin: 38px 0 12px; font-size: 18px; }
.legal-copy p, .legal-copy li { color: #aaadb4; font-size: 15px; line-height: 1.8; }
.legal-copy ul { display: grid; gap: 9px; padding-left: 19px; }
.legal-copy li::marker { color: var(--orange); }
.legal-callout { margin: 30px 0; padding: 23px 25px; color: #d9dadd; background: var(--panel); border-left: 4px solid var(--mint); font-size: 14px; line-height: 1.7; }
.contact-card { margin-top: 35px; padding: 30px; color: var(--ink); background: var(--orange); }
.contact-card span { font-family: "SFMono-Regular", Consolas, monospace; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.contact-card a { display: flex; align-items: center; justify-content: space-between; margin: 13px 0; color: var(--ink); font-size: clamp(22px, 4vw, 38px); font-weight: 900; text-decoration: none; }
.contact-card p { margin: 0; color: rgba(9, 10, 12, .65); font-size: 12px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: 70ms; }.hero .reveal:nth-child(3) { transition-delay: 140ms; }.hero .reveal:nth-child(4) { transition-delay: 210ms; }.hero .reveal:nth-child(5) { transition-delay: 280ms; }
.process-grid .reveal:nth-child(2) { transition-delay: 80ms; }.process-grid .reveal:nth-child(3) { transition-delay: 160ms; }

@keyframes draw-track { to { stroke-dashoffset: 0; } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
    .site-header { min-height: 70px; }
    .menu-toggle { display: grid; gap: 7px; width: 46px; height: 46px; padding: 12px; background: transparent; border: 1px solid var(--line); }
    .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--white); transition: transform 220ms ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
    .site-nav { position: absolute; top: 70px; right: 0; left: 0; display: grid; gap: 0; padding: 8px var(--pad) 24px; background: rgba(9, 10, 12, .97); border-bottom: 1px solid var(--line); transform: translateY(-130%); visibility: hidden; opacity: 0; transition: transform 320ms var(--ease), opacity 220ms ease, visibility 320ms; }
    .site-nav.is-open { transform: translateY(0); visibility: visible; opacity: 1; }
    .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); }
    .site-nav .nav-cta { margin-top: 14px; padding: 16px; text-align: center; border: 0; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 140px; }
    .hero-copy { max-width: 740px; }
    .hero-visual { min-height: 650px; }
    .phone-shell { right: 50%; transform: translateX(50%) rotateZ(1.5deg); }
    .floating-rank { right: calc(50% - 245px); }
    .orbit-one { right: 50%; transform: translateX(50%); }
    .orbit-two { right: 50%; transform: translateX(50%); }
    .section-heading { grid-template-columns: 1fr; gap: 28px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card { display: grid; grid-template-columns: 140px 1fr; column-gap: 25px; min-height: 250px; }
    .card-index { grid-column: 1 / -1; }
    .process-icon { grid-row: span 2; height: 150px; }
    .leaderboard-layout { grid-template-columns: 1fr; }
    .leaderboard-copy { max-width: 700px; }
    .scoreboard { max-width: 750px; }
    .safety-panel { grid-template-columns: 1fr; }
    .safety-copy { max-width: 650px; }
    .availability-card { grid-template-columns: 1fr 1fr; }
    .launch-cta { grid-column: 1 / -1; }
    .legal-hero { grid-template-columns: 1fr; min-height: 620px; gap: 35px; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
    .legal-nav span { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --pad: 20px; }
    .hero { gap: 20px; padding-top: 125px; padding-bottom: 80px; }
    h1 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
    h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
    .hero-lede { margin-top: 25px; font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
    .text-link { text-align: center; }
    .hero-proof { gap: 11px 17px; margin-top: 35px; }
    .hero-visual { min-height: 580px; margin: 15px -4px 0; }
    .phone-shell { width: 300px; border-radius: 44px; }
    .phone-map { height: 490px; border-radius: 0 0 36px 36px; }
    .floating-rank { right: -6px; bottom: 30px; min-width: 165px; }
    .orbit-one { top: 50px; width: 390px; height: 390px; }
    .orbit-two { width: 270px; height: 270px; }
    .hero-index { display: none; }
    .process { padding-top: 110px; padding-bottom: 110px; }
    .process-grid { margin-top: 50px; }
    .process-card { display: block; min-height: 385px; }
    .process-icon { height: 170px; }
    .leaderboard-section { padding: 105px 0 115px; }
    .scoreboard { margin-right: 10px; box-shadow: 10px 13px 0 var(--orange); }
    .score-row { grid-template-columns: 27px minmax(0, 1fr) auto; gap: 8px; padding: 8px 13px; }
    .score-row > b i { display: none; }
    .score-row > strong { font-size: 11px; }
    .score-row > em { display: none; }
    .scoreboard-head { padding: 20px 16px; }
    .safety { padding-top: 100px; padding-bottom: 100px; }
    .safety-panel { gap: 35px; padding: 35px 25px; }
    .safety-mark { width: 50px; height: 50px; font-size: 30px; }
    .availability { padding-bottom: 100px; }
    .availability-card { grid-template-columns: 1fr; gap: 35px; padding: 35px 25px; }
    .launch-cta { grid-column: auto; }
    .site-footer { grid-template-columns: 1fr; align-items: start; padding-top: 50px; }
    .footer-meta { margin-top: 10px; }
    .legal-hero { min-height: 590px; padding-top: 135px; padding-bottom: 70px; }
    .legal-hero h1 { font-size: clamp(4.6rem, 24vw, 7rem); }
    .legal-layout { padding-top: 65px; padding-bottom: 90px; }
    .legal-nav { grid-template-columns: 1fr 1fr; gap: 14px 8px; }
    .legal-copy section { padding: 0 0 65px 38px; }
    .legal-copy section + section { padding-top: 65px; }
    .legal-copy section + section .legal-number { top: 68px; }
    .legal-copy h2 { margin-bottom: 27px; font-size: 2.7rem; }
    .legal-copy p, .legal-copy li { font-size: 14px; }
    .contact-card { margin-left: -38px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .track-line { stroke-dashoffset: 0; }
}

/* App-aligned product pages */
.product-hero {
    min-height: 590px;
    padding-top: 170px;
    padding-bottom: 82px;
    background: radial-gradient(circle at 80% 30%, rgba(255, 101, 10, .13), transparent 28rem);
    border-bottom: 1px solid var(--line);
}

.product-hero.compact-hero { min-height: 540px; }
.product-hero-grid { display: grid; grid-template-columns: 1fr minmax(310px, .62fr); gap: clamp(42px, 8vw, 110px); align-items: end; }
.product-hero h1 { margin: 0; }
.product-lede { max-width: 580px; margin: 28px 0 0; color: #a9adb4; font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }

.track-search, .support-contact {
    padding: 24px;
    background: rgba(20, 22, 27, .86);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    backdrop-filter: blur(20px);
}
.track-search label, .support-contact span { display: block; margin-bottom: 11px; color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.track-search > div { display: flex; gap: 10px; align-items: center; min-height: 56px; padding-left: 16px; background: #0d0f13; border: 1px solid var(--line); border-radius: 17px; }
.track-search input { min-width: 0; flex: 1; color: var(--white); background: transparent; border: 0; outline: 0; }
.track-search button { min-height: 44px; margin-right: 6px; padding: 0 18px; color: var(--ink); background: var(--orange); border: 0; border-radius: 13px; font-weight: 800; cursor: pointer; }
.support-contact { display: grid; text-decoration: none; }
.support-contact strong { font-size: clamp(22px, 3vw, 34px); letter-spacing: -.03em; }
.support-contact small { margin-top: 10px; color: var(--muted); }

.track-library, .support-grid { padding-top: 84px; padding-bottom: 140px; }
.library-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 36px; }
.library-heading span, .library-heading > strong { color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; letter-spacing: .12em; }
.library-heading h2 { margin-top: 8px; font-family: inherit; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.045em; text-transform: none; }
.track-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.web-track-card { display: grid; grid-template-columns: minmax(180px, .72fr) 1fr; min-height: 290px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, rgba(27, 30, 36, .98), rgba(12, 14, 18, .98)); border: 1px solid var(--line); border-radius: 28px; text-decoration: none; box-shadow: 0 20px 60px rgba(0, 0, 0, .22); transition: transform 300ms var(--ease), border-color 250ms ease, box-shadow 300ms ease; }
.web-track-card:hover { border-color: rgba(255, 101, 10, .42); box-shadow: 0 30px 80px rgba(0, 0, 0, .38); transform: translateY(-6px); }
.track-card-map { position: relative; min-height: 260px; overflow: hidden; background: radial-gradient(circle at 40% 30%, #302a20, #101218 68%); }
.track-card-map::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, transparent 60%, rgba(9, 10, 12, .75)); }
.track-card-map svg { width: 100%; height: 100%; }
.track-card-map > span { position: absolute; top: 18px; left: 18px; z-index: 2; color: rgba(255,255,255,.5); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; }
.web-contour { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 5; }
.web-route-shadow, .web-route { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.web-route-shadow { stroke: rgba(0,0,0,.75); stroke-width: 18; }
.web-route { stroke: var(--orange); stroke-width: 8; }
.track-card-body { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 30px; }
.track-card-type { color: var(--orange); font-family: "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.track-card-body h3 { margin: 12px 0 6px; overflow-wrap: anywhere; font-size: clamp(24px, 3vw, 36px); letter-spacing: -.035em; }
.track-card-body > p { margin: 0; color: var(--muted); line-height: 1.5; }
.track-card-body dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 28px 0 0; }
.track-card-body dl div { min-width: 0; }
.track-card-body dt { color: #858a94; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.track-card-body dd { margin: 7px 0 0; overflow: hidden; font-family: "SFMono-Regular", Consolas, monospace; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.card-arrow { position: absolute; right: 22px; bottom: 20px; display: grid; place-items: center; width: 42px; height: 42px; color: var(--orange); background: rgba(255,101,10,.1); border-radius: 50%; }
.empty-state { padding: clamp(34px, 6vw, 72px); background: var(--panel); border: 1px solid var(--line); border-radius: 28px; text-align: center; }
.empty-state > span { color: var(--orange); font-family: monospace; font-size: 10px; letter-spacing: .12em; }
.empty-state h2 { margin: 12px 0; font-family: inherit; font-size: clamp(34px, 5vw, 56px); text-transform: none; }

.track-hero { position: relative; min-height: 700px; overflow: hidden; background: radial-gradient(circle at 55% 30%, #18304a, #080a0e 50%, #040506); }
.track-world { position: absolute; top: -32%; right: -8%; width: min(76vw, 980px); aspect-ratio: 1; background: radial-gradient(circle at 36% 30%, rgba(61,116,159,.72), rgba(12,32,56,.84) 38%, #03070c 70%); border-radius: 50%; box-shadow: 0 0 110px rgba(20,100,170,.25); opacity: .7; }
.track-world::after { position: absolute; inset: 11%; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 48%; transform: rotate(18deg); }
.track-hero-route { position: absolute; top: 3%; right: -3%; width: min(72vw, 900px); height: 620px; }
.track-hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: end; min-height: 700px; padding-bottom: 74px; }
.track-hero-copy h1 { max-width: 850px; margin: 20px 0 12px; overflow-wrap: anywhere; font-size: clamp(64px, 10vw, 135px); }
.track-hero-copy > p:last-child { color: #b7bbc2; font-size: 18px; }
.back-link { width: max-content; margin-bottom: auto; padding-top: 130px; color: #b8bcc4; font-size: 13px; font-weight: 800; text-decoration: none; }
.track-detail-shell { position: relative; z-index: 3; padding-top: 0; padding-bottom: 140px; }
.track-summary-panel { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 1px; align-items: stretch; margin-top: -30px; overflow: hidden; background: #272a30; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 28px 90px rgba(0,0,0,.45); }
.track-summary-panel > div { display: grid; gap: 8px; min-height: 112px; padding: 26px; background: rgba(14,16,20,.98); }
.track-summary-panel span, .public-board-head span, .deep-link-card > span { color: var(--orange); font-family: monospace; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.track-summary-panel strong { align-self: end; font-size: 21px; }
.track-summary-panel .button { align-self: center; margin: 18px; border-radius: 16px; }
.public-leaderboard { margin-top: 34px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: 28px; }
.public-board-head { display: flex; align-items: end; justify-content: space-between; padding: 30px; border-bottom: 1px solid var(--line); }
.public-board-head h2 { margin-top: 8px; font-family: inherit; font-size: clamp(34px, 5vw, 52px); text-transform: none; }
.public-board-head > strong { color: var(--muted); font-size: 12px; }
.public-leaderboard ol { padding: 0; margin: 0; list-style: none; }
.public-leaderboard li { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; gap: 20px; align-items: center; min-height: 76px; padding: 15px 30px; border-bottom: 1px solid var(--line); }
.public-leaderboard li:last-child { border-bottom: 0; }
.public-leaderboard li > span { color: #747982; font-family: monospace; }
.public-leaderboard li strong { overflow-wrap: anywhere; }
.public-leaderboard time { font-family: monospace; }
.public-leaderboard .winner { background: linear-gradient(90deg, rgba(255,101,10,.1), transparent); }
.public-leaderboard .winner > span, .public-leaderboard .winner time { color: var(--orange); }
.board-empty { display: grid; gap: 8px; padding: 50px 30px; text-align: center; }.board-empty span { color: var(--muted); }
.deep-link-card { margin-top: 34px; padding: clamp(36px, 7vw, 76px); background: radial-gradient(circle at 90% 15%, rgba(255,101,10,.18), transparent 25rem), #111319; border: 1px solid var(--line); border-radius: 28px; }
.deep-link-card h2 { max-width: 700px; margin: 14px 0; font-family: inherit; font-size: clamp(40px, 6vw, 72px); letter-spacing: -.045em; text-transform: none; }
.deep-link-card p { max-width: 650px; color: var(--muted); font-size: 17px; line-height: 1.65; }.deep-link-card .button { margin-top: 18px; border-radius: 16px; }

.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.support-card { padding: clamp(28px, 5vw, 48px); background: linear-gradient(145deg, var(--panel-2), var(--panel)); border: 1px solid var(--line); border-radius: 26px; }
.support-card > span { color: var(--orange); font-family: monospace; font-size: 10px; }.support-card h2 { margin: 20px 0 14px; font-family: inherit; font-size: clamp(28px, 4vw, 42px); text-transform: none; }.support-card p { color: var(--muted); line-height: 1.65; }.support-card a { display: inline-block; margin-top: 18px; color: var(--orange); font-weight: 800; text-decoration: none; }

.account-action { display: grid; min-height: 78vh; place-items: center; padding-top: 130px; padding-bottom: 100px; }
.account-action-card { width: 100%; max-width: 620px; min-width: 0; padding: clamp(30px, 6vw, 62px); overflow: hidden; background: linear-gradient(145deg, rgba(28,31,37,.98), rgba(11,13,17,.98)); border: 1px solid var(--line); border-radius: 32px; box-shadow: 0 36px 100px rgba(0,0,0,.42); }
.account-action-status { display: grid; width: 54px; height: 54px; margin: 32px 0 24px; color: var(--orange); background: rgba(255,101,10,.1); border: 1px solid rgba(255,101,10,.35); border-radius: 18px; font-size: 28px; font-weight: 900; place-items: center; }
.account-action-status.is-success { color: #79e6a2; background: rgba(44,190,100,.1); border-color: rgba(70,220,125,.35); }
.account-action-card h1 { max-width: 100%; margin: 0; overflow-wrap: break-word; font-size: clamp(38px, 8vw, 76px); letter-spacing: -.055em; line-height: .94; }
.account-action-card > p:not(.eyebrow) { max-width: 500px; margin: 22px 0 30px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.account-action-form { display: grid; gap: 10px; margin-top: 30px; }
.account-action-form label { margin-top: 10px; color: #c8cbd1; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.account-action-form input { width: 100%; min-width: 0; min-height: 54px; padding: 0 17px; color: var(--white); background: rgba(255,255,255,.055); border: 1px solid var(--line); border-radius: 15px; outline: none; }
.account-action-form input:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,101,10,.12); }
.account-action-form .button { width: 100%; margin-top: 15px; border: 0; cursor: pointer; }
.account-action-error { padding: 14px 16px; color: #ffb2a0; background: rgba(190,45,20,.16); border: 1px solid rgba(255,90,55,.28); border-radius: 14px; }
.account-action-help { display: inline-block; margin-top: 24px; color: #8f949d; font-size: 12px; font-weight: 800; text-decoration: none; text-transform: uppercase; }

@media (max-width: 880px) {
    .product-hero-grid, .track-grid, .support-grid { grid-template-columns: 1fr; }
    .web-track-card { grid-template-columns: minmax(145px, .55fr) 1fr; }
    .track-summary-panel { grid-template-columns: repeat(3, 1fr); }.track-summary-panel .button { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 640px) {
    .product-hero { min-height: 0; padding-top: 132px; padding-bottom: 64px; }
    .product-hero-grid { gap: 34px; }
    .track-library, .support-grid { padding-top: 56px; padding-bottom: 90px; }
    .library-heading { align-items: start; flex-direction: column; gap: 10px; }
    .web-track-card { grid-template-columns: 118px minmax(0, 1fr); min-height: 220px; border-radius: 23px; }
    .track-card-map { min-height: 220px; }.track-card-body { padding: 22px 18px; }.track-card-body dl { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }.track-card-body dl div:nth-child(3) { display: none; }.card-arrow { right: 14px; bottom: 14px; }
    .track-hero, .track-hero-copy { min-height: 620px; }.track-hero-copy { padding-bottom: 62px; }.track-hero-copy h1 { font-size: clamp(54px, 18vw, 82px); }.track-hero-route { top: 7%; right: -60%; width: 150vw; }
    .track-summary-panel { grid-template-columns: 1fr; margin-top: -24px; }.track-summary-panel > div { min-height: 88px; }.track-summary-panel .button { grid-column: auto; }
    .public-board-head { align-items: start; flex-direction: column; gap: 10px; }.public-leaderboard li { grid-template-columns: 38px minmax(0,1fr) auto; gap: 9px; padding: 13px 16px; }.public-leaderboard time { font-size: 12px; }
    .footer-links { flex-wrap: wrap; gap: 18px 22px; }
}
