/* ═══════════════════════════════════════════════════════════
   Pump'd — oxblood & chrome on black
   Public pages only (index, checkout). admin.html still uses
   tokens.css; do not merge the two.
   ═══════════════════════════════════════════════════════════ */
:root {
    /* ── Ground ────────────────────────────────────────── */
    --void:        #0A0809;   /* page */
    --pitch:       #100D0E;   /* raised band */
    --crypt:       #171213;   /* card */
    --crypt-hi:    #1E1719;   /* card hover */

    /* ── Oxblood ───────────────────────────────────────── */
    --blood-deep:  #2A1013;   /* ambient wash */
    --blood:       #7B1E28;   /* accent */
    --blood-lit:   #9A2733;   /* accent hover */
    --flush:       #C9414E;   /* glow, focus, live edge */

    /* ── Chrome (a material, not an accent) ────────────── */
    --chrome-hi:   #F4F5F7;
    --chrome:      #C6C7CB;
    --chrome-lo:   #8E9096;
    --metal: linear-gradient(158deg,
        #FFFFFF 0%, #C9CACE 24%, #6C6E74 44%,
        #EDEEF1 58%, #9B9DA3 78%, #F4F5F7 100%);

    /* ── Ink ───────────────────────────────────────────── */
    --ink:         #F2EDE8;
    --ink-soft:    #A69E9B;
    --ink-faint:   #6E6663;
    --line:        rgba(242, 237, 232, .10);
    --line-strong: rgba(242, 237, 232, .22);
    --danger:      #E0616D;

    /* ── Type ──────────────────────────────────────────── */
    --f-display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
    --f-body:    'Instrument Sans', system-ui, -apple-system, sans-serif;
    --f-mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;

    --t-xs:    .75rem;
    --t-sm:    .875rem;
    --t-md:    1rem;
    --t-lg:    1.0625rem;
    --t-xl:    clamp(1.35rem, 4vw, 1.75rem);
    --t-2xl:   clamp(1.75rem, 6vw, 2.75rem);
    --t-3xl:   clamp(2.25rem, 9vw, 4.25rem);
    --t-hero:  clamp(2.6rem, 11.5vw, 6.5rem);

    --lead-body: 1.6;
    --lead-head: 1.02;
    --track-caps: .22em;

    /* ── Space ─────────────────────────────────────────── */
    --s1: .25rem;  --s2: .5rem;   --s3: .75rem;  --s4: 1rem;
    --s5: 1.5rem;  --s6: 2rem;    --s7: 3rem;    --s8: 4.5rem;
    --s-sec: clamp(3.75rem, 11vw, 7.5rem);

    --r-sm: 6px;  --r-md: 10px;  --r-lg: 16px;  --r-pill: 999px;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-body);
    background: var(--void);
    color: var(--ink);
    font-size: var(--t-md);
    line-height: var(--lead-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* height:auto is load-bearing — the width/height attributes on the images
   are there to reserve the right box, and without it they stretch to the
   literal attribute height instead of the aspect ratio. */
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--blood); color: var(--ink); }

h1, h2, h3 {
    font-family: var(--f-display);
    font-weight: 500;
    line-height: var(--lead-head);
    letter-spacing: -.015em;
    text-wrap: balance;
}
h2 { font-size: var(--t-2xl); }
h3 { font-size: var(--t-xl); }
p { text-wrap: pretty; }

:focus-visible {
    outline: 2px solid var(--flush);
    outline-offset: 3px;
    border-radius: 2px;
}

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--s5); }
.narrow { max-width: 720px; }
.sr {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip-path: inset(50%); white-space: nowrap;
}

/* Grain — one shared texture over the whole page, very low opacity.
   Fixed so it does not shift while scrolling. */
body::after {
    content: ''; position: fixed; inset: 0; z-index: 9;
    pointer-events: none; opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Metal type ───────────────────────────────────────── */
.metal {
    background: var(--metal);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Wordmark ─────────────────────────────────────────── */
.mark {
    font-family: var(--f-display);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
}

/* ── Eyebrow / label ──────────────────────────────────── */
.eyebrow {
    font-family: var(--f-mono);
    font-size: var(--t-xs);
    font-weight: 500;
    letter-spacing: var(--track-caps);
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: var(--s4);
}
.eyebrow-blood { color: var(--flush); }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: var(--s2);
    font-family: var(--f-body); font-weight: 600;
    font-size: var(--t-md); line-height: 1;
    padding: 1.15rem 2rem;
    border-radius: var(--r-pill);
    text-align: center; white-space: nowrap;
    transition: background .25s var(--ease), border-color .25s var(--ease),
                color .25s var(--ease), transform .25s var(--ease);
}
.btn-blood {
    background: var(--blood); color: #fff;
    box-shadow: 0 0 0 0 rgba(201, 65, 78, .5);
}
.btn-blood:hover { background: var(--blood-lit); transform: translateY(-1px); }
.btn-chrome {
    background: var(--chrome-hi); color: var(--void);
}
.btn-chrome:hover { background: #fff; transform: translateY(-1px); }
.btn-line {
    border: 1px solid var(--line-strong); color: var(--ink);
}
.btn-line:hover { border-color: var(--chrome); background: rgba(242, 237, 232, .04); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-sub {
    font-family: var(--f-mono); font-size: var(--t-xs);
    font-weight: 400; letter-spacing: .06em; opacity: .75;
}

.textlink {
    font-size: var(--t-sm); font-weight: 500; color: var(--ink-soft);
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 2px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
}
.textlink:hover { color: var(--ink); border-color: var(--flush); }

/* ── Dose chip: the pharmaceutical register ───────────── */
.dose {
    display: inline-flex; align-items: baseline; gap: .4em;
    font-family: var(--f-mono); font-size: var(--t-xs);
    letter-spacing: .1em; text-transform: uppercase;
    padding: .5rem .8rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--r-sm);
    color: var(--ink-soft);
    white-space: nowrap;
}
.dose b { color: var(--ink); font-weight: 600; }
.dose-row { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* ═══ Announce ════════════════════════════════════════ */
.announce {
    background: var(--blood-deep);
    color: var(--ink-soft);
    font-family: var(--f-mono);
    font-size: .68rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: center;
    padding: .7rem var(--s4);
    border-bottom: 1px solid var(--line);
    position: relative; z-index: 12;
}
.announce b { color: var(--ink); font-weight: 500; }

/* ═══ Header ══════════════════════════════════════════ */
.head {
    position: sticky; top: 0; z-index: 11;
    background: rgba(10, 8, 9, .72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line);
}
.head-in {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s4);
    height: 62px;
}
.head .mark { font-size: 1.35rem; }
.nav { display: none; }
.nav a {
    font-family: var(--f-mono); font-size: var(--t-xs);
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--ink-soft);
    transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.head .btn { padding: .95rem 1.4rem; font-size: var(--t-sm); }

@media (min-width: 860px) {
    .head-in { height: 74px; }
    .nav { display: flex; gap: var(--s6); }
}

/* ═══ Hero ════════════════════════════════════════════ */
/* Mobile is a SPLIT, not an overlay: there is no room on a 390px screen for
   a full-bleed image and five stacked copy elements without one wrecking the
   other. The image gets its own band; the copy sits on solid black beneath.
   The overlay composition returns at 1000px where there's width to spare. */
.hero {
    position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
    background: var(--void);
}
.hero-media {
    position: relative; z-index: 0;
    height: 50svh; min-height: 300px; flex: none;
}
.hero-media img, .hero-media video {
    width: 100%; height: 100%; object-fit: cover;
    /* Pans the band down the poster so the capsule lands just below the
       sticky header and clear of the bottom dissolve. */
    object-position: 50% 32%;
}
/* The video sits over the poster and fades in only once it is actually
   playing (JS adds .ready), so a slow start shows the drifting poster
   rather than a black rectangle. */
.hero-media video {
    position: absolute; inset: 0; z-index: 1;
    opacity: 0; transition: opacity .9s var(--ease);
}
.hero-media video.ready { opacity: 1; }

/* On mobile the image needs no scrim over the subject — only a soft dissolve
   at its lower edge so the band melts into the copy area instead of ending
   on a hard line. */
.hero-media::after {
    content: ''; position: absolute; inset: 0; z-index: 2;
    background:
        linear-gradient(to top, var(--void) 0%, rgba(10,8,9,.55) 18%, transparent 48%),
        radial-gradient(100% 70% at 12% 100%, rgba(42,16,19,.6), transparent 65%);
}

/* ── Ambient motion without a download ────────────────
   Phones get no video, so the poster carries the motion itself: a very slow
   push-in plus an oxblood light that breathes. Costs zero bytes and starts
   on first paint. Both are killed by the reduced-motion block at the end
   of this file. */
@keyframes hero-drift {
    from { transform: scale(1.015); }
    to   { transform: scale(1.14); }
}
@keyframes hero-breathe {
    0%, 100% { opacity: .35; }
    50%      { opacity: 1; }
}
.hero-media img.poster-only {
    z-index: 0;
    animation: hero-drift 26s cubic-bezier(.45,0,.55,1) infinite alternate;
    will-change: transform;
}
.hero-media::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(58% 38% at 52% 40%, rgba(201, 65, 78, .3), transparent 72%);
    animation: hero-breathe 11s ease-in-out infinite;
    pointer-events: none;
}
.hero-in {
    position: relative; z-index: 1;
    width: 100%;
    padding-top: var(--s6); padding-bottom: var(--s7);
    margin-top: calc(var(--s6) * -1);
}
.hero h1 {
    font-size: var(--t-hero);
    font-weight: 400;
    letter-spacing: -.03em;
    margin-bottom: var(--s5);
    max-width: 15em;
}
.hero h1 em {
    font-style: italic;
    font-weight: 500;
}
.hero-sub {
    font-size: var(--t-lg);
    color: var(--ink-soft);
    max-width: 34ch;
    margin-bottom: var(--s5);
}
.hero-sub b { color: var(--ink); font-weight: 500; }
.hero .dose-row { margin-bottom: var(--s6); }
.hero-cta { display: flex; flex-direction: column; gap: var(--s4); align-items: stretch; }
.hero-cta .btn { width: 100%; }
/* Without this the underlined link stretches the full column width and reads
   as a rule rather than a link. */
.hero-cta .textlink { align-self: flex-start; }

@media (min-width: 700px) {
    .hero-cta { flex-direction: row; align-items: center; gap: var(--s5); }
    .hero-cta .btn { width: auto; }
    .hero-cta .textlink { align-self: auto; }
    .hero-media { height: 52svh; }
}
@media (min-width: 1000px) {
    /* Back to the overlay composition. */
    .hero { flex-direction: row; align-items: center; min-height: 88svh; }
    .hero-media { position: absolute; inset: 0; height: auto; min-height: 0; }
    .hero-in { margin-top: 0; }
    .hero-media img.poster-only { display: none; }
    .hero-media::after {
        background:
            linear-gradient(to right, var(--void) 0%, rgba(10,8,9,.9) 34%, rgba(10,8,9,.25) 62%, transparent 100%),
            linear-gradient(to top, var(--void) 0%, transparent 40%),
            radial-gradient(90% 120% at 0% 60%, rgba(42,16,19,.7), transparent 62%);
    }
    .hero-in { padding: var(--s8) 0; }
    /* The portrait poster is for phones, so desktop hides it — which means the
       video needs its own base layer underneath or a blocked/slow video would
       leave a black hero. This is the same frame the video starts on, so there
       is no visible hand-off. */
    .hero-media {
        background-image: url('hero-desktop.jpg');
        background-size: cover;
        background-position: 50% 44%;
    }
    /* The loop is 16:9 in a wider box, so it crops vertically — hold the
       faces on the centre line. */
    .hero-media video { object-position: 50% 44%; }
    /* Held to the dark left half so the capsule — the whole point of the
       shot — is never behind a letterform. */
    .hero h1 { font-size: clamp(3.2rem, 5.2vw, 5.5rem); max-width: 8em; }
    .hero-sub { max-width: 38ch; }
}

/* ═══ Section frame ═══════════════════════════════════ */
.sec { padding: var(--s-sec) 0; position: relative; }
.sec-pitch { background: var(--pitch); }
.sec-head { margin-bottom: var(--s7); max-width: 46ch; }
.sec-head p {
    color: var(--ink-soft); margin-top: var(--s4); font-size: var(--t-lg);
}
.rule { height: 1px; background: var(--line); border: 0; }

/* ═══ THE WINDOW — signature ══════════════════════════
   A real linear 0–36h axis. Bar length is proportional to
   duration, so tadalafil's reach reads at a glance. */
.window { margin-top: var(--s6); }
.win-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s2);
    padding: var(--s5) 0;
    border-top: 1px solid var(--line);
}
.win-track:last-of-type { border-bottom: 1px solid var(--line); }
.win-meta { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); }
.win-name {
    font-family: var(--f-mono); font-size: var(--t-sm);
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.win-name span { color: var(--ink-faint); }
.win-span {
    font-family: var(--f-mono); font-size: var(--t-xs);
    color: var(--ink-soft); white-space: nowrap;
}
.win-bar {
    position: relative; height: 10px;
    background: rgba(242, 237, 232, .05);
    border-radius: var(--r-pill);
    overflow: hidden;
}
.win-fill {
    position: absolute; top: 0; bottom: 0;
    border-radius: var(--r-pill);
    transform-origin: left center;
    transition: transform 1.1s var(--ease);
}
/* Same progressive-enhancement gate as [data-lift]: the bars are
   drawn at full length unless the script is there to animate them. */
.js .win-fill { transform: scaleX(0); }
.window.lit .win-fill { transform: scaleX(1); }
.win-fill-chrome { background: var(--metal); }
.win-fill-blood { background: linear-gradient(90deg, var(--blood), var(--flush)); }
.win-fill-base {
    background: repeating-linear-gradient(90deg,
        var(--ink-faint) 0 6px, transparent 6px 12px);
}
.window.lit .win-track:nth-of-type(2) .win-fill { transition-delay: .12s; }
.window.lit .win-track:nth-of-type(3) .win-fill { transition-delay: .24s; }

.win-note { font-size: var(--t-sm); color: var(--ink-soft); margin-top: var(--s2); }

.win-axis {
    display: flex; justify-content: space-between;
    margin-top: var(--s4);
    font-family: var(--f-mono); font-size: .68rem;
    letter-spacing: .1em; color: var(--ink-faint);
}
.win-axis span:nth-child(even) { display: none; }
@media (min-width: 620px) {
    .win-axis span:nth-child(even) { display: inline; }
}

/* ═══ Ingredient ledger ═══════════════════════════════ */
/* The capsule sits on the same black as the page, so it needs no frame —
   only a mask that dissolves its edges into the background. */
.capsule-band {
    margin: 0 auto var(--s7);
    max-width: 560px;
    mask-image: radial-gradient(72% 82% at 50% 50%, #000 42%, transparent 78%);
    -webkit-mask-image: radial-gradient(72% 82% at 50% 50%, #000 42%, transparent 78%);
}
.capsule-band img { width: 100%; }

.ledger { border-top: 1px solid var(--line); }
.ing {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 'dose name' 'dose role';
    column-gap: var(--s5); row-gap: var(--s1);
    padding: var(--s5) 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.ing-dose {
    grid-area: dose;
    font-family: var(--f-mono); font-size: var(--t-sm);
    letter-spacing: .04em;
    color: var(--chrome);
    min-width: 4.5em;
    padding-top: .15em;
}
.ing-dose.is-rx { color: var(--flush); }
.ing-name {
    grid-area: name;
    font-family: var(--f-display); font-size: var(--t-xl);
    font-weight: 500; letter-spacing: -.01em;
}
.ing-role { grid-area: role; color: var(--ink-soft); font-size: var(--t-sm); max-width: 48ch; }

@media (min-width: 760px) {
    .ing {
        grid-template-columns: 7em 1fr 1fr;
        grid-template-areas: 'dose name role';
        align-items: center;
        column-gap: var(--s6);
    }
    .ing-role { text-align: right; justify-self: end; }
}

/* ═══ Arenas ══════════════════════════════════════════ */
.arenas { display: grid; gap: var(--s5); }
.arena {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--crypt);
    min-height: 380px;
    display: flex; align-items: flex-end;
    isolation: isolate;
}
.arena img {
    position: absolute; inset: 0; z-index: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.arena::after {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(10,8,9,.96) 6%, rgba(10,8,9,.6) 45%, rgba(10,8,9,.15) 100%);
}
.arena-body { position: relative; z-index: 2; padding: var(--s6); }
.arena-body h3 { margin-bottom: var(--s3); }
.arena-body p { color: var(--ink-soft); font-size: var(--t-sm); max-width: 34ch; }

@media (min-width: 800px) {
    .arenas { grid-template-columns: 1fr 1fr; }
    .arena { min-height: 460px; }
}

/* ═══ Buy ═════════════════════════════════════════════ */
.buy { display: grid; gap: var(--s7); align-items: start; }
.buy-visual {
    border-radius: var(--r-lg); overflow: hidden;
    background: var(--crypt); border: 1px solid var(--line);
}
.buy-visual img { width: 100%; }

.packs { display: grid; gap: var(--s3); margin: var(--s5) 0; }
.pack {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s4);
    padding: var(--s5);
    border: 1px solid var(--line-strong);
    border-radius: var(--r-md);
    background: var(--crypt);
    cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pack:hover { border-color: var(--chrome-lo); background: var(--crypt-hi); }
.pack.on {
    border-color: var(--flush);
    background: linear-gradient(90deg, var(--blood-deep), var(--crypt));
}
.pack-l { display: flex; flex-direction: column; gap: var(--s1); }
.pack-qty { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 500; }
.pack-caps { font-family: var(--f-mono); font-size: var(--t-xs); letter-spacing: .1em; color: var(--ink-faint); text-transform: uppercase; }
.pack-r { text-align: right; display: flex; flex-direction: column; gap: var(--s1); align-items: flex-end; }
.pack-price { font-family: var(--f-mono); font-size: var(--t-md); color: var(--ink); }
.pack-tag {
    font-family: var(--f-mono); font-size: .62rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--flush);
}

.totals {
    border: 1px solid var(--line); border-radius: var(--r-md);
    padding: var(--s5); background: var(--pitch);
    margin-bottom: var(--s5);
}
.trow {
    display: flex; justify-content: space-between; align-items: baseline;
    font-family: var(--f-mono); font-size: var(--t-sm);
    color: var(--ink-soft);
    padding: var(--s2) 0;
}
.trow b { color: var(--ink); font-weight: 500; }
.trow-total {
    border-top: 1px solid var(--line);
    margin-top: var(--s2); padding-top: var(--s4);
    font-size: var(--t-lg); color: var(--ink);
}
.trow-total b { font-size: 1.15em; }

.fineprint {
    font-family: var(--f-mono); font-size: var(--t-xs);
    color: var(--ink-faint); letter-spacing: .04em;
    margin-top: var(--s4); text-align: center;
}

@media (min-width: 900px) {
    .buy { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}

/* ═══ Protocol ════════════════════════════════════════ */
.steps { display: grid; gap: var(--s5); counter-reset: step; }
.step {
    padding: var(--s5);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--crypt);
}
.step-t {
    font-family: var(--f-mono); font-size: var(--t-xs);
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--flush); margin-bottom: var(--s3);
}
.step h3 { font-size: var(--t-lg); font-family: var(--f-body); font-weight: 600; margin-bottom: var(--s2); letter-spacing: 0; }
.step p { color: var(--ink-soft); font-size: var(--t-sm); }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ═══ Safety ══════════════════════════════════════════ */
.safety {
    border: 1px solid rgba(224, 97, 109, .3);
    border-radius: var(--r-md);
    background: linear-gradient(180deg, rgba(42,16,19,.7), var(--crypt));
    padding: var(--s6);
}
.safety h3 {
    font-family: var(--f-body); font-weight: 600; font-size: var(--t-lg);
    letter-spacing: 0; margin-bottom: var(--s4);
    display: flex; align-items: center; gap: var(--s3);
}
.safety h3::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--danger); flex: none;
}
.safety ul { list-style: none; display: grid; gap: var(--s3); }
.safety li {
    font-size: var(--t-sm); color: var(--ink-soft);
    padding-left: 1.2em; position: relative;
}
.safety li::before {
    content: '—'; position: absolute; left: 0; color: var(--ink-faint);
}
.safety li b { color: var(--ink); font-weight: 600; }

/* ═══ Guarantee ═══════════════════════════════════════ */
.promise { display: grid; gap: var(--s6); align-items: center; }
.seal {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 132px; height: 132px; flex: none;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    background: radial-gradient(circle at 30% 25%, var(--blood-deep), var(--void) 70%);
}
.seal b {
    font-family: var(--f-display); font-size: 2.6rem; font-weight: 500;
    line-height: 1; letter-spacing: -.03em;
}
.seal span {
    font-family: var(--f-mono); font-size: .58rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
    margin-top: .35rem;
}
.promise-body p { color: var(--ink-soft); margin-top: var(--s4); }
@media (min-width: 780px) { .promise { grid-template-columns: auto 1fr; gap: var(--s8); } }

/* ═══ FAQ ═════════════════════════════════════════════ */
.faq { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa-q {
    width: 100%; text-align: left;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s4);
    padding: var(--s5) 0;
    font-size: var(--t-lg); font-weight: 500;
    transition: color .2s var(--ease);
}
.qa-q:hover { color: var(--chrome); }
.qa-q i {
    font-style: normal; font-family: var(--f-mono);
    color: var(--flush); flex: none;
    transition: transform .3s var(--ease);
}
.qa-q[aria-expanded='true'] i { transform: rotate(45deg); }
.qa-a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .35s var(--ease);
}
.qa-q[aria-expanded='true'] + .qa-a { grid-template-rows: 1fr; }
.qa-a > div { overflow: hidden; }
.qa-a p {
    color: var(--ink-soft); font-size: var(--t-sm);
    padding-bottom: var(--s5); max-width: 62ch;
}
.qa-a a { color: var(--flush); border-bottom: 1px solid currentColor; }

/* ═══ Footer ══════════════════════════════════════════ */
.foot {
    border-top: 1px solid var(--line);
    padding: var(--s7) 0 calc(var(--s7) + env(safe-area-inset-bottom));
    background: var(--void);
}
.foot-top {
    display: flex; flex-wrap: wrap; gap: var(--s5);
    justify-content: space-between; align-items: flex-start;
    margin-bottom: var(--s6);
}
.foot .mark { font-size: 1.5rem; }
.foot-nav { display: flex; flex-wrap: wrap; gap: var(--s5); }
.foot-nav a {
    font-family: var(--f-mono); font-size: var(--t-xs);
    letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft);
}
.foot-nav a:hover { color: var(--ink); }
.foot-legal {
    font-size: var(--t-xs); color: var(--ink-faint);
    max-width: 78ch; display: grid; gap: var(--s3);
}

/* ═══ Sticky mobile buy bar ═══════════════════════════ */
.buybar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 12;
    display: flex; align-items: center; gap: var(--s4);
    padding: var(--s3) var(--s4) calc(var(--s3) + env(safe-area-inset-bottom));
    background: rgba(16, 13, 14, .9);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-top: 1px solid var(--line-strong);
    transform: translateY(110%);
    transition: transform .35s var(--ease);
}
.buybar.up { transform: translateY(0); }
.buybar-l { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.buybar-l b { font-family: var(--f-mono); font-size: var(--t-md); }
.buybar-l span {
    font-family: var(--f-mono); font-size: .62rem;
    letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
}
.buybar .btn { flex: 1; padding: .95rem 1.25rem; }
@media (min-width: 900px) { .buybar { display: none; } }

/* ═══ Tap targets ═════════════════════════════════════
   Text links sit at 19–25px tall on their own, well under the 44px a thumb
   needs. This grows the hit area around them without moving any pixel of
   the layout, so the type keeps its intended rhythm. */
.textlink, .nav a, .foot-nav a, .mark, .back-link { position: relative; }
.textlink::after, .nav a::after, .foot-nav a::after,
.mark::after, .back-link::after {
    content: ''; position: absolute;
    left: 0; right: 0; top: 50%;
    transform: translateY(-50%);
    height: 100%; min-height: 44px;
}

/* ═══ Scroll reveal ═══════════════════════════════════
   Gated on .js so the page is fully readable if the script
   never runs. Without this the content defaults to hidden. */
.js [data-lift] {
    opacity: 0; transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js [data-lift].lit { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        /* Without capping the iteration count, an `infinite alternate`
           animation does not stop here — it oscillates at maximum speed,
           which is the opposite of what was asked for. */
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    /* Belt and braces for the two ambient loops. */
    .hero-media img.poster-only { animation: none !important; transform: none !important; }
    .hero-media::before { animation: none !important; opacity: .55 !important; }
    [data-lift] { opacity: 1; transform: none; }
    .win-fill { transform: scaleX(1) !important; }
    /* No src is ever attached under reduced motion, but hide the element too so
       it can never paint. The poster is NOT forced visible here: desktop hides
       it deliberately and falls back to its background-image instead, which is
       the correctly-framed still. */
    .hero-media video { display: none !important; }
}
