/* ============================================================
   OPT(ML) — landing page
   Dark Cinema / luxury-minimal. Warm near-black + single ember accent.
   Type: Jost (display + body) · Bodoni Moda (editorial italic accents)
   ============================================================ */

:root{
  --bg:#080706;
  --bg-2:#0d0b09;
  --ink:#f4f2ef;
  --ink-2:#b4aea6;          /* nudged up for legibility (was #a8a29b) */
  --ink-3:#979088;          /* nudged up for legibility (was #8a847d) */
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.14);
  --card:rgba(255,255,255,.035);
  --card-2:rgba(255,255,255,.06);

  /* ── one ember scale; every accent + gradient derives from THESE ── */
  --ember:#f97316;
  --ember-l:#ff9f45;
  --ember-d:#ea4f1b;
  --ember-rgb:249,115,22;          /* single source of truth for ember alphas */
  --ember-warm:255,170,90;         /* warm highlight tint for glass/sheen */
  --mint:#34e27a;
  --amber:#facc15;
  --busy:#fb4d6d;

  /* ── cohesive gradient + glass system (used everywhere, no ad-hoc ramps) ── */
  --grad-cta:linear-gradient(177deg,#ffb066 0%,#fb8a3c 38%,#f0701f 100%);      /* primary button face */
  --grad-cta-hi:inset 0 1px 0 rgba(255,236,214,.55), inset 0 -1px 2px rgba(120,40,0,.32); /* button inner sheen+shade */
  --grad-tagline:linear-gradient(94deg,#ffd9b0 2%,#ff9f45 42%,#f97316 96%);    /* warm cream→ember text ramp */
  --grad-metal:linear-gradient(180deg,#fff,#cbc6bf);                            /* light metallic numerals */
  --veil-ember:radial-gradient(110% 120% at 50% -8%,rgba(var(--ember-rgb),.20),transparent 58%); /* clean panel veil */
  --glass:rgba(255,255,255,.05);          /* frosted-glass fill */
  --glass-hi:inset 0 1px 0 rgba(255,255,255,.14);
  --blur:16px;

  /* ── shadow scale — restrained, believable (real depth, not a neon glow) ── */
  --sh-cta:0 1px 1px rgba(0,0,0,.5), 0 6px 16px -10px rgba(0,0,0,.55), 0 12px 26px -16px rgba(205,92,28,.34);
  --sh-cta-hover:0 2px 2px rgba(0,0,0,.5), 0 10px 22px -12px rgba(0,0,0,.55), 0 18px 34px -16px rgba(205,92,28,.46);
  --sh-card:0 24px 60px -34px rgba(0,0,0,.9);

  --serif:'Bodoni Moda',Georgia,serif;
  --sans:'Jost',system-ui,-apple-system,Segoe UI,sans-serif;

  --maxw:1180px;
  --pad:clamp(20px,5vw,56px);
  --r:20px;
  --ease:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:84px;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
  font-weight:300;
  letter-spacing:.005em;
  overflow-x:clip;          /* clip (not hidden) so position:sticky still works */
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
::selection{background:rgba(var(--ember-rgb),.28);color:#fff}

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

/* ---------- overlays: grain + vignette + scroll bar ---------- */
.grain{
  position:fixed;inset:0;z-index:1;pointer-events:none;opacity:.04;mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scrollbar{position:fixed;top:0;left:0;right:0;height:2px;z-index:120;background:transparent}
.scrollbar__fill{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--ember-d),var(--ember-l));box-shadow:0 0 6px rgba(var(--ember-rgb),.45)}

/* ---------- type helpers ---------- */
.eyebrow{
  font-family:var(--sans);
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:.72rem;
  font-weight:500;
  color:var(--ink-3);
}
.eyebrow em{font-family:var(--serif);font-style:italic;text-transform:none;letter-spacing:.01em;font-size:1.15em;color:#d9d3cb}
.eyebrow--accent{color:var(--ember)}
.eyebrow--accent em{color:var(--ember-l)}

/* ---------- buttons ----------
   primary = "refined ember": dimensional ramp + inner sheen + restrained shadow (no neon halo)
   ghost   = frosted "liquid glass": backdrop blur + hairline + faint white fill           */
.btn{
  display:inline-flex;align-items:center;gap:.55em;
  font-family:var(--sans);font-weight:500;font-size:.95rem;letter-spacing:.01em;
  padding:.85em 1.4em;border-radius:100px;cursor:pointer;border:1px solid transparent;
  min-height:44px;                 /* touch-target floor — only lifts .btn--sm; base/.lg already exceed it */
  transition:transform .35s var(--ease),background .35s var(--ease),border-color .35s var(--ease),box-shadow .35s var(--ease),color .35s var(--ease);
  will-change:transform;
}
.btn--sm{padding:.6em 1.1em;font-size:.85rem}
.btn--lg{padding:1em 1.7em;font-size:1.02rem}
.btn--primary{
  color:#1a0f06;
  background:var(--grad-cta);
  box-shadow:var(--grad-cta-hi), var(--sh-cta);
  text-shadow:0 1px 0 rgba(255,222,184,.4);
}
.btn--primary:hover{transform:translateY(-2px);box-shadow:var(--grad-cta-hi), var(--sh-cta-hover)}
.btn--primary:active{transform:translateY(0)}
.btn--ghost{
  color:var(--ink);
  border:1px solid rgba(255,255,255,.22);
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.04));
  box-shadow:var(--glass-hi);
  -webkit-backdrop-filter:blur(var(--blur)) saturate(1.2);backdrop-filter:blur(var(--blur)) saturate(1.2);
}
.btn--ghost:hover{transform:translateY(-2px);border-color:rgba(var(--ember-warm),.45);
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(var(--ember-rgb),.05))}
.btn--ghost:active{transform:translateY(0)}

/* ---------- nav ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:flex;align-items:center;gap:24px;
  padding:18px var(--pad);
  transition:background .35s var(--ease),backdrop-filter .35s,border-color .35s,padding .35s;
  border-bottom:1px solid transparent;
}
.nav.is-scrolled{
  background:rgba(10,8,7,.86);   /* a touch more opaque: keeps the smeared hero CTA from glowing through at the hero→stats handoff */
  backdrop-filter:blur(18px) saturate(1.3);
  -webkit-backdrop-filter:blur(18px) saturate(1.3);
  border-bottom-color:var(--line);
  padding-top:13px;padding-bottom:13px;
}
.brand{display:inline-flex;align-items:center;gap:.55em;font-weight:600;letter-spacing:.02em}
.brand__mark{
  display:grid;place-items:center;width:34px;height:34px;border-radius:10px;
  color:var(--ember);background:rgba(var(--ember-rgb),.1);border:1px solid rgba(var(--ember-rgb),.22);
}
.brand__word{font-size:1.08rem;color:var(--ink)}
.brand__paren{color:var(--ember)}
.nav__menu{margin-left:auto;display:flex;align-items:center;gap:30px}
.nav__links{display:flex;gap:30px}
.nav__links a{font-size:.92rem;color:var(--ink-2);font-weight:400;position:relative;transition:color .2s}
.nav__links a::after{content:"";position:absolute;left:0;right:100%;bottom:-6px;height:1px;background:var(--ember);transition:right .3s var(--ease)}
.nav__links a:hover{color:var(--ink)}
.nav__links a:hover::after{right:0}
.nav__cta{margin-left:4px}

/* hamburger toggle — hidden on desktop, shown ≤920px */
.nav__toggle{display:none;flex-direction:column;justify-content:center;gap:5px;
  width:44px;height:44px;border-radius:12px;cursor:pointer;
  border:1px solid var(--line-2);background:rgba(255,255,255,.02);color:var(--ink)}
.nav__toggle span{display:block;width:18px;height:2px;margin:0 auto;border-radius:2px;background:currentColor;
  transition:transform .3s var(--ease),opacity .2s var(--ease)}
.nav.is-open .nav__toggle span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav.is-open .nav__toggle span:nth-child(2){opacity:0}
.nav.is-open .nav__toggle span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ---------- hero (scroll-scrubbed, Apple-style) ---------- */
.hero{position:relative}
.hero__track{position:relative;height:340vh}             /* scroll length of the sequence */
.hero__pin{position:sticky;top:0;height:100svh;overflow:hidden}

/* deadlift-platform hero backdrop — floor sits on BLACK and is wiped away under the bar */
.hero__bg{position:absolute;inset:0;z-index:0;overflow:hidden;background:#000}
.hero__platform{position:absolute;inset:0;background:#000 url('assets/platform.webp') center/cover no-repeat;will-change:clip-path}
/* cinematic colour-grade on the wood: warm key light up top, vignette edges, a top scrim under the nav.
   lives on the floor (::after) so it gets wiped away WITH the platform as the bar sweeps up */
.hero__platform::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(72% 54% at 50% 44%, rgba(var(--ember-warm),.10), transparent 62%),   /* warm pool behind the wordmark */
    radial-gradient(140% 120% at 50% 42%, transparent 26%, rgba(6,4,3,.86) 100%),         /* strong cinematic vignette */
    linear-gradient(180deg, rgba(6,4,3,.58), rgba(6,4,3,0) 30%),                          /* top scrim under the nav */
    rgba(10,7,5,.30);                                                                     /* overall grade — deepens the wood */
}
.blob{position:absolute;border-radius:50%;filter:blur(90px);opacity:.5}
.blob--ember{width:60vw;height:60vw;max-width:760px;max-height:760px;left:50%;top:14%;transform:translateX(-50%);
  background:radial-gradient(circle,rgba(var(--ember-rgb),.42),rgba(var(--ember-rgb),0) 65%)}

.hero__eyebrow{position:absolute;left:0;right:0;top:31%;text-align:center;z-index:2;margin:0;will-change:opacity;
  color:var(--ember-l);font-weight:600;text-shadow:0 1px 12px rgba(0,0,0,.85)}

/* wordmark + tagline share one centered cell and cross-fade */
.hero__stack{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  width:min(92vw,1060px);display:grid;place-items:center;z-index:2;text-align:center}
.hero__stack > *{grid-area:1/1;margin:0;will-change:opacity,transform}
/* OPT(ML) on the wood pad — clean white/orange with a soft shadow (no stroke) */
.hero__wordmark{font-family:var(--sans);font-weight:600;letter-spacing:-.045em;line-height:1;
  font-size:clamp(3rem,12vw,9.5rem);color:var(--ink);
  filter:drop-shadow(0 2px 5px rgba(0,0,0,.32))}   /* crisp legibility shadow, not a soft halo */
.hero__wordmark .paren{color:var(--ember)}
.hero__tagline{font-family:var(--sans);font-weight:600;letter-spacing:-.04em;line-height:.95;
  font-size:clamp(2.5rem,8.4vw,6.6rem);display:flex;flex-direction:column;
  filter:drop-shadow(0 3px 18px rgba(0,0,0,.65))}
.hero__tagline .l2{background:var(--grad-tagline);
  -webkit-background-clip:text;background-clip:text;color:transparent}

/* the rendered barbell — bar + two plates that ROLL; in front of the text, swept by scroll */
.hero__rig{position:absolute;left:50%;top:50%;width:min(96vw,1180px);height:auto;
  transform:translate(-50%,-50%);z-index:4;pointer-events:none;will-change:transform;
  filter:drop-shadow(0 22px 34px rgba(0,0,0,.62)) drop-shadow(0 6px 30px rgba(0,0,0,.45))}
.js .hero__rig{opacity:0}

.hero__bottom{position:absolute;left:50%;top:62%;transform:translateX(-50%);
  width:min(92vw,620px);text-align:center;z-index:5;will-change:opacity,transform}
.hero__sub{color:var(--ink-2);font-size:clamp(1rem,1.6vw,1.18rem);font-weight:300;text-shadow:0 2px 14px rgba(0,0,0,.7)}
.hero__sub em{font-family:var(--serif);font-style:italic;color:var(--ink)}
.hero__cta{display:flex;gap:14px;flex-wrap:wrap;justify-content:center;margin-top:26px}

/* pre-JS / JS initial states */
.js .hero__bottom{opacity:0}
.js .hero__tagline{clip-path:inset(100% 0 0 0)}   /* hidden until the bar wipes it in */

.scrollcue{position:absolute;bottom:24px;left:50%;transform:translateX(-50%);z-index:6;
  display:inline-flex;flex-direction:column;align-items:center;gap:8px;
  color:var(--ink-3);font-size:.7rem;letter-spacing:.3em;text-transform:uppercase}
.scrollcue svg{animation:bob 1.9s var(--ease) infinite}
@keyframes bob{0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(5px);opacity:1}}

/* ---------- stat strip ---------- */
.stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:1px;
  max-width:var(--maxw);margin:0 auto;
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  background:var(--line);
}
.stats__item{background:var(--bg);padding:32px var(--pad);display:flex;flex-direction:column;gap:6px;align-items:center;text-align:center}
.stats__num{font-family:var(--sans);font-weight:600;font-size:clamp(2rem,4vw,2.9rem);letter-spacing:-.03em;
  background:var(--grad-metal);-webkit-background-clip:text;background-clip:text;color:transparent}
.stats__num .plus{color:var(--ember);-webkit-text-fill-color:var(--ember)}
.stats__label{color:var(--ink-3);font-size:.82rem;letter-spacing:.04em}

/* ---------- generic section ---------- */
.section{max-width:var(--maxw);margin:0 auto;padding:clamp(80px,12vw,150px) var(--pad)}
.section__head{max-width:760px;margin-bottom:clamp(48px,7vw,84px)}
.section__head--center{margin-left:auto;margin-right:auto;text-align:center}
.section__title{
  font-family:var(--sans);font-weight:600;letter-spacing:-.03em;line-height:1.04;
  font-size:clamp(2rem,4.6vw,3.5rem);margin-top:18px;
}
.section__lead{margin-top:20px;color:var(--ink-2);font-size:clamp(1rem,1.5vw,1.18rem);font-weight:300;max-width:62ch}
.section__head--center .section__lead{margin-left:auto;margin-right:auto}
.section__lead strong{color:var(--ink);font-weight:500}

/* ---------- phone mockups ---------- */
.phone{
  position:relative;border-radius:44px;padding:10px;
  background:linear-gradient(160deg,#222,#0a0a0a);
  border:1px solid var(--line-2);
  box-shadow:0 2px 0 rgba(255,255,255,.06) inset,0 50px 90px -40px rgba(0,0,0,.9),0 0 0 1px rgba(0,0,0,.5);
  width:clamp(230px,28vw,300px);
}
.phone img{border-radius:35px;width:100%;display:block}
.phone--xl{width:clamp(260px,32vw,340px)}

/* ---------- features ---------- */
.features{display:flex;flex-direction:column;gap:clamp(70px,10vw,130px)}
.feature{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,6vw,90px);align-items:center}
.feature--reverse .feature__media{order:2}
.feature__media{position:relative;display:flex;justify-content:center}
.feature__glow{position:absolute;inset:0;z-index:-1;
  background:radial-gradient(ellipse at center,rgba(var(--ember-rgb),.14),transparent 60%);filter:blur(44px)}
.feature__glow--big{background:radial-gradient(ellipse at center,rgba(var(--ember-rgb),.22),transparent 62%)}
.feature__icon,.bcard__icon,.point__icon{
  display:grid;place-items:center;width:46px;height:46px;border-radius:13px;color:var(--ember);
  background:rgba(var(--ember-rgb),.1);border:1px solid rgba(var(--ember-rgb),.22);
}
.feature__icon svg,.bcard__icon svg,.point__icon svg{width:23px;height:23px}
.feature__kicker{margin:18px 0 10px;text-transform:uppercase;letter-spacing:.3em;font-size:.72rem;color:var(--ember);font-weight:500}
.feature__title{font-family:var(--sans);font-weight:600;letter-spacing:-.025em;line-height:1.06;font-size:clamp(1.7rem,3.2vw,2.5rem)}
.feature__text{margin-top:16px;color:var(--ink-2);font-weight:300;font-size:1.05rem}
.feature__text strong{color:var(--ink);font-weight:500}
.feature__list{list-style:none;margin-top:22px;display:flex;flex-direction:column;gap:11px}
.feature__list li{position:relative;padding-left:28px;color:var(--ink-2);font-size:.98rem}
.feature__list li::before{content:"";position:absolute;left:0;top:.5em;width:14px;height:8px;border-left:2px solid var(--ember);border-bottom:2px solid var(--ember);transform:rotate(-45deg)}

/* ---------- gym live ---------- */
.gymlive{position:relative}
/* full-bleed to the viewport (NOT the 1180px section) so the soft glow fades into the page
   instead of hard-clipping at the centered section box on wide screens */
.gymlive__ambient{position:absolute;top:0;bottom:0;left:50%;width:100vw;transform:translateX(-50%);z-index:-1;pointer-events:none}
.gymlive__ambient .blob--ember{width:80vw;height:62vw;max-width:1180px;max-height:820px;left:50%;top:-2%;transform:translateX(-50%);opacity:.3}
.gymlive__grid{display:grid;grid-template-columns:minmax(0,.85fr) 1fr;gap:clamp(36px,6vw,80px);align-items:center}
.gymlive__phone{position:relative;display:flex;justify-content:center}
.gymlive__points{display:flex;flex-direction:column;gap:26px}
.legend{display:flex;gap:22px;flex-wrap:wrap;padding-bottom:6px}
.legend__item{display:inline-flex;align-items:center;gap:9px;font-size:.86rem;color:var(--ink-2);letter-spacing:.02em}
.dot{width:11px;height:11px;border-radius:50%;box-shadow:0 0 12px currentColor}
.dot--open{background:var(--mint);color:var(--mint)}
.dot--soon{background:var(--amber);color:var(--amber)}
.dot--busy{background:var(--busy);color:var(--busy)}
.point{display:flex;gap:18px;align-items:flex-start}
.point h4{font-family:var(--sans);font-weight:600;font-size:1.12rem;letter-spacing:-.01em}
.point p{margin-top:6px;color:var(--ink-2);font-weight:300;font-size:.98rem}

/* ---------- benefits ---------- */
.benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,2vw,24px)}
.bcard{
  background:var(--card);border:1px solid var(--line);border-radius:var(--r);
  padding:clamp(24px,3vw,34px);
  transition:transform .35s var(--ease),border-color .35s,background .35s;
}
.bcard:hover{transform:translateY(-5px);border-color:rgba(var(--ember-rgb),.32);background:var(--card-2)}
.bcard h3{font-family:var(--sans);font-weight:600;font-size:1.22rem;letter-spacing:-.01em;margin:18px 0 10px}
.bcard p{color:var(--ink-2);font-weight:300;font-size:.96rem}
.bcard code{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.85em;color:var(--ember-l);background:rgba(var(--ember-rgb),.1);padding:.1em .4em;border-radius:5px}

.gyms__cta{
  margin-top:clamp(40px,6vw,68px);
  display:flex;align-items:center;justify-content:space-between;gap:30px;flex-wrap:wrap;
  padding:clamp(28px,4vw,44px);border-radius:var(--r);
  background:
    var(--veil-ember),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border:1px solid rgba(var(--ember-rgb),.22);
}
.gyms__cta h3{font-family:var(--sans);font-weight:600;font-size:clamp(1.4rem,2.4vw,1.9rem);letter-spacing:-.02em}
.gyms__cta p{color:var(--ink-2);font-weight:300;margin-top:6px}

/* ---------- download band ---------- */
.download{text-align:center}
.download__inner{
  max-width:760px;margin:0 auto;padding:clamp(50px,8vw,90px) var(--pad);
  border-radius:30px;position:relative;overflow:hidden;
  background:var(--veil-ember), var(--bg-2);
  border:1px solid var(--line-2);
}
.download__title{font-family:var(--sans);font-weight:600;letter-spacing:-.03em;line-height:1.02;
  font-size:clamp(2.2rem,5.5vw,4rem);margin:16px 0}
.download__sub{color:var(--ink-2);font-weight:300;max-width:48ch;margin:0 auto;font-size:1.08rem}
.download__sub strong{color:var(--ink)}
.download__buttons{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-top:34px}

/* ---------- footer ---------- */
.footer{max-width:var(--maxw);margin:0 auto;padding:54px var(--pad) 60px;border-top:1px solid var(--line)}
.footer__top{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer__links{display:flex;gap:26px;flex-wrap:wrap}
.footer__links a{color:var(--ink-2);font-size:.92rem;transition:color .2s}
.footer__links a:hover{color:var(--ember)}
.footer__bottom{margin-top:30px;display:flex;justify-content:space-between;gap:14px;flex-wrap:wrap;color:var(--ink-3);font-size:.82rem}
.footer__note{color:var(--ink-3);opacity:.8}

/* ============================================================
   reveal animations (only when JS active)
   ============================================================ */
.js [data-rise]{opacity:0;transform:translateY(26px);transition:opacity .9s var(--ease),transform .9s var(--ease)}
.js [data-rise].is-in{opacity:1;transform:none}

/* ============================================================
   responsive
   ============================================================ */
@media (max-width:920px){
  .feature,.gymlive__grid{grid-template-columns:1fr;gap:40px}
  .feature--reverse .feature__media{order:0}
  .feature__media{margin-bottom:6px}
  .gymlive__phone{order:-1}
  .benefits{grid-template-columns:repeat(2,1fr)}

  /* collapse the primary nav into a toggled dropdown */
  .nav__toggle{display:flex;margin-left:auto}
  .nav__menu{
    position:absolute;top:100%;left:0;right:0;margin:0;
    flex-direction:column;align-items:stretch;gap:0;
    padding:6px var(--pad) 22px;
    background:rgba(10,8,7,.94);
    backdrop-filter:blur(18px) saturate(1.3);
    -webkit-backdrop-filter:blur(18px) saturate(1.3);
    border-bottom:1px solid var(--line);
    opacity:0;visibility:hidden;transform:translateY(-10px);
    transition:opacity .3s var(--ease),transform .3s var(--ease),visibility .3s;
  }
  .nav.is-open .nav__menu{opacity:1;visibility:visible;transform:none}
  .nav__links{flex-direction:column;gap:0}
  .nav__links a{display:block;padding:15px 2px;font-size:1.02rem;border-bottom:1px solid var(--line)}
  .nav__links a::after{display:none}
  .nav__cta{margin:18px 0 0;justify-content:center}
}
@media (max-width:560px){
  .stats{grid-template-columns:repeat(2,1fr)}
  .benefits{grid-template-columns:1fr}
  .footer__bottom{flex-direction:column}
  .hero__track{height:300vh}
  .hero__rig{width:96vw}             /* keep both rolling plates on-screen on mobile */
}

/* ============================================================
   reduced motion — show everything at rest
   ============================================================ */
@media (prefers-reduced-motion:reduce){
  .js [data-rise]{opacity:1!important;transform:none!important;transition:none!important}
  .scrollcue svg{animation:none}
  .nav__menu{transition:none!important}
  .hero__track{height:100svh}          /* collapse the scroll sequence */
  .hero__pin{position:relative}
  .js .hero__bottom{opacity:1}
  .js .hero__tagline{clip-path:none;opacity:1}
  *{scroll-behavior:auto!important}
}
