/* =========================================================
   THE OUTLIER — $OUTLIER
   Same crowd. One exception.
   ========================================================= */

:root {
  --bg: #070707;
  --bg-2: #0b0b0b;
  --charcoal: #141414;
  --charcoal-2: #1c1c1c;
  --fg: #ecebe6;
  --fg-dim: #8c8b86;
  --fg-mute: #575754;
  --line: rgba(236, 234, 228, 0.08);
  --line-2: rgba(236, 234, 228, 0.16);
  --green: #3ee06d;
  --green-deep: #1f9d3a;
  --green-soft: rgba(62, 224, 109, 0.14);

  --font-sans: "Inter Tight", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --pad: clamp(20px, 5vw, 64px);
  --max: 1320px;
  --header-h: 72px;
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --section-y: clamp(88px, 11vw, 160px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  counter-reset: stanza;
}

body.menu-open { overflow: hidden; }

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

::selection { background: var(--green); color: #050505; }

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

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

.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: none; }

.container {
  width: min(100% - var(--pad) * 2, var(--max));
  margin-inline: auto;
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(5) infinite;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 2%); }
  40%  { transform: translate(2%, -3%); }
  60%  { transform: translate(-2%, -1%); }
  80%  { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Shared type ---------- */
.label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.label__idx { color: var(--fg); }
.label::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--line-2);
}

.section-title {
  margin-top: 22px;
  font-size: clamp(2.8rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.section-note {
  margin-top: 22px;
  max-width: 52ch;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.eyebrow__sep { color: var(--fg-mute); }

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px;
  border: 1px solid var(--line-2);
  color: var(--fg);
}
.status__dot {
  width: 7px;
  height: 7px;
  border: 1px solid var(--fg);
  border-radius: 50%;
  animation: pulse-ring 2.4s var(--ease-in-out) infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* ---------- Buttons ---------- */
.btn {
  --sweep: var(--fg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--sweep);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.5s var(--ease);
}
.btn:hover::before,
.btn:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: #050505;
}

.btn--ghost {
  background: rgba(7, 7, 7, 0.4);
  border-color: var(--line-2);
  color: var(--fg);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--bg);
  border-color: var(--fg);
}

.btn--sm { min-height: 38px; padding: 0 16px; font-size: 0.72rem; }
.btn--lg { min-height: 56px; padding: 0 28px; font-size: 0.82rem; }
.btn--block { width: 100%; }

.btn__icon { width: 14px; height: 14px; transition: transform 0.4s var(--ease); }
.btn:hover .btn__icon { transform: translate(2px, -2px); }
.btn__x { width: 14px; height: 14px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s, border-color 0.3s;
}
.text-link svg { width: 12px; height: 12px; }
.text-link:hover { color: var(--green); border-color: var(--green); }

/* ---------- CA component ---------- */
.ca {
  display: inline-flex;
  align-items: stretch;
  max-width: 100%;
  margin-top: 28px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ca__label {
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  white-space: nowrap;
}

.ca__value {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 18px;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--fg);
  word-break: break-all;
  -webkit-user-select: all;
  user-select: all;
}

.ca__copy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 112px;
  min-height: 48px;
  padding: 0 16px;
  border-left: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.ca__copy:hover { background: var(--fg); color: var(--bg); }
.ca__copy.is-copied { background: var(--green); color: #050505; }
.ca__icon { width: 14px; height: 14px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.6s var(--ease), -webkit-backdrop-filter 0.5s, backdrop-filter 0.5s;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.78);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header.is-hidden { transform: translateY(-101%); }

.site-header__progress {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 1px;
  background: rgba(236, 234, 228, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
  padding: 0 var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand__logo {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  object-fit: cover;
}
.brand__name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav__list { display: flex; gap: 34px; }
.nav__link {
  position: relative;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-dim);
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.menu-toggle__bars {
  position: relative;
  width: 18px;
  height: 8px;
}
.menu-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.45s var(--ease), top 0.45s var(--ease);
}
.menu-toggle__bars span:first-child { top: 0; }
.menu-toggle__bars span:last-child { top: 6.5px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:first-child { top: 3.25px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:last-child { top: 3.25px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(7, 7, 7, 0.97);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu[hidden] { display: none; }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(var(--header-h) + 32px) var(--pad) max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
}

.mobile-menu__list { border-top: 1px solid var(--line); }
.mobile-menu__list li {
  border-bottom: 1px solid var(--line);
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}
.mobile-menu.is-open .mobile-menu__list li { transform: none; opacity: 1; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) { transition-delay: 60ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) { transition-delay: 120ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) { transition-delay: 180ms; }

.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  font-size: clamp(2.2rem, 11vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.mobile-menu__list a span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--fg-mute);
}
.mobile-menu__list a:active { color: var(--green); }

.mobile-menu__nav .btn { margin-top: auto; min-height: 58px; }
.mobile-menu__foot {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: center;
}

/* =========================================================
   CROWD SILHOUETTES (CSS only)
   ========================================================= */
.crowd {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.crowd__row {
  --s: 120px;
  --c: #151515;
  --c2: #111;
  --hl: rgba(236, 234, 228, 0.035);
  --b: 0px;
  --off: 0px;
  --d: 10;
  --lag: 60;
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: var(--b);
  height: calc(var(--s) * 1.2);
  background-image:
    radial-gradient(ellipse calc(var(--s) * 0.15) calc(var(--s) * 0.13) at 45% calc(var(--s) * 0.3), var(--hl), transparent),
    radial-gradient(ellipse calc(var(--s) * 0.19) calc(var(--s) * 0.21) at 50% calc(var(--s) * 0.38), var(--c) 94%, transparent 100%),
    radial-gradient(ellipse calc(var(--s) * 0.56) calc(var(--s) * 0.66) at 50% 100%, var(--c) 97%, transparent 100%),
    radial-gradient(ellipse calc(var(--s) * 0.18) calc(var(--s) * 0.2) at 50% calc(var(--s) * 0.5), var(--c2) 94%, transparent 100%),
    radial-gradient(ellipse calc(var(--s) * 0.54) calc(var(--s) * 0.56) at 50% 100%, var(--c2) 97%, transparent 100%);
  background-size:
    var(--s) 100%,
    var(--s) 100%,
    var(--s) 100%,
    calc(var(--s) * 1.37) 100%,
    calc(var(--s) * 1.37) 100%;
  background-repeat: repeat-x;
  background-position:
    var(--off) 0,
    var(--off) 0,
    var(--off) 0,
    calc(var(--off) + var(--s) * 0.6) 0,
    calc(var(--off) + var(--s) * 0.6) 0;
  transform: translate3d(calc(var(--mx, 0) * var(--d) * -1px), calc(var(--sy, 0) * var(--lag) * 1px), 0);
  will-change: transform;
}
.crowd__row::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  height: 100vh;
  background: linear-gradient(180deg, var(--c) 0%, var(--c2) 30%, #080808 100%);
}

.crowd__row--1 { --s: 62px;  --c: #1a1a1a; --c2: #151515; --hl: rgba(236,234,228,.02); --b: 46%; --off: 22px; --d: 3;  --lag: 190; filter: blur(1.4px); opacity: .85; }
.crowd__row--2 { --s: 90px;  --c: #171717; --c2: #121212; --b: 33%; --off: 61px; --d: 6;  --lag: 140; filter: blur(.8px); }
.crowd__row--3 { --s: 128px; --c: #131313; --c2: #0f0f0f; --b: 17%; --off: 14px; --d: 10; --lag: 95; }
.crowd__row--4 { --s: 186px; --c: #0f0f0f; --c2: #0b0b0b; --hl: rgba(236,234,228,.05); --b: -1%; --off: 104px; --d: 16; --lag: 50; }
.crowd__row--5 { --s: 300px; --c: #080808; --c2: #060606; --hl: rgba(236,234,228,.03); --b: -170px; --off: -60px; --d: 26; --lag: 0; filter: blur(3px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  --mx: 0;
  --my: 0;
  --sy: 0;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 38% 55% at 72% 26%, rgba(236, 234, 228, 0.075), transparent 70%),
    radial-gradient(ellipse 20% 30% at 71% 58%, rgba(62, 224, 109, 0.06), transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, var(--bg) 60%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.78) 34%, rgba(7, 7, 7, 0) 62%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.6) 0%, rgba(7, 7, 7, 0) 30%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  min-height: inherit;
  padding: calc(var(--header-h) + 48px) var(--pad) 110px;
}

.hero__content {
  position: relative;
  z-index: 4;
  max-width: 700px;
  transform: translate3d(0, calc(var(--sy) * -60px), 0);
  opacity: calc(1 - var(--sy) * 0.9);
}

.hero__title {
  margin: 28px 0 30px;
  font-size: clamp(3.25rem, 8vw, 9.5rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.032em;
  text-transform: uppercase;
}
.hero__line { display: block; }

.js .hero__line,
.js .hero__copy,
.js .hero__meta,
.js .hero__ctas,
.js .hero__content .ca,
.js .hero__content .eyebrow {
  animation: rise 1.3s var(--ease) both;
}
.js .hero__content .eyebrow { animation-delay: 0.1s; }
.js .hero__line:nth-child(1) { animation-delay: 0.2s; }
.js .hero__line:nth-child(2) { animation-delay: 0.32s; }
.js .hero__line:nth-child(3) { animation-delay: 0.44s; }
.js .hero__copy { animation-delay: 0.6s; }
.js .hero__meta { animation-delay: 0.7s; }
.js .hero__ctas { animation-delay: 0.8s; }
.js .hero__content .ca { animation-delay: 0.9s; }

@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 36px, 0); }
  to   { opacity: 1; transform: none; }
}

/* Glitch accent on OUTLIERS */
.glitch {
  position: relative;
  display: inline-block;
  color: var(--green);
  animation: flicker 7s steps(1) infinite;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.glitch::before {
  color: var(--green);
  animation: glitch-a 7s steps(1) infinite;
}
.glitch::after {
  color: rgba(236, 234, 228, 0.55);
  animation: glitch-b 7s steps(1) infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  88.4% { opacity: 0.35; }
  88.8% { opacity: 1; }
  89.6% { opacity: 0.6; }
  90.2% { opacity: 1; }
}
@keyframes glitch-a {
  0%, 100% { opacity: 0; }
  88.4% { opacity: 1; transform: translateX(-5px); clip-path: inset(8% 0 64% 0); }
  89.2% { opacity: 1; transform: translateX(4px); clip-path: inset(46% 0 32% 0); }
  90%   { opacity: 1; transform: translateX(-2px); clip-path: inset(72% 0 6% 0); }
  90.6% { opacity: 0; }
}
@keyframes glitch-b {
  0%, 100% { opacity: 0; }
  88.8% { opacity: 1; transform: translateX(5px); clip-path: inset(58% 0 20% 0); }
  89.8% { opacity: 1; transform: translateX(-3px); clip-path: inset(22% 0 60% 0); }
  90.4% { opacity: 0; }
}

.hero__copy {
  max-width: 34ch;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--fg-dim);
}
.hero__copy strong { color: var(--fg); font-weight: 600; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0 34px;
}
.hero__meta > div {
  padding: 0 22px;
  border-left: 1px solid var(--line-2);
}
.hero__meta > div:first-child { padding-left: 0; border-left: 0; }
.hero__meta dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero__meta dd {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Visual */
.hero__visual {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.hero__figure {
  position: relative;
  width: min(100%, 98vh, 1100px);
  width: min(100%, 98svh, 1100px);
  transform:
    translate3d(calc(var(--mx) * 16px), calc(var(--my) * 10px + var(--sy) * 80px), 0)
    rotate(calc(var(--mx) * 0.8deg));
  transform-origin: 50% 100%;
  will-change: transform;
}

.hero__aura {
  position: absolute;
  inset: 8% 18% 18%;
  background: radial-gradient(closest-side, rgba(62, 224, 109, 0.16), transparent);
  filter: blur(40px);
  animation: breathe 7s var(--ease-in-out) infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero__img {
  position: relative;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 99%);
  mask-image: linear-gradient(180deg, #000 72%, transparent 99%);
}
.js .hero__img { animation: emerge 1.8s var(--ease) 0.15s both; }

@keyframes emerge {
  from { opacity: 0; transform: translate3d(0, 40px, 0); }
  to   { opacity: 1; transform: none; }
}

.tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.tag--subject {
  position: absolute;
  top: 17%;
  left: 62%;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.js .tag--subject { animation: rise 1.2s var(--ease) 1.2s both; }
.tag__line {
  width: 44px;
  height: 1px;
  background: var(--fg-dim);
}

.crowd--front { z-index: 3; }

.hero__scroll {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.hero__scroll-line {
  position: relative;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: var(--line-2);
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fg);
  animation: scan-line 2.6s var(--ease-in-out) infinite;
}

@keyframes scan-line {
  0%   { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* =========================================================
   TAPE
   ========================================================= */
.tape {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.tape__track {
  display: flex;
  gap: 28px;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  white-space: nowrap;
  animation: tape 48s linear infinite;
}
.tape__track i { font-style: normal; color: var(--line-2); }
.tape__hl { color: var(--fg); }

@keyframes tape {
  to { transform: translateX(calc(-50% - 14px)); }
}

/* =========================================================
   THE CROWD — typographic wall
   ========================================================= */
.crowd-section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}

.wall {
  --p: 0;
  position: relative;
  margin: clamp(48px, 7vw, 96px) 0;
  font-size: clamp(2.6rem, 7.2vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  user-select: none;
}

.wall__row {
  --dir: 0;
  display: flex;
  justify-content: center;
  gap: 0.32em;
  white-space: nowrap;
  transform: translate3d(calc(var(--p) * var(--dir) * 9vw), 0, 0);
  will-change: transform;
}
.wall__row[data-dir="1"] { --dir: 1; }
.wall__row[data-dir="-1"] { --dir: -1; }

.wall__w {
  color: #3f3f3d;
  opacity: 0.35;
  animation: wave 6.5s var(--ease-in-out) infinite;
  animation-delay: calc(var(--i, 0) * -0.21s);
  animation-play-state: paused;
}
.wall.is-active .wall__w { animation-play-state: running; }

@keyframes wave {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.62; }
}

.wall__hold {
  position: relative;
  color: var(--green);
  animation: hold 9s steps(1) infinite;
}

@keyframes hold {
  0%, 100% { opacity: 1; }
  93% { opacity: 0.4; }
  93.5% { opacity: 1; }
  94.2% { opacity: 0.7; }
  94.8% { opacity: 1; }
}

.crowd-section__foot {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: end;
  gap: 32px 64px;
}

.crowd-quote p {
  font-size: clamp(1.9rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.crowd-quote em {
  font-style: normal;
  color: var(--fg-mute);
}

.crowd-section__note {
  justify-self: end;
  max-width: 30ch;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: right;
}

/* =========================================================
   EXHIBIT (banner)
   ========================================================= */
.exhibit {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.exhibit__figure { position: relative; }
.exhibit__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(7, 7, 7, 0) 16%, rgba(7, 7, 7, 0) 80%, var(--bg) 100%);
}
.exhibit__img {
  width: 100%;
  height: auto;
}
.exhibit__caption {
  position: absolute;
  z-index: 1;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(14px, 2.4vw, 32px);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* =========================================================
   THE 95 / 5 TEST
   ========================================================= */
.test {
  padding: var(--section-y) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split__side {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: clamp(460px, 56vw, 780px);
  padding: clamp(48px, 7vw, 110px) var(--pad);
}

.split__inner { position: relative; z-index: 1; }

.split__num {
  display: flex;
  align-items: flex-start;
  font-size: clamp(7rem, 21vw, 20rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.045em;
}
.split__pct {
  margin-left: 0.04em;
  font-size: 0.38em;
  line-height: 1;
  letter-spacing: -0.02em;
}

.split__side--crowd {
  align-items: flex-end;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
}
.split__side--crowd .split__num { color: #5d5d59; }
.split__side--crowd .split__lines {
  margin-top: 28px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg-dim);
}

.split__pattern,
.split__pattern::after {
  --s: 30px;
  --c: #151515;
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle calc(var(--s) * 0.17) at 50% calc(var(--s) * 0.34), var(--c) 90%, transparent 100%),
    radial-gradient(ellipse calc(var(--s) * 0.47) calc(var(--s) * 0.58) at 50% 100%, var(--c) 94%, transparent 100%);
  background-size: var(--s) calc(var(--s) * 1.15);
}
.split__pattern {
  -webkit-mask-image: linear-gradient(0deg, #000 15%, rgba(0, 0, 0, 0.35) 100%);
  mask-image: linear-gradient(0deg, #000 15%, rgba(0, 0, 0, 0.35) 100%);
}
.split__pattern::after {
  content: "";
  --c: #111;
  background-position: calc(var(--s) / 2) calc(var(--s) * 0.58);
}

.split__side--outlier {
  align-items: center;
  background: var(--bg);
}
.split__side--outlier .split__inner { padding-left: clamp(0px, 3vw, 48px); }
.split__side--outlier .split__num { color: var(--green); }
.split__side--outlier .split__lines {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg);
}

.matrix-wrap {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  align-items: end;
  gap: 24px 48px;
  margin-top: clamp(56px, 7vw, 96px);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 6px;
}
.matrix__cell {
  aspect-ratio: 1;
  background: var(--charcoal-2);
  border-radius: 1px;
}
.matrix__cell.is-outlier { background: var(--green); }

.js .matrix__cell {
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  transition-delay: calc(var(--i, 0) * 9ms);
}
.js .matrix-wrap.is-in .matrix__cell { opacity: 1; }
.js .matrix__cell.is-outlier { transition-delay: calc(900ms + var(--i, 0) * 2ms); }

.matrix__caption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto {
  position: relative;
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(236, 234, 228, 0.03), transparent 70%),
    var(--bg);
}

.manifesto__body {
  display: grid;
  gap: clamp(44px, 6vw, 96px);
  margin-top: clamp(48px, 6vw, 88px);
}

.stanza {
  position: relative;
  counter-increment: stanza;
}
.stanza::before {
  content: counter(stanza, upper-roman) ".";
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-mute);
}
.stanza--indent { padding-left: clamp(0px, 14vw, 240px); }

.m-line {
  overflow: hidden;
  padding-bottom: 0.06em;
  font-size: clamp(2.1rem, 5.8vw, 6.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.032em;
}
.m-line > span { display: block; }
.m-line--dim { color: var(--fg-mute); }
.m-line--green { color: var(--green); }

.js [data-stagger] .m-line > span,
.js [data-stagger] .final__word > span {
  opacity: 0;
  transform: translate3d(0, 105%, 0);
  transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
  transition-delay: calc(var(--i, 0) * 150ms);
}
.js [data-stagger].is-in .m-line > span,
.js [data-stagger].is-in .final__word > span {
  opacity: 1;
  transform: none;
}

/* =========================================================
   THE LIST
   ========================================================= */
.list-section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}

.list-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.list-status__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--fg-dim);
  border-radius: 50%;
  animation: pulse-ring 2.4s var(--ease-in-out) infinite;
}

.list {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.list__row {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: clamp(18px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}
.list__row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--pad) * -1);
  z-index: -1;
  background: var(--bg-2);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.list__row:hover::before { opacity: 1; }

.list__idx {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
}

.list__word {
  position: relative;
  justify-self: start;
  font-size: clamp(3.5rem, 12.5vw, 13rem);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  transition: transform 0.7s var(--ease);
}
.list__row:hover .list__word { transform: translateX(14px); }

.list__desc {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: right;
}

.list__row--sold .list__word { color: #353533; }
.list__row--sold .list__word::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 48%;
  height: 0.05em;
  background: var(--fg-mute);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--ease) 0.5s;
}
.list__row--sold.is-in .list__word::after,
html:not(.js) .list__row--sold .list__word::after { transform: scaleX(1); }

.list__row--stayed .list__word { color: var(--fg); }
.list__row--added .list__word { color: var(--green); }

.list__foot {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px 64px;
  margin-top: clamp(48px, 6vw, 80px);
}
.list__statement {
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.list__statement span { color: var(--fg-dim); }
.list__foot .section-note { justify-self: end; text-align: right; margin-top: 0; }

/* =========================================================
   CHART
   ========================================================= */
.chart-section {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}

.chart {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 760px;
  margin-top: clamp(40px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #090909;
}

.chart__frame,
.chart__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.chart.is-live .chart__placeholder { display: none; }

.chart__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.chart__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(236, 234, 228, 0.05);
}
.chart__flat {
  stroke: rgba(236, 234, 228, 0.28);
  stroke-width: 1;
  stroke-dasharray: 3 7;
}

.chart__scan {
  position: absolute;
  top: 50%;
  left: -160px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 224, 109, 0.55));
  animation: chart-scan 7s linear infinite;
}
.chart__scan::after {
  content: "";
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--green);
}

@keyframes chart-scan {
  from { left: -160px; }
  to   { left: 100%; }
}

.chart__info {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 32px 28px;
  text-align: center;
  background: radial-gradient(closest-side, #090909 70%, rgba(9, 9, 9, 0));
}

.chart__state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.chart__state::after {
  content: "";
  width: 7px;
  height: 12px;
  background: var(--fg-dim);
  animation: caret 1.1s steps(1) infinite;
}

@keyframes caret {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.chart__title {
  margin-top: 18px;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.chart__text {
  max-width: 44ch;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-dim);
}
.chart__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.chart__meta div { display: flex; gap: 8px; }
.chart__meta dt { color: var(--fg-mute); }
.chart__meta dd { color: var(--fg); }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 16vw, 240px) 0 clamp(80px, 10vw, 140px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 55% 45% at 50% 110%, rgba(62, 224, 109, 0.07), transparent 70%),
    var(--bg);
}

.final__title {
  display: flex;
  flex-direction: column;
  font-size: clamp(4rem, 20vw, 21rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.final__word {
  display: block;
  overflow: hidden;
  padding-bottom: 0.04em;
}
.final__word > span { display: block; }
.final__word:nth-child(2) { padding-left: 0.9em; color: var(--fg-mute); }
.final__title em { font-style: normal; color: var(--green); }

.final__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px 64px;
  margin-top: clamp(48px, 6vw, 88px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.final__lead {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--fg-mute);
}
.final__lead span { color: var(--fg); }

.final__ticker {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--fg-dim);
}

.final__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.final__buttons .btn { min-width: 128px; }
.final__actions .ca { margin-top: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 56px 0 max(40px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-footer__brand img {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  object-fit: cover;
}
.site-footer__name { font-size: 16px; font-weight: 700; }
.site-footer__meta {
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-dim);
}

.site-footer__x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
  transition: color 0.3s;
}
.site-footer__x svg { width: 14px; height: 14px; }
.site-footer__x:hover { color: var(--fg); }

.site-footer__disclaimer {
  grid-column: 1 / -1;
  max-width: 88ch;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
  color: var(--fg-mute);
}

/* =========================================================
   REVEAL
   ========================================================= */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .tag--subject { left: 58%; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-header__inner { gap: 16px; }
}

@media (max-width: 900px) {
  .hero { min-height: 0; }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    min-height: 0;
    padding: calc(var(--header-h) + 40px) var(--pad) 0;
  }

  .hero__content { max-width: none; }

  .hero__title { font-size: clamp(3rem, 14.5vw, 7rem); }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.7) 45%, rgba(7, 7, 7, 0) 70%);
  }

  .hero__light {
    background:
      radial-gradient(ellipse 70% 30% at 50% 78%, rgba(236, 234, 228, 0.07), transparent 70%),
      radial-gradient(ellipse 40% 22% at 50% 82%, rgba(62, 224, 109, 0.06), transparent 70%),
      var(--bg);
  }

  .hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  .hero__figure { width: min(100%, 620px); }
  .hero__img {
    -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  }

  .tag--subject { top: 12%; left: auto; right: 0; }
  .tag__line { width: 24px; }

  .crowd__row--1 { --s: 44px;  --b: 380px; }
  .crowd__row--2 { --s: 62px;  --b: 280px; }
  .crowd__row--3 { --s: 88px;  --b: 160px; }
  .crowd__row--4 { --s: 124px; --b: 20px; }
  .crowd__row--5 { --s: 150px; --b: -96px; }

  .hero__scroll { display: none; }

  .split { grid-template-columns: minmax(0, 1fr); }
  .split__side { min-height: 0; }
  .split__side--crowd { border-right: 0; border-bottom: 1px solid var(--line); }
  .split__side--outlier { padding-top: clamp(64px, 12vw, 110px); padding-bottom: clamp(72px, 14vw, 120px); }
  .split__side--outlier .split__inner { padding-left: 0; }

  .matrix-wrap { grid-template-columns: minmax(0, 1fr); }

  .crowd-section__foot,
  .list__foot { grid-template-columns: minmax(0, 1fr); }
  .crowd-section__note,
  .list__foot .section-note { justify-self: start; text-align: left; }

  .final__bottom { grid-template-columns: minmax(0, 1fr); }
  .final__actions { align-items: stretch; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .brand__logo { width: 30px; height: 30px; }
  .brand__name { font-size: 14px; }

  .hero__meta > div { padding: 0 16px; }
  .hero__ctas { display: grid; grid-template-columns: minmax(0, 1fr); }
  .hero__ctas .btn { width: 100%; }
  .hero__content .ca { display: flex; width: 100%; }

  .stanza--indent { padding-left: 8vw; }

  .list__row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 16px;
  }
  .list__desc {
    grid-column: 2;
    text-align: left;
  }

  .chart {
    aspect-ratio: auto;
    height: min(620px, 130vw);
    min-height: 480px;
  }
  .chart__info { padding: 20px 8px; }

  .exhibit__caption { font-size: 9.5px; letter-spacing: 0.14em; }

  .final__word:nth-child(2) { padding-left: 0.5em; }
  .final__buttons { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .final__buttons .btn { min-width: 0; padding: 0 12px; }
  .final__actions .ca { display: flex; width: 100%; }

  .site-footer__inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .site-header .btn--sm { padding: 0 14px; }
  .menu-toggle__label { display: none; }
  .menu-toggle { padding: 0 13px; }

  .eyebrow { font-size: 10.5px; letter-spacing: 0.14em; }

  .ca { flex-wrap: wrap; }
  .ca__label {
    flex-basis: 100%;
    padding: 9px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line-2);
  }
  .ca__value { font-size: 14px; flex-basis: 100%; }
  .ca__copy {
    flex-basis: 100%;
    border-left: 0;
    border-top: 1px solid var(--line-2);
  }

  .tag--subject { display: none; }

  .matrix { gap: 4px; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .grain,
  .tape__track,
  .chart__scan,
  .hero__aura { animation: none !important; }

  .crowd__row,
  .hero__figure,
  .hero__content,
  .wall__row { transform: none !important; }
  .hero__content { opacity: 1 !important; }

  .js .reveal,
  .js [data-stagger] .m-line > span,
  .js [data-stagger] .final__word > span,
  .js .matrix__cell {
    opacity: 1;
    transform: none;
  }
}
