/* ------------------------------------------------------------------
   PREEMPTION ($PREEM)  -  paper-cutout / xerox / acid-lime
   Tokens sampled from the brand PFP + banner: #000 ground,
   #F2F0EB photocopy paper, #D4FD0E lime, #A3A19D grey.
   ------------------------------------------------------------------ */

:root {
  --bg: #070707;
  --bg2: #0e0e0d;
  --line: #1f1f1d;
  --paper: #f2f0eb;
  --paper2: #d9d7d1;
  --grey: #a3a19d;
  --grey2: #4d4c49;
  --lime: #d4fd0e;
  --lime2: #a9cc00;
  --ink: #0a0a0a;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --pixel: "Silkscreen", "IBM Plex Mono", monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(16px, 4.5vw, 64px);
  --max: 1440px;

  /* z scale */
  --z-nav: 40;
  --z-menu: 50;
  --z-grain: 60;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }

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

/* ---------- utilities ---------- */

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

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

.i {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.i--brand { fill: currentColor; stroke: none; }

.rough { filter: url(#rough); }

/* photocopy paper block: slightly torn corners via clip-path (cheap) */
.paper {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  clip-path: polygon(
    0.6% 1.4%, 3.5% 0, 46% 0.7%, 97.2% 0, 100% 2.6%,
    99.4% 52%, 100% 97.5%, 96.5% 100%, 41% 99.3%, 2.2% 100%,
    0 96.8%, 0.5% 44%
  );
}
.paper::before {
  /* toner noise */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.paper--lime { background: var(--lime); }
.paper--lime::after {
  /* halftone dither like the PFP figure */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--ink) 0.9px, transparent 1.25px);
  background-size: 5px 5px;
  -webkit-mask-image: linear-gradient(200deg, transparent 35%, #000 100%);
          mask-image: linear-gradient(200deg, transparent 35%, #000 100%);
  opacity: 0.85;
  pointer-events: none;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.h2 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 14ch;
}
.h2 em { font-style: normal; color: var(--lime); position: relative; z-index: 1; }
.h2[data-ink] { position: relative; }
.ink {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* darken, not multiply: over the black ground it is exactly the ground (no faint box around
     the heading), over the paper-white letters it is the print itself */
  mix-blend-mode: darken;
  pointer-events: none;
  opacity: 0;
}
/* fades in only after the reveal transition has ended: while the heading is still transformed
   or translucent it is its own stacking context and the blend would not reach the page ground */
.h2[data-reveal].is-in .ink.is-ready { opacity: 1; transition: opacity 0.8s ease 1s; }
.h2:not([data-reveal]) .ink.is-ready { opacity: 1; transition: opacity 0.8s ease; }
/* on a white ground (print, light high-contrast themes) darken would show the print as a box */
@media print, (forced-colors: active) {
  .ink { display: none; }
  .has-ink .step__num { background-image: none !important; }
}

.lead {
  color: var(--grey);
  max-width: 58ch;
  font-size: clamp(16px, 1.25vw, 19px);
}

.section { padding-block: clamp(96px, 12vw, 180px); }
.section__head { display: grid; gap: 22px; margin-bottom: clamp(44px, 6vw, 88px); }

/* JS-gated reveal (no JS: everything visible) */
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }

/* ---------- grain overlay ---------- */

.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.075;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  isolation: isolate;
  transition: transform 0.35s var(--ease), color 0.25s;
  transform-origin: 40% 60%;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: currentColor;
  clip-path: polygon(0 2%, 4% 0, 98% 1%, 100% 4%, 99% 97%, 96% 100%, 3% 99%, 0 95%);
  transition: transform 0.45s var(--ease);
}
.btn--lime { color: var(--lime); }
.btn--lime > * { color: var(--ink); }
.btn--lime::before { background: var(--lime); }
.btn--lime::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper);
  clip-path: polygon(0 2%, 4% 0, 98% 1%, 100% 4%, 99% 97%, 96% 100%, 3% 99%, 0 95%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.btn--lime:hover::after { transform: scaleY(1); }
.btn--lime:hover { transform: rotate(-1.5deg) translateY(-2px); }
.btn--lime:active { transform: rotate(-1.5deg) scale(0.97); }

.btn--paper { color: var(--paper); }
.btn--paper > * { color: var(--ink); }
.btn--paper:hover { transform: rotate(1.2deg) translateY(-2px); }
.btn--paper:active { transform: scale(0.97); }

.btn--ghost { color: var(--paper); padding-inline: 8px; }
.btn--ghost::before { display: none; }
.btn--ghost > span {
  position: relative;
}
.btn--ghost > span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn--ghost:hover > span::after { transform: scaleX(1); }
.btn--ghost:hover .i { transform: translateX(4px); }
.btn--ghost .i { transition: transform 0.35s var(--ease); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, height 0.4s var(--ease);
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 62px; height: 34px; fill: var(--paper); }
.brand__mark .lime { fill: var(--lime); }
.brand__name {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links { display: flex; gap: 6px; }
.nav__links a {
  position: relative;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--grey);
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 12px 18px; font-size: 13px; }
.nav__burger { display: none; width: 44px; height: 44px; place-items: center; }
.nav__burger .i { width: 26px; height: 26px; }

/* mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 16px var(--gutter) 32px;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.menu.is-open { transform: none; }
.menu__top { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.menu__close { width: 44px; height: 44px; display: grid; place-items: center; }
.menu__links { display: grid; align-content: center; gap: 4px; }
.menu__links a {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(36px, 9vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transition: color 0.25s;
}
.menu__links a:hover { color: var(--lime); }
.menu__foot { display: flex; align-items: center; gap: 16px; }
.menu__foot .btn { width: 100%; justify-content: center; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: clamp(96px, 12vh, 132px);
  padding-bottom: clamp(32px, 6vh, 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 5fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}
.hero__copy { display: grid; gap: clamp(22px, 2.6vw, 34px); align-content: center; }
.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 116%;
  font-size: clamp(40px, 5.15vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: normal; color: var(--lime); }
.hero__sub { color: var(--grey); font-size: clamp(16px, 1.3vw, 20px); max-width: 44ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }

.hero__art { position: relative; min-width: 0; }

/* WebGL layers (getlayers assets) */
.hero { isolation: isolate; background: var(--bg); }
.hero__rift, .cell__cubes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}
.hero__rift.is-ready, .cell__cubes.is-ready { opacity: 1; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.78) 34%, rgba(7, 7, 7, 0.2) 58%, rgba(7, 7, 7, 0) 72%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.75) 0%, rgba(7, 7, 7, 0) 26%, rgba(7, 7, 7, 0) 78%, #070707 100%);
}
.hero__grid { position: relative; z-index: 2; }
.hero__dots { z-index: 1; }
.scene { width: 124%; max-width: none; height: auto; overflow: visible; margin-left: -6%; }

/* halftone dot field, denser toward the corner (like the PFP dither) */
.hero__dots {
  position: absolute;
  right: -10vw;
  bottom: -10vh;
  width: 70vw;
  height: 80vh;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--grey2) 1.1px, transparent 1.5px);
  background-size: 9px 9px;
  -webkit-mask-image: radial-gradient(ellipse at 85% 90%, #000 0%, rgba(0, 0, 0, 0.5) 30%, transparent 62%);
          mask-image: radial-gradient(ellipse at 85% 90%, #000 0%, rgba(0, 0, 0, 0.5) 30%, transparent 62%);
  opacity: 0.55;
}

/* scene motion (CSS loops, GSAP handles the entrance) */
.sc-hang { transform-origin: 320px 0px; animation: sway 6s ease-in-out infinite; }
.sc-sign { transform-origin: 320px 176px; animation: sway 6s ease-in-out infinite; animation-delay: 0.35s; }
.sc-runner { animation: bob 2.6s ease-in-out infinite; }
.sc-owner { animation: bob 3.4s ease-in-out infinite reverse; }
.sc-sign text { font-family: var(--display); font-weight: 900; font-stretch: 112%; }
.sc-plaque text { font-family: var(--pixel); font-weight: 700; letter-spacing: 0.04em; }

@keyframes sway {
  0%, 100% { transform: rotate(-1.6deg); }
  50% { transform: rotate(1.6deg); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- ticker (the single marquee on the page) ---------- */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg2);
  padding-block: 14px;
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: tick 48s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: flex; align-items: center; gap: 44px; }
.plate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 12px 7px 14px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  clip-path: polygon(0 8%, 2% 0, 98% 3%, 100% 10%, 99% 95%, 97% 100%, 3% 98%, 0 92%);
}
.plate b {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.05em;
  background: var(--ink);
  color: var(--lime);
  padding: 3px 6px;
}
.ticker .i { width: 22px; height: 22px; color: var(--grey2); transform: rotate(-30deg); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- how it works (pinned horizontal chain) ---------- */

.how { padding-top: clamp(96px, 12vw, 180px); }
.how__head { margin-bottom: clamp(24px, 4vw, 56px); }
.how__pin { position: relative; height: 100vh; height: 100dvh; overflow: hidden; }
.how__track {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 96px);
  height: 100%;
  width: max-content;
  padding-inline: var(--gutter) 30vw;
}
.how__chain {
  position: absolute;
  left: 0; top: 50%;
  width: 100%;
  height: 40px;
  transform: translateY(-50%);
  pointer-events: none;
  overflow: visible;
}
.how__chain .base { stroke: var(--grey2); stroke-width: 9; stroke-dasharray: 26 9; stroke-linecap: round; fill: none; }
.how__chain .hole { stroke: var(--bg); stroke-width: 4; stroke-dasharray: 26 9; stroke-linecap: round; fill: none; }
.how__chain .prog { stroke: var(--lime); stroke-width: 3; fill: none; stroke-dasharray: 1; stroke-dashoffset: 1; }

.step { position: relative; width: min(520px, 78vw); flex: none; }
.step:nth-child(even) { transform: translateY(6vh); }
.step:nth-child(odd) { transform: translateY(-5vh); }
.has-ink .step__num {
  -webkit-background-clip: text;
          background-clip: text;
  background-size: cover;
  background-repeat: no-repeat;
}
.step__num {
  position: absolute;
  top: -0.42em;
  left: -0.08em;
  z-index: 0;
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(120px, 15vw, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--grey2);
  pointer-events: none;
  user-select: none;
}
.step__card {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2.6vw, 36px);
  display: grid;
  gap: 16px;
  min-height: 300px;
}
.step__card .i { width: 34px; height: 34px; stroke-width: 1.75; }
.step__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.step__text { font-size: 16px; line-height: 1.5; color: #2a2a28; max-width: 42ch; }
.step__meta {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c5b58;
  display: flex;
  gap: 10px;
  align-items: center;
}
.step--lime .step__text { color: #1f2400; }
.step--lime .step__meta { color: #3d4600; }
.step__ring {
  /* 48h dial */
  width: 88px; height: 88px;
  margin-left: auto;
  position: absolute;
  right: 26px; top: 26px;
}
.step__ring circle { fill: none; stroke-width: 6; }
.step__ring .track { stroke: rgba(10, 10, 10, 0.12); }
.step__ring .fill { stroke: var(--ink); stroke-dasharray: 1; stroke-dashoffset: 1; stroke-linecap: butt; transform: rotate(-90deg); transform-origin: 50% 50%; }
.step__ring text { font-family: var(--pixel); font-size: 15px; font-weight: 700; fill: var(--ink); }

/* ---------- roles (paper chain) ---------- */

.roles__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0;
  margin-inline: -1.5%;
}
.role {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding-bottom: 8px;
  transition: transform 0.5s var(--ease);
}
.role__fig { width: 100%; max-width: none; height: auto; fill: var(--paper); transition: fill 0.35s, transform 0.5s var(--ease); }
.role__fig .dots { fill: url(#dots); opacity: 0; transition: opacity 0.35s; }
.role__fig.flip { transform: scaleX(-1); }
.role__name {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
}
.role:hover .role__fig, .role.is-active .role__fig { fill: var(--lime); }
.role.is-active .role__fig .dots, .role:hover .role__fig .dots { opacity: 1; }
.role.is-active .role__name { color: var(--lime); }
.role.is-active { transform: translateY(-14px); }

.roles__panel {
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 24px 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.roles__panel h3 {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}
.roles__panel p { font-size: clamp(17px, 1.4vw, 21px); color: var(--paper2); max-width: 52ch; }
.roles__panel .swap { transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.roles__panel .swap.is-out { opacity: 0; transform: translateY(10px); }

/* ---------- tracks (hanging signboards) ---------- */

.tracks { overflow-x: clip; }
.tracks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  padding-top: 110px;
}
.board {
  --tilt: -2deg;
  position: relative;
  transform: rotate(var(--tilt));
  transform-origin: 50% -110px;
}
.board--gh { --tilt: 1.6deg; margin-top: 56px; }
.board::before, .board::after {
  /* two chains */
  content: "";
  position: absolute;
  top: -110px;
  width: 10px;
  height: 110px;
  background:
    radial-gradient(circle at 50% 50%, transparent 2px, var(--grey) 2.5px, var(--grey) 4px, transparent 4.5px) 0 0 / 10px 16px repeat-y;
}
.board::before { left: 18%; }
.board::after { right: 18%; }
.board__in {
  padding: clamp(28px, 3vw, 44px);
  box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 6px var(--paper);
  display: grid;
  gap: 24px;
}
.board__logo { width: 74px; height: 74px; color: var(--ink); }
.board__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 122%;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.board__rows { display: grid; gap: 14px; }
.board__row { display: grid; grid-template-columns: 96px 1fr; gap: 16px; align-items: start; }
.board__row dt { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: #5c5b58; padding-top: 3px; }
.board__row dd { margin: 0; font-size: 16px; color: #1c1c1a; }
.board__bolt {
  position: absolute;
  top: 14px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: inset 0 0 0 3px var(--paper2), inset 0 0 0 5px var(--ink);
}
.board__bolt:first-of-type { left: calc(18% - 2px); }
.board__bolt:last-of-type { right: calc(18% - 2px); }

/* ---------- creators bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.cell { padding: clamp(24px, 2.8vw, 40px); display: grid; align-content: start; gap: 18px; min-height: 300px; }
@media (max-width: 960px) { .cell.cell--notoriety { min-height: 520px; } }
.cell--founder { grid-column: 1 / 3; overflow: hidden; }
.cell--notoriety { grid-column: 5 / 7; grid-row: 1 / 3; background: #000; color: var(--paper); position: relative; isolation: isolate; overflow: hidden; }
.cell--notoriety > * { position: relative; z-index: 1; }
.cell--notoriety::after { content: ""; position: absolute; inset: 0; z-index: 2; box-shadow: inset 0 0 0 1px var(--line); pointer-events: none; }
.cell--notoriety .cell__who { margin-top: 4px; }
.cell--notoriety::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 70%); pointer-events: none; }
.cell__cubes { z-index: 0 !important; position: absolute !important; }
.cell--recognition { grid-column: 3 / 5; }
.cell--buyback { grid-column: 1 / 5; }

.cell__title {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 118%;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}
.cell__text { font-size: 16px; max-width: 46ch; color: #2a2a28; }
.cell--notoriety .cell__text { color: var(--grey); }
.cell--recognition .cell__text { color: #1f2400; }
.cell__who {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.cell__who span {
  padding: 5px 9px;
  border: 1px solid currentColor;
  opacity: 0.85;
}
.cell__big {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(72px, 9vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.cell__big small { display: block; font-size: 0.2em; font-stretch: 110%; letter-spacing: 0; margin-top: 0.4em; }

.cell--founder .gavel {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: clamp(160px, 22%, 260px);
  height: auto;
  color: var(--ink);
  opacity: 0.08;
  stroke-width: 1.2;
  transform: rotate(-12deg);
  pointer-events: none;
}
.cell--notoriety .vault { width: 44px; height: 44px; color: var(--lime); stroke-width: 1.5; }

/* buyback formula + mock slider */
.formula {
  font-family: var(--mono);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.5;
  padding: 16px 18px;
  background: rgba(10, 10, 10, 0.06);
  border-left: 3px solid var(--ink);
  overflow-x: auto;
  white-space: nowrap;
}
.formula b { color: var(--ink); background: var(--lime); padding: 0 4px; }
.calc { display: grid; grid-template-columns: 1fr auto; gap: 14px 24px; align-items: end; margin-top: 4px; }
.calc__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #5c5b58; display: flex; justify-content: space-between; gap: 12px; }
.calc__out {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 122%;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-align: right;
}
.calc__out small { display: block; font-family: var(--mono); font-weight: 400; font-stretch: 100%; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #5c5b58; margin-top: 8px; }
.calc__note { grid-column: 1 / -1; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: #7a7975; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 28px;
  background: transparent;
  margin: 0;
}
input[type="range"]::-webkit-slider-runnable-track { height: 3px; background: var(--ink); }
input[type="range"]::-moz-range-track { height: 3px; background: var(--ink); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  margin-top: -9.5px;
  background: var(--lime);
  border: 3px solid var(--ink);
  cursor: grab;
}
input[type="range"]::-moz-range-thumb { width: 16px; height: 16px; background: var(--lime); border: 3px solid var(--ink); border-radius: 0; cursor: grab; }
input[type="range"]:focus-visible { outline: 2px solid var(--lime); outline-offset: 6px; }

/* ---------- contracts ---------- */

.contracts__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.flow { width: 100%; height: auto; overflow: visible; }
.flow .wire { fill: none; stroke: var(--grey2); stroke-width: 2; }
.flow .pulse { fill: none; stroke: var(--lime); stroke-width: 2.5; stroke-dasharray: 5 14; stroke-linecap: round; opacity: 0; transition: opacity 0.5s; }
.flow.is-live .pulse { opacity: 1; animation: flow 1.1s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -19; } }
.flow .node { fill: var(--paper); }
.flow .node--ink { fill: var(--ink); stroke: var(--paper); stroke-width: 2; }
.flow .node--lime { fill: var(--lime); }
.flow .t { font-family: var(--mono); font-size: 13px; fill: var(--ink); }
.flow .t--paper { fill: var(--paper); }
.flow .t--small { font-size: 11px; fill: #5c5b58; letter-spacing: 0.06em; text-transform: uppercase; }
.flow .t--dim { fill: var(--grey); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

.tags { display: flex; flex-wrap: wrap; gap: 12px; align-content: start; }
.tag {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  flex: 1 1 calc(50% - 12px);
  min-width: 220px;
  transition: transform 0.45s var(--ease);
}
.tag:hover { transform: translateY(-4px) rotate(-0.6deg); }
.tag--wide { flex-basis: 100%; }
.tag__name { font-family: var(--mono); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tag__name .i { width: 18px; height: 18px; }
.tag__name small { font-weight: 500; font-size: 10px; letter-spacing: 0.08em; padding: 2px 6px; background: var(--ink); color: var(--paper); }
.tag--lime .tag__name small { color: var(--lime); }
.tag__text { font-size: 14px; color: #2a2a28; line-height: 1.45; }
.tag--lime .tag__text { color: #1f2400; }
.tag--lime::after { opacity: 0.45; -webkit-mask-image: linear-gradient(200deg, transparent 60%, #000 100%); mask-image: linear-gradient(200deg, transparent 60%, #000 100%); }
.cell--recognition::after { -webkit-mask-image: linear-gradient(200deg, transparent 50%, #000 100%); mask-image: linear-gradient(200deg, transparent 50%, #000 100%); }

/* ---------- rules ---------- */

.rules__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: rule;
}
.rule {
  position: relative;
  background: var(--bg);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 2.4vw, 32px);
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 32px;
  transition: background 0.35s;
}
.rule:hover { background: var(--bg2); }
/* cursor spotlight (set by main.js as --mx/--my), 21st.dev-style, in lime */
.rule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 253, 14, 0.13), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.rule:hover::before { opacity: 1; }
.rule__icon { position: absolute; top: clamp(22px, 2.4vw, 32px); right: clamp(22px, 2.4vw, 32px); width: 26px; height: 26px; stroke-width: 1.6; color: var(--grey2); transition: color 0.35s, transform 0.5s var(--ease); }
.rule:hover .rule__icon { color: var(--lime); transform: rotate(-8deg) scale(1.12); }
.rule__n {
  font-family: var(--display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: 56px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--grey2);
  transition: color 0.35s;
}
.rule:hover .rule__n { color: var(--lime); }
.rule p { font-size: 15.5px; color: var(--paper2); line-height: 1.5; }

/* ---------- risks accordion ---------- */

.risks__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 32px 80px; align-items: start; }
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(18px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transition: color 0.25s;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--lime); }
.acc summary .i { width: 22px; height: 22px; transition: transform 0.4s var(--ease); }
.acc details[open] summary .i { transform: rotate(45deg); color: var(--lime); }
.acc__q { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.acc__q .i { width: 22px; height: 22px; stroke-width: 1.75; color: var(--grey); flex: none; transition: color 0.3s; }
.acc details[open] .acc__q .i, .acc summary:hover .acc__q .i { color: var(--lime); }
.acc__chip {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  border: 1px solid var(--line);
  color: var(--grey);
  white-space: nowrap;
  transform: rotate(-1.5deg);
}
.chip--ok { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.chip--open { color: var(--paper); border-color: var(--grey2); }
.acc__plus { flex: none; }
.acc__panel { overflow: hidden; }
.acc__body { padding: 0 0 26px 36px; color: var(--grey); max-width: 60ch; font-size: 16px; }
@media (max-width: 600px) { .acc__chip { display: none; } .acc__body { padding-left: 0; } }

/* ---------- numbers strip ---------- */

.stats { padding-block: clamp(56px, 7vw, 96px) 0; }
.stats__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.stat {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: clamp(18px, 2vw, 28px) clamp(16px, 1.6vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.stat__n {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.stat--lime .stat__n { color: var(--lime); }
.stat__l { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; line-height: 1.45; color: var(--grey); text-transform: uppercase; }
@media (max-width: 900px) { .stats__row { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .stats__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* hero copy stays hidden until the intro timeline actually starts (fonts settled), so a refresh
   never shows the fallback-font title for a frame before GSAP takes over */
.js .hero:not(.hero-go) .hero__title .line > span,
.js .hero:not(.hero-go) .hero .eyebrow,
.js .hero:not(.hero-go) .hero__sub,
.js .hero:not(.hero-go) .hero__cta,
.js .hero:not(.hero-go) .scene { visibility: hidden; }

/* ---------- claim CTA ---------- */

.claim {
  position: relative;
  padding-block: clamp(120px, 16vw, 220px);
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
}
.claim__in { display: grid; justify-items: center; gap: clamp(28px, 4vw, 44px); }
.claim__sign {
  position: relative;
  width: min(760px, 92vw);
  transform: rotate(-1.4deg);
}
.claim__sign svg { width: 100%; height: auto; overflow: visible; }
.claim__sign .board-text { font-family: var(--pixel); font-weight: 700; font-size: 64px; fill: var(--ink); letter-spacing: 0.02em; }
.claim__sign .handle-text { font-family: var(--display); font-weight: 900; font-stretch: 118%; font-size: 40px; fill: var(--paper); }
.claim__stamp {
  position: absolute;
  right: 4%;
  top: -10%;
  padding: 10px 16px;
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  transform: rotate(9deg) scale(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.claim.is-bonded .claim__stamp { transform: rotate(9deg) scale(1); }
.claim__form { display: flex; gap: 0; width: min(640px, 100%); position: relative; }
.claim__form input {
  flex: 1;
  min-width: 0;
  height: 60px;
  padding: 0 20px;
  background: var(--bg2);
  border: 2px solid var(--grey2);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 16px;
  transition: border-color 0.25s;
}
.claim__form input::placeholder { color: var(--grey); }
.claim__form input:focus { outline: none; border-color: var(--lime); }
.claim__form .btn { height: 60px; }
.claim__panel {
  width: min(640px, 100%);
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--bg2);
  color: var(--paper2);
  font-size: 15px;
  line-height: 1.5;
}
.claim__panel p { margin: 0; }
.claim__panel b { color: var(--paper); }
.claim__panel a { color: var(--lime); }
.claim__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.claim__actions label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); }
.claim__actions input {
  width: 120px;
  height: 44px;
  padding: 0 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 15px;
}
.claim__actions input:focus { outline: none; border-color: var(--lime); }
.claim__actions .btn { height: 44px; padding-block: 0; }
.claim__note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--grey); width: min(640px, 100%); }
.claim__note[hidden] { display: none; }
.claim__note--error { color: #ff6b57; }
.claim__withdraw { display: flex; gap: 12px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--grey); }
.claim__withdraw:empty { display: none; }
.claim__hint { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--grey); }
.claim__hint a { color: var(--paper); border-bottom: 1px solid var(--lime); }
.claim__runner {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: clamp(120px, 14vw, 200px);
  height: auto;
  fill: var(--lime);
  transform: rotate(-16deg) scaleX(-1);
  pointer-events: none;
}
.claim__runner .dots { fill: url(#dots); }

/* ---------- footer ---------- */

.foot {
  border-top: 1px solid var(--line);
  padding-block: 44px;
}
.foot__grid { display: grid; grid-template-columns: 1fr auto; gap: 24px 48px; align-items: center; }
.foot__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--grey); display: grid; gap: 6px; margin-top: 14px; }
.foot__meta a { color: var(--paper); }
.foot__meta a:hover { color: var(--lime); }
.foot__links { display: flex; gap: 8px; }
.foot__links a {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  color: var(--grey);
  transition: color 0.25s, border-color 0.25s, transform 0.35s var(--ease);
}
.foot__links a:hover { color: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.foot__links .i { width: 20px; height: 20px; }

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
  .nav__links { display: none; }
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 620px; margin-inline: auto; width: 100%; }
  .scene { width: 100%; margin-left: 0; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.97) 50%, rgba(7, 7, 7, 0.4) 64%, rgba(7, 7, 7, 0) 78%, #070707 100%);
  }
  .hero { padding-top: 104px; }
  .contracts__grid, .risks__grid, .roles__panel { grid-template-columns: 1fr; }
  .rules__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cell--founder, .cell--buyback { grid-column: span 2; grid-row: auto; }
  .cell--notoriety, .cell--recognition { grid-column: span 1; grid-row: auto; }
}
@media (max-width: 900px), (prefers-reduced-motion: reduce) {
  /* how: vertical stack, no pin (also for reduced motion, where the JS never pins/pans) */
  .how__pin { height: auto; overflow: visible; }
  .how__track { flex-direction: column; align-items: stretch; width: auto; padding-inline: var(--gutter); gap: 40px; height: auto; }
  .how__chain { display: none; }
  .step { width: 100%; }
  .step:nth-child(even), .step:nth-child(odd) { transform: none; }
  .step__num { font-size: 110px; top: -0.36em; }
  .step { max-width: 760px; }
}
@media (max-width: 900px) {
  .tracks__grid { grid-template-columns: 1fr; gap: 150px; }
  .board--gh { margin-top: 0; }
}
@media (max-width: 720px) {
  .nav__cta { display: none; }
  .nav__burger { display: grid; }
  .roles__row { grid-template-columns: repeat(5, 150px); overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); padding-bottom: 8px; gap: 0; }
  .role { scroll-snap-align: center; }
  .rules__grid { grid-template-columns: 1fr; }
  .rule { min-height: 0; gap: 18px; }
  .bento { grid-template-columns: 1fr; }
  .cell--founder, .cell--buyback, .cell--notoriety, .cell--recognition { grid-column: span 1; grid-row: auto; }
  .cell { min-height: 0; }
  .calc { grid-template-columns: 1fr; }
  .calc__out { text-align: left; }
  .claim__form { flex-direction: column; gap: 12px; }
  .claim__form .btn { justify-content: center; }
  .claim__runner { display: none; }
  .claim__sign .board-text { font-size: 54px; }
  .foot__grid { grid-template-columns: 1fr; }
  .tag { flex-basis: 100%; }
  .board__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sc-hang, .sc-sign, .sc-runner, .sc-owner, .ticker__track { animation: none !important; }
  .flow.is-live .pulse { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .role, .tag, .role__fig { transition: none; }
}

/* ---------- live board ---------- */

.live__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 32px; align-items: start; }
.live__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.live__head .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.live__head .i { width: 16px; height: 16px; }
.eyebrow--ink { color: var(--ink); }
.live__stamp {
  font-family: var(--pixel);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 4px 8px;
  transform: rotate(-2deg);
}
.live__list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.live__row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg);
  transition: background 0.25s;
}
.live__row:hover { background: var(--bg2); }
.live__row .i--brand { width: 18px; height: 18px; color: var(--grey); }
.live__row > div { min-width: 0; }
.live__handle { display: block; font-family: var(--display); font-weight: 900; font-stretch: 112%; font-size: 20px; letter-spacing: -0.01em; color: var(--paper); text-transform: lowercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live__meta { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--grey); margin-top: 4px; }
.live__timer {
  font-family: var(--pixel);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--lime);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 8px 10px;
  min-width: 108px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.live__row.is-closing .live__timer { color: var(--ink); background: var(--lime); animation: live-blink 1.2s steps(2) infinite; }
@keyframes live-blink { 50% { opacity: 0.55; } }
.live__go { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); border-bottom: 1px solid var(--lime); padding-bottom: 2px; }
.live__go:hover { color: var(--lime); }
.live__empty { font-family: var(--mono); font-size: 13px; color: var(--grey); padding: 18px; border: 1px dashed var(--line); }
/* the board's copy sits above the halftone dither (which stays on the ground only) */
.live__board { padding: clamp(22px, 2.6vw, 34px); min-width: 0; }
.live__board > * { position: relative; z-index: 1; }
.live__board::after { opacity: 0.5; }
.live__rank { display: grid; gap: 0; counter-reset: rank; }
.live__rank li { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; gap: 12px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(10, 10, 10, 0.18); }
.live__rank li > div { min-width: 0; }
.live__rank li::before { counter-increment: rank; content: counter(rank, decimal-leading-zero); font-family: var(--pixel); font-weight: 700; font-size: 16px; color: var(--ink); }
.live__rank b { display: block; font-family: var(--display); font-weight: 900; font-stretch: 112%; font-size: 18px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live__rank small { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(10, 10, 10, 0.65); margin-top: 2px; }
.live__rank .live__eth { font-family: var(--mono); font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; }
.live__foot { margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(10, 10, 10, 0.7); }
.live__board .live__empty { color: rgba(10, 10, 10, 0.65); border-color: rgba(10, 10, 10, 0.25); }
@media (max-width: 900px) {
  .live__grid { grid-template-columns: 1fr; }
  .live__row { grid-template-columns: 18px minmax(0, 1fr) auto; }
  .live__row .live__go { grid-column: 2 / -1; justify-self: start; }
}
