/* ═══════════════════════════════════════════════════════════════
   LEON HARTMANN — #91 · WOLVES GEISELHÖRING
   Editorial sports-campaign build.

   The page is ONE continuous visual world. Sections never swap the
   background — they only add type, photography and graphic marks
   on top of it.

   01  Tokens
   02  Reset & base
   03  The World  (base · graphic · atmosphere · grain)
   04  Primitives (type, buttons, reveal, marks)
   05  Splash
   06  Nav + scroll rail
   07  Hero
   08  Manifest (player through the 91)
   09  Stats
   10  Profile
   11  Highlights
   12  Gear
   13  CTA
   14  Footer
   15  Responsive
   16  Reduced motion
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   01 · TOKENS
───────────────────────────────────────────── */
:root {
  /* Deep ice blue base — never pure black */
  --ink:        #04070f;
  --royal:      #1e4fd8;
  --ice:        #7fd4ff;
  --ice-hi:     #d8f2ff;
  --paper:      #eef4ff;
  --red:        #e0392b;

  --dim:        rgba(238,244,255,0.56);
  --dimmer:     rgba(238,244,255,0.34);
  --hair:       rgba(216,242,255,0.11);
  --hair-soft:  rgba(216,242,255,0.06);

  --ff-display: 'Anton', 'Impact', sans-serif;
  --ff-alt:     'Bebas Neue', 'Arial Narrow', sans-serif;
  --ff-body:    'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --ff-mono:    ui-monospace, SFMono-Regular, 'SF Mono', Menlo, 'Roboto Mono', monospace;

  --fs-giant:   clamp(16rem, 46vw, 44rem);
  --fs-mega:    clamp(3.4rem, 12.4vw, 11.5rem);
  --fs-title:   clamp(2.5rem, 6.4vw, 5.6rem);
  --fs-stat:    clamp(3.6rem, 9vw, 8.5rem);
  --fs-body:    clamp(0.94rem, 1.15vw, 1.06rem);
  --fs-micro:   clamp(0.68rem, 0.72vw, 0.74rem);

  --pad:        clamp(1.35rem, 5vw, 5.5rem);
  --wrap:       1520px;
  --sp:         clamp(4.5rem, 8.5vw, 11rem);

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Published by script.js once per frame ──
     --hero-p / --mani-p  0→1 progress while a sticky stage is pinned
     --mx / --my          eased cursor offset, −1…1, 0 at viewport centre
                          (stays 0 on touch and with reduced motion) */
  --hero-p:     0;
  --mani-p:     0;
  --mx:         0;
  --my:         0;
}


/* ─────────────────────────────────────────────
   02 · RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--royal); color: var(--paper); }

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

/* Keyboard escape hatch past the fixed nav and the splash */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 10000;
  background: var(--ice);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .8rem 1.6rem;
  transition: transform .3s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--royal); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

body.is-locked { overflow: hidden; }


/* ─────────────────────────────────────────────
   03 · THE WORLD
   Fixed behind everything. Base → graphic → atmosphere → grain.
───────────────────────────────────────────── */
.world {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* — Base: deep ice blue with a radial lift, never flat black — */
.world__base {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -8%,  rgba(30,79,216,0.20)  0%, transparent 62%),
    radial-gradient(ellipse 60% 45% at 84% 42%,  rgba(127,212,255,0.07) 0%, transparent 64%),
    radial-gradient(ellipse 70% 50% at 10% 78%,  rgba(18,48,110,0.30)  0%, transparent 66%),
    radial-gradient(ellipse 130% 70% at 50% 108%, rgba(10,26,63,0.85)  0%, transparent 62%),
    linear-gradient(180deg, #06102a 0%, #04080f 46%, #050b19 100%);
}

/* — Technical grid: hairline columns, faded at the edges — */
.world__grid {
  position: absolute; inset: -2px;
  background-image:
    repeating-linear-gradient(90deg, var(--hair-soft) 0 1px, transparent 1px 12.5vw),
    repeating-linear-gradient(0deg,  rgba(216,242,255,0.028) 0 1px, transparent 1px 240px);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 25%, transparent 85%);
          mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 25%, transparent 85%);
  opacity: 0.9;
}

/* — Ice scratches: sparse, uneven, distressed — */
.world__scratches {
  position: absolute; inset: -20%;
  background-image:
    repeating-linear-gradient(74deg,
      transparent 0 61px,
      rgba(216,242,255,0.05) 61px 62px,
      transparent 62px 143px,
      rgba(216,242,255,0.025) 143px 144px,
      transparent 144px 397px),
    repeating-linear-gradient(-68deg,
      transparent 0 173px,
      rgba(216,242,255,0.035) 173px 174px,
      transparent 174px 511px);
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 68% 30%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 60% 55% at 68% 30%, #000 0%, transparent 72%);
  opacity: 0.75;
}

/* — One big diagonal plane, the poster's structural cut — */
.world__diagonal {
  position: absolute; inset: 0;
  background: linear-gradient(112deg, transparent 0 38%, rgba(18,48,110,0.30) 38%, rgba(10,26,63,0.05) 63%, transparent 63%);
  opacity: 0.7;
}

/* — Arena bokeh — */
.world__bokeh {
  position: absolute; inset: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle 130px at 12% 22%, rgba(127,212,255,0.055) 0%, transparent 70%),
    radial-gradient(circle 90px  at 88% 16%, rgba(127,212,255,0.05)  0%, transparent 70%),
    radial-gradient(circle 190px at 74% 82%, rgba(30,79,216,0.09)   0%, transparent 70%),
    radial-gradient(circle 70px  at 30% 88%, rgba(216,242,255,0.04) 0%, transparent 70%);
  animation: bokehDrift 26s ease-in-out infinite alternate;
}
@keyframes bokehDrift {
  from { transform: translate3d(0,0,0)      scale(1);    opacity: 0.7; }
  to   { transform: translate3d(-2%,1.5%,0) scale(1.06); opacity: 1; }
}

/* — Cyan lens flares — */
.world__flare {
  position: absolute;
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
}
.world__flare--a {
  top: -14vh; right: -6vw;
  width: 68vw; height: 58vh;
  background:
    radial-gradient(ellipse 42% 100% at 50% 50%, rgba(127,212,255,0.16) 0%, transparent 68%),
    radial-gradient(ellipse 100% 6% at 50% 50%, rgba(216,242,255,0.13) 0%, transparent 72%);
  filter: blur(28px);
  animation: flarePulse 9s ease-in-out infinite alternate;
}
.world__flare--b {
  bottom: -18vh; left: -12vw;
  width: 62vw; height: 52vh;
  background: radial-gradient(ellipse 55% 90% at 50% 50%, rgba(30,79,216,0.20) 0%, transparent 70%);
  filter: blur(46px);
  animation: flarePulse 13s ease-in-out 1.5s infinite alternate-reverse;
}
@keyframes flarePulse {
  from { opacity: 0.55; transform: translate3d(0,0,0) scale(1); }
  to   { opacity: 1;    transform: translate3d(-1.5%,2%,0) scale(1.1); }
}

.world__dust { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; opacity: 0.85; }

.world__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 78% 70% at 50% 45%, transparent 40%, rgba(2,4,10,0.72) 100%),
    linear-gradient(180deg, rgba(2,4,10,0.5) 0%, transparent 16%);
}

/* — Print grain: the whole thing reads as a pressed poster — */
.world__grain {
  position: absolute; inset: -200px;
  mix-blend-mode: overlay;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.8s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-3%,2%); }
  50%  { transform: translate(2%,-3%); }
  75%  { transform: translate(-2%,-1%); }
  100% { transform: translate(0,0); }
}

/* main/.foot deliberately keep z-index:auto — a stacking context here would
   isolate mix-blend-mode:screen from .world and the plated renders would
   composite their black backing plate straight over the page. */
main, .foot { position: relative; }


/* ─────────────────────────────────────────────
   04 · PRIMITIVES
───────────────────────────────────────────── */
.mono {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ice);
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--ice);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--ice);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.25; } }

.head { margin-bottom: clamp(3rem, 7vw, 6rem); }
.head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.head__title {
  font-family: var(--ff-display);
  font-size: var(--fs-title);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
/* The editorial signature: second line as outline, not fill */
.head__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(127,212,255,0.75);
}
.head__note { color: var(--dim); max-width: 30ch; padding-bottom: 0.6rem; }

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  position: relative;
  overflow: hidden;
  transition: color .3s var(--ease), border-color .3s var(--ease), transform .4s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-2px); }
.btn:hover::after { transform: scaleY(1); }
.btn:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

.btn--solid { background: var(--royal); color: var(--paper); }
.btn--solid::after { background: var(--ice); }
.btn--solid:hover { color: var(--ink); }

.btn--line { border: 1px solid rgba(238,244,255,0.24); color: var(--paper); }
.btn--line::after { background: var(--paper); }
.btn--line:hover { color: var(--ink); border-color: var(--paper); }

/* — Reveal — */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: calc(var(--i, 0) * 85ms);
}
.reveal.in { opacity: 1; transform: none; }

/* — Graphic marks — */
.mark { position: absolute; pointer-events: none; }
.mark--target { color: rgba(127,212,255,0.30); width: clamp(90px, 11vw, 170px); height: auto; }
.mark--h { height: 1px; background: linear-gradient(90deg, transparent, var(--hair), transparent); }
.mark--v { width: 1px; background: linear-gradient(180deg, transparent, var(--hair), transparent); }
.mark--coord, .mark--tag { color: rgba(127,212,255,0.5); line-height: 1.7; }

/* — Puck icon — */
.icon-puck .puck__side { fill: #10192c; }
.icon-puck .puck__top  { fill: #263349; }


/* ─────────────────────────────────────────────
   05 · SPLASH — puck slapshot opener
───────────────────────────────────────────── */
.splash {
  position: fixed; inset: 0;
  z-index: 9999;
  background: #02050c;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform .85s cubic-bezier(0.76, 0, 0.24, 1), opacity .5s ease .35s;
}
.splash::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 62% 52% at 50% 52%, rgba(18,48,110,0.55) 0%, transparent 66%);
  animation: splashGlow 1.4s ease-in-out infinite alternate;
}
@keyframes splashGlow { from { opacity: .6 } to { opacity: 1 } }
.splash.is-out { transform: translateY(-101%); }

/* Puck flies in from the left and slaps dead centre at 0.55s */
.splash__puck {
  position: absolute;
  left: 50%; top: 50%;
  width: clamp(38px, 5vw, 58px);
  z-index: 3;
  transform: translate(-50%, -50%) translateX(-58vw) rotate(-200deg) scale(.8);
  animation: puckSlap .55s cubic-bezier(0.3, 0, 0.1, 1) forwards, puckFade .3s ease .62s forwards;
}
@keyframes puckSlap {
  to { transform: translate(-50%, -50%) translateX(0) rotate(0deg) scale(1); }
}
@keyframes puckFade { to { opacity: 0; transform: translate(-50%,-50%) scale(2.1); } }

/* Impact shockwave */
.splash__shock {
  position: absolute;
  left: 50%; top: 50%;
  width: 40px; height: 40px;
  border: 1px solid rgba(127,212,255,0.7);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
  z-index: 2;
  animation: shock 1.1s cubic-bezier(0.16,1,0.3,1) .55s forwards;
}
@keyframes shock {
  0%   { transform: translate(-50%,-50%) scale(0);  opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(34); opacity: 0; }
}

.splash__scan {
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(127,212,255,0.85), transparent);
  box-shadow: 0 0 22px 5px rgba(127,212,255,0.35);
  transform: translateY(-8px);
  animation: scanDown 1s cubic-bezier(0.4,0,0.6,1) .55s forwards;
}
@keyframes scanDown { to { transform: translateY(102vh); } }

.splash__inner { position: relative; z-index: 4; display: grid; justify-items: center; }

.splash__num {
  font-family: var(--ff-display);
  font-size: clamp(7rem, 21vw, 17rem);
  line-height: .82;
  color: var(--ice-hi);
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(127,212,255,0.5), 0 0 180px rgba(30,79,216,0.6);
  opacity: 0;
  animation: numPunch .5s cubic-bezier(0.2,1.4,0.4,1) .58s forwards;
}
@keyframes numPunch {
  from { opacity: 0; transform: scale(1.5); filter: blur(14px); }
  to   { opacity: 1; transform: scale(1);   filter: blur(0); }
}

.splash__clip { overflow: hidden; margin-top: .3em; }
.splash__name {
  font-family: var(--ff-alt);
  font-size: clamp(2rem, 6.5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.24em;
  transform: translateX(-104%);
  animation: nameSlide .6s var(--ease) .82s forwards;
}
@keyframes nameSlide { to { transform: none; } }

.splash__rule {
  height: 1px; width: 0;
  align-self: stretch;
  background: linear-gradient(90deg, var(--ice), transparent);
  margin-top: 1.3rem;
  animation: ruleGrow .6s var(--ease) 1.1s forwards;
}
@keyframes ruleGrow { to { width: 100%; } }

.splash__sub {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: .9rem;
  opacity: 0;
  animation: fadeUp .6s ease 1.3s forwards;
}
.splash__coord {
  position: absolute;
  bottom: clamp(1.2rem, 4vh, 2.6rem);
  left: var(--pad);
  color: rgba(127,212,255,0.45);
  opacity: 0;
  animation: fadeUp .6s ease 1.45s forwards;
  z-index: 4;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }


/* ─────────────────────────────────────────────
   06 · NAV + SCROLL RAIL
───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem var(--pad);
  transition: padding .4s var(--ease), background-color .4s ease, backdrop-filter .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding: .85rem var(--pad);
  background: rgba(4,8,16,0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--hair-soft);
}
.nav__inner {
  max-width: var(--wrap); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__brand { display: flex; align-items: center; gap: .6rem; }
.nav__wolf {
  width: auto; height: 26px;
  mix-blend-mode: screen;
  opacity: .9;
  transition: opacity .3s ease, transform .5s var(--ease), filter .3s ease;
}
.nav__brand:hover .nav__wolf { opacity: 1; transform: translateY(-2px); filter: drop-shadow(0 0 12px rgba(127,212,255,0.5)); }
.nav__brand-num {
  font-family: var(--ff-display); font-size: 1.5rem; line-height: 1;
  color: var(--paper); letter-spacing: -0.02em;
}
.nav__brand-name {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: .22em; text-transform: uppercase; color: var(--dim);
}

.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.6rem); }
.nav__link {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim);
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding-bottom: 3px; position: relative;
  transition: color .3s ease;
}
.nav__link-idx { color: var(--ice); opacity: .4; font-size: .58em; transition: opacity .3s ease; }
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--ice); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover .nav__link-idx { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--paper); }
.nav__link.is-active .nav__link-idx { opacity: 1; }
.nav__link.is-active::after { transform: scaleX(1); background: var(--paper); opacity: .4; }

.nav__btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px; height: 44px;
  margin-right: -10px; /* keep the icon optically aligned to the edge */
}
.nav__btn span { display: block; width: 26px; height: 1.5px; background: var(--paper); transition: transform .4s var(--ease); }
.nav__btn.is-on span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav__btn.is-on span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.navm {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(3,6,14,0.97);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.navm.is-open { opacity: 1; pointer-events: auto; }
.navm__wolf {
  position: absolute; width: 68vw; max-width: 420px; height: auto;
  mix-blend-mode: screen;
  opacity: .10;
}
.navm__links { display: grid; gap: .5rem; text-align: center; position: relative; }
.navm__link {
  font-family: var(--ff-display); text-transform: uppercase;
  font-size: clamp(2.4rem, 10vw, 4.6rem); line-height: 1;
  color: var(--dim); transition: color .3s ease, transform .5s var(--ease);
  display: block;
}
.navm__link:hover { color: var(--ice); transform: translateX(10px); }

/* — Scroll rail with travelling puck — */
.rail {
  position: fixed;
  right: clamp(.9rem, 2vw, 1.8rem);
  top: 50%; transform: translateY(-50%);
  z-index: 900;
  height: 40vh; min-height: 220px;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.rail__track { position: relative; width: 1px; flex: 1; background: var(--hair); }
.rail__fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--ice), var(--royal));
  box-shadow: 0 0 10px rgba(127,212,255,0.5);
}
.rail__puck {
  position: absolute; top: 0; left: 50%; z-index: 1;
  width: 20px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 10px rgba(127,212,255,0.35));
}
.rail__puck .puck__side { fill: #0d1626; }
.rail__puck .puck__top  { fill: var(--ice); }
.rail__label { margin-top: .8rem; color: var(--ice); opacity: .5; }


/* ─────────────────────────────────────────────
   07 · HERO
───────────────────────────────────────────── */
.hero { height: 195vh; position: relative; }
.hero__stage {
  position: sticky; top: 0;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Oversized Leon — the player IS the background */
.hero__giant {
  position: absolute;
  top: 50%; right: -4vw;
  height: 122vh;
  z-index: 2;
  transform:
    translate3d(calc(var(--mx) * -16px), calc(-50% - var(--hero-p) * 2.2vh + var(--my) * -10px), 0)
    scale(calc(1 + var(--hero-p) * 0.06));
  opacity: calc(0.42 - var(--hero-p) * 0.22);
  will-change: transform;
}
.hero__giant img {
  height: 100%; width: auto; max-width: none;
  object-fit: contain;
  filter: grayscale(0.25) contrast(1.1) brightness(0.95);
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 42%, #000 30%, transparent 82%);
          mask-image: radial-gradient(ellipse 62% 58% at 50% 42%, #000 30%, transparent 82%);
}

/* Giant jersey number — deepest graphic plane, deliberately cropped by
   both the viewport and the hero photograph in front of it. */
.hero__91 {
  position: absolute;
  right: -7vw; bottom: -11vh;
  z-index: 1;
  font-family: var(--ff-display);
  font-size: var(--fs-giant);
  line-height: .74;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(127,212,255,0.26);
  text-shadow: 0 0 140px rgba(30,79,216,0.28), 0 0 380px rgba(127,212,255,0.10);
  user-select: none;
  transform: translate3d(calc(var(--mx) * -28px), calc(var(--hero-p) * -11vh + var(--my) * -18px), 0);
  will-change: transform;
}

.hero__wolf {
  position: absolute;
  left: 1.5vw; top: 33%;
  width: clamp(260px, 30vw, 560px); height: auto;
  transform: translate3d(calc(var(--mx) * -7px), calc(-50% + var(--hero-p) * 7vh + var(--my) * -5px), 0);
  mix-blend-mode: screen;
  opacity: .05;
  z-index: 0;
  will-change: transform;
}

/* Technical marks */
.hero__marks {
  position: absolute; inset: 0; z-index: 3;
  transform: translate3d(calc(var(--mx) * -22px), calc(var(--my) * -14px), 0);
}
.hero__marks .mark--target { right: 7vw; top: 17vh; }
.hero__marks .mark--h { left: 0; right: 62%; top: 17vh; }
.hero__marks .mark--v { top: 0; bottom: 58%; right: 24vw; }
.hero__marks .mark--coord { right: var(--pad); bottom: 12vh; text-align: right; }
.hero__marks .mark--tag { left: var(--pad); top: 15vh; }

.hero__vertical {
  position: absolute;
  left: clamp(0.5rem, 1.2vw, 1.4rem); top: 50%;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  color: rgba(238,244,255,0.30);
  letter-spacing: .42em;
}

/* Headline block */
.hero__content {
  position: relative;
  z-index: 5;
  padding: 0 var(--pad) clamp(5rem, 13vh, 9rem);
  max-width: calc(var(--wrap) + var(--pad) * 2);
  margin-inline: auto;
  width: 100%;
  transform: translate3d(calc(var(--mx) * -9px), calc(var(--hero-p) * -6vh + var(--my) * -6px), 0);
  opacity: calc(1 - var(--hero-p) * 1.1);
}
.hero__eyebrow { color: var(--ice); }

.hero__name {
  font-family: var(--ff-display);
  text-transform: uppercase;
  line-height: .82;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.hero__name span { display: block; }
.hero__name-l1 {
  font-size: clamp(1.9rem, 5.4vw, 5.2rem);
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(238,244,255,0.55);
  padding-left: .12em;
  padding-bottom: .07em;
}
.hero__name-l2 {
  font-size: var(--fs-mega);
  color: var(--paper);
  text-shadow: 0 24px 70px rgba(2,5,14,0.8);
}

.hero__tagline { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero__tagline span {
  font-family: var(--ff-mono);
  font-size: var(--fs-micro);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--dim);
  position: relative;
  padding-left: 1.1rem;
}
.hero__tagline span::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: .55rem; height: 1px; background: var(--ice); opacity: .6;
}

.hero__meta { display: flex; gap: clamp(1.6rem, 4vw, 3.4rem); margin-bottom: 2.4rem; flex-wrap: wrap; }
.hero__meta-item { display: grid; gap: .25rem; }
.hero__meta-item span { color: var(--ice); opacity: .55; }
.hero__meta-item b {
  font-family: var(--ff-alt); font-weight: 400;
  font-size: 1.35rem; letter-spacing: .06em;
}
.hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Action shot — collages in from bottom-right as you scroll */
.hero__action {
  position: absolute;
  right: -2vw; bottom: -2vh;
  height: clamp(420px, 82vh, 900px);
  z-index: 6;
  pointer-events: none;
  opacity: clamp(0, calc(var(--hero-p) * 2.6 - 0.15), 1);
  transform-origin: 60% 100%;
  rotate: calc(var(--mx) * -1.3deg);
  transform:
    translate3d(calc(28% - var(--hero-p) * 28% + var(--mx) * -40px),
                calc(34% - var(--hero-p) * 34% + var(--my) * -24px), 0)
    scale(calc(0.94 + var(--hero-p) * 0.06));
  will-change: transform, opacity;
}
.hero__action img {
  height: 100%; width: auto; max-width: none;
  mix-blend-mode: screen;
  filter: contrast(1.12) saturate(1.12) brightness(1.06);
}

.hero__cue {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 7;
  display: grid; justify-items: center; gap: .6rem;
  color: var(--ice);
  opacity: calc(0.55 - var(--hero-p));
}
.hero__cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ice), transparent);
  animation: cuePulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cuePulse {
  0%,100% { opacity: .25; transform: scaleY(.7); }
  50%     { opacity: 1;   transform: scaleY(1.25); }
}


/* ─────────────────────────────────────────────
   08 · MANIFEST — the player travels through the 91
───────────────────────────────────────────── */
.manifest { height: 260vh; position: relative; }
.manifest__stage {
  position: sticky; top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.manifest__num {
  position: absolute;
  left: 50%; top: 40%;
  font-family: var(--ff-display);
  font-size: clamp(17rem, 46vw, 42rem);
  line-height: .78;
  letter-spacing: -0.055em;
  user-select: none;
  white-space: nowrap;
  transform: translate(-50%, -50%) scale(calc(0.86 + var(--mani-p) * 0.2));
}
.manifest__num--back {
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(127,212,255,0.40);
}
/* Front copy is masked to the lower half — the player exits through the digits */
.manifest__num--front {
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 3px rgba(216,242,255,0.95);
  filter: drop-shadow(0 0 24px rgba(127,212,255,0.35));
  -webkit-mask-image: linear-gradient(180deg, transparent 0 48%, #000 57% 100%);
          mask-image: linear-gradient(180deg, transparent 0 48%, #000 57% 100%);
}

.manifest__player {
  position: absolute;
  left: 50%; top: 44%;
  z-index: 2;
  height: clamp(440px, 84vh, 940px);
  transform: translate(-50%, -50%) translateY(calc(46vh - var(--mani-p) * 78vh)) scale(calc(0.88 + var(--mani-p) * 0.18));
  will-change: transform;
}
.manifest__player img {
  height: 100%; width: auto; max-width: none;
  mix-blend-mode: screen;
  filter: contrast(1.12) saturate(1.1) brightness(1.05);
}

.manifest__type {
  position: relative;
  z-index: 4;
  text-align: center;
  transform: translateY(calc(34vh - var(--mani-p) * 5vh));
  pointer-events: none;
}
.manifest__kicker {
  color: var(--ice);
  opacity: .85;
  margin-bottom: .7rem;
  text-shadow: 0 2px 10px rgba(2,4,10,0.95), 0 0 26px rgba(2,4,10,0.8);
}
.manifest__word {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(3rem, 12vw, 11rem);
  line-height: .84;
  letter-spacing: -0.03em;
  color: var(--paper);
  text-shadow: 0 18px 55px rgba(2,4,10,0.95), 0 0 30px rgba(2,4,10,0.7);
}
.manifest__name {
  text-shadow: 0 2px 14px rgba(2,4,10,0.95);
  font-family: var(--ff-alt);
  font-size: clamp(1rem, 2.4vw, 2rem);
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--ice);
  margin-top: .5rem;
  padding-left: .5em;
}

.manifest__stick {
  position: absolute;
  left: -6vw; bottom: 8vh;
  width: clamp(340px, 46vw, 780px); height: auto;
  fill: rgba(127,212,255,0.06);
  z-index: 0;
  transform: rotate(calc(-6deg + var(--mani-p) * 8deg));
}

/* Puck slapshot streak across the stage */
.shot {
  position: absolute;
  left: 0; right: 0; top: 34%;
  z-index: 5;
  height: 30px;
  pointer-events: none;
  opacity: var(--shot-o, 0);
}
.shot__puck {
  position: absolute;
  top: 50%; left: 0;
  width: 30px;
  transform: translate(calc(-12vw + var(--shot-t, 0) * 126vw), -50%) rotate(calc(var(--shot-t, 0) * 1080deg));
  filter: drop-shadow(0 0 16px rgba(127,212,255,0.5));
}
.shot__puck .puck__side { fill: #0b1424; }
.shot__puck .puck__top  { fill: #93b8d8; }
.shot__trail {
  position: absolute;
  top: 50%; left: 0;
  height: 2px;
  width: min(calc(var(--shot-t, 0) * 126vw), 42vw);
  transform: translate(calc(-12vw + var(--shot-t, 0) * 126vw - 100%), -50%);
  background: linear-gradient(90deg, transparent, rgba(127,212,255,0.6));
  filter: blur(1px);
}


/* ─────────────────────────────────────────────
   09 · STATS
───────────────────────────────────────────── */
.stats { padding: var(--sp) 0; position: relative; overflow: hidden; }
.stats__wolf {
  position: absolute;
  left: 50%; top: 46%;
  width: clamp(320px, 40vw, 660px); height: auto;
  transform: translate(-50%, calc(-50% + var(--py, 0px)));
  mix-blend-mode: screen;
  opacity: .085;
  z-index: 0;
  will-change: transform;
}
.stats .wrap { position: relative; z-index: 1; }

.statgrid { border-top: 1px solid var(--hair); }
.statrow {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) minmax(0, 1.1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1rem, 2.4vw, 2rem) 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
  transition: background-color .5s var(--ease);
}
.statrow::before {
  content: '';
  position: absolute; left: -100vw; right: -100vw; top: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(30,79,216,0.10), transparent);
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.statrow:hover::before { opacity: 1; }
.statrow__idx { color: var(--ice); opacity: .45; }
.statrow__val {
  font-family: var(--ff-display);
  font-size: var(--fs-stat);
  line-height: .84;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  transition: color .4s ease, transform .6s var(--ease);
}
.statrow:hover .statrow__val { color: var(--ice-hi); transform: translateX(10px); }
.statrow__label {
  font-family: var(--ff-alt);
  font-size: clamp(1.1rem, 2.4vw, 2.1rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
}
.statrow__note { color: var(--ice); opacity: .4; text-align: right; }
.statrow--hero .statrow__val {
  color: transparent;
  -webkit-text-stroke: 2px var(--ice);
}
.statrow--hero:hover .statrow__val { -webkit-text-stroke-color: var(--ice-hi); }

.statmini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.statmini__item { display: grid; gap: .3rem; padding-left: 1rem; border-left: 1px solid var(--hair); }
.statmini__item b {
  font-family: var(--ff-alt); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.statmini__item span { color: var(--dimmer); }


/* ─────────────────────────────────────────────
   10 · PROFILE
───────────────────────────────────────────── */
.profile { padding: var(--sp) 0; }
.profile__grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}
.profile__quote {
  margin: 2.2rem 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--ice);
}
.profile__quote p {
  font-family: var(--ff-alt);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: .02em;
  color: var(--ice-hi);
}
.profile__body { display: grid; gap: 1rem; }
.profile__body p { color: var(--dim); line-height: 1.8; max-width: 54ch; }

.profile__attrs { margin-top: 2.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.profile__attrs > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--hair);
}
.profile__attrs dt { color: var(--dimmer); }
.profile__attrs dd { font-family: var(--ff-alt); font-size: 1.1rem; letter-spacing: .08em; color: var(--ice); }

.profile__media { position: relative; }
.profile__stamp { color: rgba(127,212,255,0.42); margin-bottom: 1rem; }
.profile__figure { position: relative; }
.profile__outline {
  position: absolute;
  left: 50%; top: 48%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(11rem, 26vw, 24rem);
  line-height: .8;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(127,212,255,0.18);
  z-index: 0;
  user-select: none;
}
.profile__figure img {
  position: relative; z-index: 1;
  width: 100%; height: auto;
  filter: contrast(1.06) saturate(1.05);
  transform: translate3d(0, var(--py, 0px), 0);
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 99%), linear-gradient(90deg, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 62%, transparent 99%), linear-gradient(90deg, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
          mask-composite: intersect;
  will-change: transform;
}
.profile__target { right: -2rem; top: 8%; color: rgba(127,212,255,0.22); }


/* ─────────────────────────────────────────────
   11 · HIGHLIGHTS — dossier rows
───────────────────────────────────────────── */
.high { padding: var(--sp) 0; }
.dossier { border-top: 1px solid var(--hair); }
.dos {
  display: grid;
  grid-template-columns: 4.5rem minmax(0,1fr) 12rem;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.8rem, 3.5vw, 3rem) 0;
  border-bottom: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
  transition: padding-left .55s var(--ease);
}
.dos:hover { padding-left: 1.2rem; }
.dos::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--ice);
  transform: scaleY(0); transform-origin: top;
  transition: transform .55s var(--ease);
}
.dos:hover::before { transform: scaleY(1); }
.dos__idx { color: var(--ice); opacity: .45; padding-top: .55rem; }
.dos__cat { color: var(--ice); margin-bottom: .5rem; }
.dos__cat--red { color: var(--red); }
.dos__title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  line-height: .95;
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
  transition: color .4s ease;
}
.dos:hover .dos__title { color: var(--ice-hi); }
.dos__desc { color: var(--dim); max-width: 46ch; }
.dos__meta { color: var(--dimmer); text-align: right; line-height: 1.9; padding-top: .5rem; }
.dos__big {
  position: absolute;
  right: 8rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127,212,255,0.09);
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke-color .5s ease, transform .7s var(--ease);
  z-index: -1;
}
.dos:hover .dos__big {
  -webkit-text-stroke-color: rgba(127,212,255,0.24);
  transform: translateY(-50%) translateX(-1.5rem);
}


/* ─────────────────────────────────────────────
   12 · GEAR
───────────────────────────────────────────── */
.gear { padding: var(--sp) 0; }
.gear__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: center;
}
.gear__list { margin-top: 2.4rem; }
.gear__item {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--hair);
  transition: padding-left .5s var(--ease);
}
.gear__item:hover { padding-left: .6rem; }
.gear__item > span { color: var(--ice); opacity: .4; padding-top: .35rem; transition: opacity .3s ease; }
.gear__item:hover > span { opacity: .9; }
.gear__item h3 {
  font-family: var(--ff-alt); font-weight: 400;
  font-size: 1.3rem; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: .3rem;
}
.gear__item p { color: var(--dim); font-size: .92em; }

.gear__logo { display: grid; justify-items: center; gap: 1.6rem; }
.gear__logo-wrap { position: relative; display: grid; place-items: center; transform: translate3d(0, var(--py, 0px), 0); will-change: transform; }
.gear__logo-num {
  position: absolute;
  font-family: var(--ff-display);
  font-size: clamp(12rem, 24vw, 22rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127,212,255,0.08);
  user-select: none;
}
/* Logo ships on a black plate — screen blend drops it into the world */
.gear__logo img {
  position: relative;
  width: clamp(200px, 26vw, 300px);
  height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(127,212,255,0.25));
  transition: transform .8s var(--ease), filter .8s ease;
}
.gear__logo:hover img { transform: scale(1.05); filter: drop-shadow(0 0 90px rgba(127,212,255,0.5)); }
.gear__logo-name {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: .9;
  letter-spacing: .04em;
  text-align: center;
}
.gear__logo-name em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(127,212,255,0.7);
}


/* ─────────────────────────────────────────────
   13 · CTA
───────────────────────────────────────────── */
.cta { padding: var(--sp) 0 0; position: relative; overflow: hidden; }
.cta__wolf {
  position: absolute;
  left: 50%; top: 40%;
  width: clamp(320px, 42vw, 700px); height: auto;
  transform: translate(-50%, calc(-50% + var(--py, 0px)));
  mix-blend-mode: screen;
  opacity: .085;
  z-index: 0;
}
.cta__inner { position: relative; z-index: 1; text-align: center; }
.cta .eyebrow { justify-content: center; }
.cta__title {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(3.4rem, 13vw, 12rem);
  line-height: .84;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}
.cta__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(127,212,255,0.8);
}
.cta__sub { color: var(--dim); margin-bottom: 2.6rem; line-height: 1.8; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

.cta__marquee {
  margin-top: clamp(4rem, 10vh, 8rem);
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 1.1rem 0;
}
.cta__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.cta__marquee-track span {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  letter-spacing: .06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(127,212,255,0.35);
  white-space: nowrap;
  padding-right: 2.5rem;
}
@keyframes marquee { to { transform: translateX(-33.3333%); } }


/* ─────────────────────────────────────────────
   14 · FOOTER
───────────────────────────────────────────── */
.foot { padding: clamp(3.5rem, 8vh, 6rem) 0 2rem; border-top: 1px solid var(--hair); }
.foot__inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
  padding-bottom: 3rem;
}
.foot__brand { display: flex; gap: 1rem; align-items: flex-start; }
.foot__wolf { width: auto; height: 52px; mix-blend-mode: screen; opacity: .75; flex-shrink: 0; }
.foot__num { font-family: var(--ff-display); font-size: 2.6rem; line-height: .9; color: var(--ice); }
.foot__name { font-family: var(--ff-alt); font-size: 1.3rem; letter-spacing: .1em; text-transform: uppercase; }
.foot__team { color: var(--dimmer); margin-top: .2rem; }
.foot__nav { display: flex; gap: clamp(.9rem, 2vw, 1.8rem); flex-wrap: wrap; align-items: center; }
.foot__nav a {
  font-family: var(--ff-mono); font-size: var(--fs-micro);
  letter-spacing: .18em; text-transform: uppercase; color: var(--dimmer);
  transition: color .3s ease;
}
.foot__nav a:hover { color: var(--ice); }
.foot__social { display: flex; gap: .4rem; margin-left: -10px; }
.foot__social a {
  color: var(--paper);
  opacity: .35;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  transition: opacity .3s ease, color .3s ease;
}
.foot__social a:hover { opacity: 1; color: var(--ice); }
.foot__legal {
  max-width: var(--wrap); margin-inline: auto; padding: 1.6rem var(--pad) 0;
  border-top: 1px solid var(--hair-soft);
  color: rgba(238,244,255,0.24);
  letter-spacing: .1em;
}


/* ─────────────────────────────────────────────
   15 · RESPONSIVE

   Breakpoints, widest to narrowest:
     1180  small laptop / tablet landscape — drop the widest marks
      900  tablet portrait  — single column, nav collapses, hero scrim
      760  phone            — hero recomposed, manifest re-proportioned
      520  small phone      — stack the actions
     +     landscape phones are handled by their own height query
───────────────────────────────────────────── */

/* ── Tablet landscape / small laptop ─────────────────────────── */
@media (max-width: 1180px) {
  .hero__wolf { display: none; }
  .hero__marks .mark--v { display: none; }
  .dos { grid-template-columns: 3.2rem minmax(0,1fr); }
  .dos__meta { grid-column: 2; text-align: left; padding-top: .8rem; }
  .dos__big { right: 2rem; }
}

/* ── Tablet portrait ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__btn { display: flex; }
  .rail { display: none; }

  /* The photograph fills most of a portrait viewport, so the headline
     needs a floor to sit on. Layer 4: over the photo, under the copy. */
  .hero__stage::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(0deg,
      rgba(3,7,18,0.94) 0%,
      rgba(3,7,18,0.80) 30%,
      rgba(3,7,18,0.28) 56%,
      transparent 76%);
    pointer-events: none;
  }
  .hero__giant {
    right: -14vw;
    height: 92vh;
    opacity: calc(0.5 - var(--hero-p) * 0.26);
  }
  .hero__91 { font-size: 92vw; right: -16vw; bottom: 16vh; }
  /* Marks jump above the scrim so the micro-typography stays legible. */
  .hero__marks { z-index: 5; }
  .hero__marks .mark--h { right: 40%; }

  /* Keep the number readable against the player on narrow stages. */
  .manifest__num { font-size: 92vw; }
  .manifest__player { height: min(78vh, 118vw); }

  .profile__grid, .gear__grid { grid-template-columns: 1fr; }
  .profile__media { order: -1; max-width: 460px; margin-inline: auto; }
  .profile__target { right: 0; }
  .gear__logo { order: -1; }
  .head--split { flex-direction: column; align-items: flex-start; }

  .statrow { grid-template-columns: 2.6rem minmax(0,1fr) auto; }
  .statrow__note { display: none; }
  .statmini { grid-template-columns: 1fr 1fr; }
}

/* ── Phone ───────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .hero { height: 170vh; }
  .hero__giant { right: -24vw; height: 84vh; }
  .hero__action { height: 52vh; right: -14vw; }
  .hero__vertical { display: none; }
  .hero__marks .mark--target { width: 74px; right: 4vw; top: 9vh; }
  .hero__marks .mark--coord { bottom: 1.4rem; }
  .hero__91 { font-size: 112vw; right: -30vw; bottom: 24vh; }
  .hero__meta { gap: 1.5rem; }
  .hero__cue { bottom: 1rem; }

  .manifest { height: 220vh; }
  .manifest__num { font-size: 118vw; }
  .manifest__player { height: min(62vh, 128vw); }
  .manifest__type { transform: translateY(calc(33vh - var(--mani-p) * 5vh)); }
  .manifest__stick { display: none; }

  .profile__attrs { grid-template-columns: 1fr; }
  .dos__big { display: none; }

  .foot__inner { flex-direction: column; gap: 2rem; }
  .foot__nav { display: none; }
}

/* ── Small phone ─────────────────────────────────────────────── */
@media (max-width: 520px) {
  .hero__cta, .cta__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .world__diagonal { display: none; }
  .statrow { grid-template-columns: 2rem minmax(0,1fr); }
  .statrow__label { grid-column: 2; text-align: left; font-size: 1rem; }
  .statmini__item { padding-left: .8rem; }
}

/* ── Landscape phone: no room for a 600px stage ──────────────── */
@media (max-height: 540px) and (orientation: landscape) {
  .hero { height: 250vh; }
  .hero__stage { min-height: 0; }
  .hero__content { padding-bottom: 2rem; }
  .hero__name-l1 { font-size: clamp(1.4rem, 4vw, 2.2rem); }
  .hero__name-l2 { font-size: clamp(2.4rem, 9.5vw, 5rem); }
  .hero__tagline { margin-bottom: .9rem; }
  .hero__meta { margin-bottom: 1.1rem; }
  .hero__vertical, .hero__cue, .hero__marks { display: none; }
  .hero__giant { height: 108vh; }

  .manifest { height: 300vh; }
  .manifest__num { font-size: 74vh; }
  .manifest__player { height: 92vh; }
  .manifest__type { transform: translateY(calc(26vh - var(--mani-p) * 4vh)); }
  .manifest__word { font-size: clamp(2.4rem, 9vh, 5rem); }

  .splash__num { font-size: 26vh; }
  .splash__name { font-size: 8vh; }
}

/* ── Touch: no hover state should be able to stick after a tap ─ */
@media (hover: none) {
  .btn:hover { transform: none; }
  .btn:hover::after { transform: scaleY(0); }
  .dos:hover, .gear__item:hover { padding-left: 0; }
  .dos:hover::before { transform: scaleY(0); }
  .statrow:hover .statrow__val { transform: none; }
  .gear__logo:hover img { transform: none; }
}


/* ─────────────────────────────────────────────
   16 · REDUCED MOTION
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .world__dust, .world__grain, .splash { display: none; }
  .hero { height: auto; }
  .hero__stage { position: static; height: auto; min-height: 100svh; }
  .hero__content { opacity: 1; transform: none; }
  .hero__action { opacity: .9; transform: none; rotate: none; }
  .manifest { height: auto; }
  .manifest__stage { position: static; height: 100svh; }
  .manifest__player { transform: translate(-50%, -50%); }
  .manifest__type { transform: translateY(26vh); }
  .shot { display: none; }
}
