/* ------------------------------ Base reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #0a0b0d; }
a { color: inherit; }
button { font: inherit; }

/* ------------------------------ Root tokens ------------------------------ */
:root {
  --accent: #c6ff3a;
  --bg: #0a0b0d;
  --bg-1: #111316;
  --bg-2: #16181c;
  --ink: #f3f4ef;
  --ink-1: #d0d2cb;
  --ink-2: #8a8d85;
  --ink-3: #54574f;
  --rule: #1f2126;
  --rule-2: #2a2d33;
  --display: 'Archivo', 'Space Grotesk', system-ui, sans-serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --label-letter: .14em;
}

/* Container helper */
.page { width: 100%; }
.page > * { padding-left: 48px; padding-right: 48px; }
.page > .marquee { padding-left: 0; padding-right: 0; }
@media (max-width: 720px) {
  .page > * { padding-left: 20px; padding-right: 20px; }
}

/* --------------------------------- Topbar -------------------------------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
}
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-status {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px; letter-spacing: var(--label-letter);
  color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase;
}
.topbar-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 25%, transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .35; }
}
.topbar-nav { display: flex; align-items: center; gap: 26px; }
.topbar-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px; letter-spacing: .02em;
  color: var(--ink-1);
  text-decoration: none;
}
.topbar-nav a:hover { color: var(--accent); }
.topbar-cta {
  padding: 8px 14px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
}
.topbar-cta:hover { border-color: var(--accent); }
@media (max-width: 820px) {
  .topbar-nav a:not(.topbar-cta) { display: none; }
}

/* -------------------------------- Wordmark ------------------------------- */
.wordmark {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.02em;
}
.wm-drop { color: var(--accent); transform: translateY(-1px); font-weight: 400; }
.wm-text { color: var(--ink); }

/* ----------------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--rule) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 75%);
  opacity: .35;
  pointer-events: none;
}
.hero-meta {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px; letter-spacing: var(--label-letter);
  color: var(--accent);
  text-transform: uppercase;
}
.tag.muted { color: var(--ink-2); }

.hero-headline {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-weight: 900;
  margin: 0;
  letter-spacing: -.04em;
  line-height: 0.88;
  color: var(--ink);
  text-wrap: balance;
}
.hero-headline--wordmark {
  font-size: clamp(72px, 22vw, 320px);
  display: flex;
  align-items: baseline;
}
.hero-headline--wordmark span { display: inline-block; }
.hero-headline--wordmark .accent { color: var(--accent); }

.hero-sub {
  position: relative; z-index: 1;
  max-width: 720px;
  margin-top: 40px;
}
.hero-sub p {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--ink-1);
  margin: 0;
  text-wrap: pretty;
}

.hero-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.hero-bottom-meta { display: flex; flex-direction: column; gap: 8px; max-width: 520px; }
.hero-bottom-status {
  font-size: 16px;
  color: var(--ink-1);
  line-height: 1.4;
}
.countdown-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--label-letter);
  color: var(--accent);
  text-transform: uppercase;
}

/* Primary button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  background: var(--accent);
  color: #0a0b0d;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 0 -4px color-mix(in oklab, var(--accent) 50%, transparent);
}
.btn-arrow { transition: transform .15s ease; }
.btn-primary:hover .btn-arrow { transform: translate(3px, -1px); }

/* -------------------------------- Marquee -------------------------------- */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-1);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--ink-1);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 18px;
}
.marquee-dot { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* --------------------------------- Stats --------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
  padding-top: 56px; padding-bottom: 56px;
  gap: 32px;
}
@media (max-width: 980px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat-k {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
}
.stat-v { font-size: 16px; color: var(--ink-1); line-height: 1.35; }
.stat-note {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: var(--label-letter);
  text-transform: uppercase;
}

/* ------------------------------- Section label --------------------------- */
.section-label {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 48px;
}
.section-bar { flex: 0 0 80px; height: 1px; background: var(--rule-2); }
.section-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: var(--label-letter);
  color: var(--ink-2);
  text-transform: uppercase;
}

/* -------------------------------- Features ------------------------------- */
.features {
  padding-top: 80px;
  padding-bottom: 80px;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.feat {
  grid-column: span 3;
  background: var(--bg-1);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 480px;
  transition: border-color .2s ease, transform .2s ease;
}
.feat:hover { border-color: var(--rule-2); }
.feat--wide {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}
.feat--wide .feat-head { grid-column: 1 / -1; }
.feat--wide .feat-body { max-width: 520px; margin-bottom: 0; }
.feat--wide .feat-visual {
  margin-top: 0;
  justify-content: flex-start;
  align-self: stretch;
}
@media (max-width: 980px) {
  .feat--wide { grid-template-columns: 1fr; gap: 24px; }
  .feat--wide .feat-body { max-width: none; }
}

/* Wide text-only card: feature becomes a big editorial statement */
.feat--text { min-height: 0; padding: 56px 64px; }
.feat--wide.feat--text { display: flex; flex-direction: column; gap: 0; }
.feat--wide.feat--text .feat-body { max-width: 1000px; margin-bottom: 0; }
.feat--text .feat-title {
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.feat--text .feat-text {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  max-width: 760px;
}
@media (max-width: 980px) {
  .feat--text { padding: 32px; }
  .feat, .feat--wide { grid-column: span 6; }
}
.feat-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.feat-n {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .08em;
}
.feat-line { flex: 1; height: 1px; background: var(--rule-2); }
.feat-body { margin-bottom: 28px; }
.feat-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.feat-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-1);
  margin: 0;
  text-wrap: pretty;
}
/* Stops the non-wide layout's auto-pin behavior from leaking into wide cards */
.feat:not(.feat--wide) .feat-visual { margin-top: auto; }
.feat-visual {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 20px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ------------------------------- Revenue viz ----------------------------- */
.rev { display: flex; flex-direction: column; gap: 22px; width: 100%; }
.rev-col { display: flex; flex-direction: column; gap: 10px; }
.rev-h {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: var(--label-letter);
  text-transform: uppercase;
}
.rev-h-tag {
  padding: 3px 8px;
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  font-size: 10px;
}
.rev-h-tag--on {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}
.rev-bar {
  display: flex;
  height: 18px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule-2);
}
.rev-seg { height: 100%; min-width: 0; transition: filter .15s ease; }
.rev-seg:hover { filter: brightness(1.15); }

.rev-seg--fees       { background: var(--bg-2); }
.rev-seg--pool       { background: color-mix(in oklab, var(--bg-2) 55%, var(--ink-2)); }
.rev-seg--pool-light { background: color-mix(in oklab, var(--bg-2) 75%, var(--ink-2)); }
.rev-seg--you-faded  { background: color-mix(in oklab, var(--accent) 35%, var(--bg-2)); }
.rev-seg--you        { background: var(--accent); }

.rev-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin-top: 4px;
}
.rev-legend-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--ink-1);
  min-width: 0;
}
.rev-swatch {
  width: 10px; height: 10px; border-radius: 2px;
  flex-shrink: 0;
  border: 1px solid var(--rule-2);
}
.rev-swatch--fees       { background: var(--bg-2); }
.rev-swatch--pool       { background: color-mix(in oklab, var(--bg-2) 55%, var(--ink-2)); }
.rev-swatch--pool-light { background: color-mix(in oklab, var(--bg-2) 75%, var(--ink-2)); }
.rev-swatch--you-faded  { background: color-mix(in oklab, var(--accent) 35%, var(--bg-2)); }
.rev-swatch--you        { background: var(--accent); border-color: var(--accent); }
.rev-legend-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rev-legend-pct {
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.rev-note {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 4px;
}

/* ------------------------------- Library viz ----------------------------- */
.lib { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.lib--simple { justify-content: center; align-items: flex-start; gap: 22px; }
.lib-counter {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.lib--simple .lib-counter { border-top: none; padding-top: 0; }
.lib-counter-n {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 9vw, 128px);
  letter-spacing: -.04em;
  line-height: .9;
  color: var(--accent);
}
.lib-counter-l {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: var(--label-letter);
}
.lib-pulse {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink-1);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  width: 100%;
}
.lib-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ----------------------------- Exclusive viz ----------------------------- */
.exc { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.exc-head, .exc-foot {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: var(--label-letter);
  text-transform: uppercase;
  color: var(--ink-2);
}
.exc-foot { margin-top: 4px; }
.exc-row {
  display: grid;
  grid-template-columns: 100px 1fr 56px;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.exc-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-1);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.exc-trend {
  display: flex; align-items: flex-end; gap: 4px;
  height: 44px;
}
.exc-bar {
  flex: 1; background: var(--ink-3); border-radius: 2px;
  transition: background .2s ease;
}
.exc-bar--last { background: var(--accent); }
.exc-hold {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  text-align: right;
}

/* ------------------------------- Player viz ------------------------------ */
.players {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.player {
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.player-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.player-screen {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in oklab, var(--accent) 18%, var(--bg-2)) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  border-radius: 6px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.player-screen--alt {
  background:
    radial-gradient(circle at 70% 60%, color-mix(in oklab, var(--accent) 15%, var(--bg-2)) 0%, transparent 55%),
    linear-gradient(225deg, var(--bg) 0%, var(--bg-2) 100%);
}
.player-screen::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, var(--rule) 1px, transparent 1px);
  background-size: 8.33% 100%;
  opacity: .25;
}
.player-hud {
  position: relative;
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-1);
  text-transform: uppercase;
}
.player-time { color: var(--accent); }
.player-scrub {
  position: relative;
  height: 3px;
  background: var(--rule-2);
  border-radius: 2px;
}
.player-scrub-fill {
  position: absolute; inset: 0;
  width: 32%;
  background: var(--accent);
  border-radius: 2px;
}
.player-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.01em;
}
.player-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--accent);
  background: transparent;
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  text-transform: uppercase;
}

/* -------------------------------- Secret viz ----------------------------- */
.secret { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.secret-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: var(--label-letter);
  text-transform: uppercase;
  color: var(--ink-2);
}
.secret-seal {
  padding: 3px 8px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  font-size: 10px;
}
.secret-list { display: flex; flex-direction: column; gap: 8px; }
.secret-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.secret-redact {
  position: relative;
  height: 14px;
  display: flex; align-items: center;
}
.secret-bar {
  display: block;
  height: 100%;
  width: 100%;
  background:
    repeating-linear-gradient(
      90deg,
      var(--ink-3) 0,
      var(--ink-3) 8px,
      color-mix(in oklab, var(--ink-3) 65%, var(--bg)) 8px,
      color-mix(in oklab, var(--ink-3) 65%, var(--bg)) 14px
    );
  border-radius: 2px;
}
.secret-meta {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.secret-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.secret-sub {
  font-size: 11px;
  color: var(--ink-2);
  font-family: var(--sans);
  letter-spacing: .04em;
}
.secret-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.secret-foot {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--ink-2);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  margin-top: 2px;
}

/* --------------------------------- Notify -------------------------------- */
.notify {
  padding-top: 80px;
  padding-bottom: 80px;
  border-top: 1px solid var(--rule);
}
.notify-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--bg-1);
  border: 1px solid var(--rule);
  border-radius: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.notify-card::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 30%, transparent), transparent 60%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .notify-card { grid-template-columns: 1fr; padding: 32px; }
}
.notify-copy { position: relative; }
.notify-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.notify-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-1);
  margin: 0;
  text-wrap: pretty;
}
.notify-form {
  position: relative;
}
.notify-form-state {
  display: flex; flex-direction: column; gap: 12px;
}
.notify-form-state[hidden] { display: none; }
.notify-form input {
  width: 100%;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--rule-2);
  border-radius: 12px;
  color: var(--ink);
  font: 500 16px/1 var(--sans);
  outline: none;
  transition: border-color .15s ease;
}
.notify-form input:focus { border-color: var(--accent); }
.notify-form input::placeholder { color: var(--ink-3); }
.notify-form .btn-primary { width: 100%; justify-content: center; padding: 18px 22px; }
.notify-form .btn-primary[disabled] {
  opacity: .7;
  cursor: progress;
  transform: none;
  box-shadow: none;
}
.notify-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.notify-fine {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: .02em;
  margin-top: 2px;
}
.notify-thanks {
  display: flex; flex-direction: row; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 12px;
}
.notify-check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0b0d;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notify-thanks strong { display: block; font-size: 16px; margin-bottom: 4px; }
.notify-thanks span { color: var(--ink-1); font-size: 14px; }

/* --------------------------------- Footer -------------------------------- */
.footer {
  padding-top: 32px;
  padding-bottom: 40px;
  border-top: 1px solid var(--rule);
}
.footer-row {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding: 10px 0;
}
.footer-row--small {
  border-top: 1px solid var(--rule);
  padding-top: 18px; margin-top: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.footer-copy {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: var(--label-letter);
  text-transform: uppercase;
}
.footer-build {
  margin-left: auto;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ------------------------------ Mobile tuning ---------------------------- */
@media (max-width: 720px) {
  .topbar { padding-top: 16px; padding-bottom: 16px; }
  .topbar-left { gap: 14px; }
  .topbar-nav { gap: 0; }
  .topbar-cta { padding: 7px 12px; font-size: 12px; }

  .hero { padding-top: 48px; padding-bottom: 40px; }
  .hero-meta { margin-bottom: 24px; gap: 12px; flex-wrap: wrap; }
  .hero-sub { margin-top: 28px; }
  .hero-bottom { margin-top: 40px; padding-top: 20px; gap: 20px; }
  .btn-primary { padding: 14px 18px; font-size: 14px; }

  .marquee { padding: 14px 0; }
  .marquee-track { gap: 32px; }
  .marquee-item { font-size: 12px; gap: 12px; }

  .stats { padding-top: 36px; padding-bottom: 36px; gap: 28px; }

  .section-label { margin-bottom: 32px; gap: 14px; }
  .section-bar { flex-basis: 48px; }

  .features { padding-top: 48px; padding-bottom: 48px; }
  .feat-grid { gap: 16px; }
  .feat {
    padding: 22px;
    min-height: 0;
    border-radius: 14px;
  }
  .feat-head { margin-bottom: 20px; }
  .feat-body { margin-bottom: 22px; }
  .feat-visual { padding: 16px; min-height: 0; }

  .feat--text { padding: 32px 24px; }
  .feat--text .feat-title { margin-bottom: 16px; }

  .lib-counter-n { font-size: clamp(64px, 18vw, 96px); }

  .notify { padding-top: 48px; padding-bottom: 48px; }
  .notify-card { padding: 28px 22px; gap: 28px; }
  .notify-form input { padding: 16px 18px; }
  .notify-form .btn-primary { padding: 16px 20px; }

  .footer { padding-bottom: 32px; }
  .footer-build { margin-left: 0; width: 100%; }
}

@media (max-width: 560px) {
  /* Stack the two player frames so each gets full width */
  .players { grid-template-columns: 1fr; }

  /* Tighten the exclusive-viz grid so the chart isn't squeezed to nothing */
  .exc-row {
    grid-template-columns: 72px 1fr 40px;
    gap: 10px;
  }
  .exc-name { font-size: 11px; }
  .exc-hold { font-size: 18px; }
  .exc-trend { height: 36px; }

  /* Same treatment for the secret roster rows */
  .secret-row {
    grid-template-columns: 72px 1fr auto;
    gap: 10px;
    padding: 10px;
  }

  /* Revenue legend: stack to one column so percentages don't collide */
  .rev-legend { grid-template-columns: 1fr; gap: 4px; }

  /* Hero meta tags can stack to avoid awkward truncation */
  .hero-meta .tag { font-size: 11px; }

  /* Make the "PRE-LAUNCH" pill less crowded next to the wordmark */
  .topbar-status { font-size: 10px; gap: 6px; }
  .topbar-status .dot { width: 6px; height: 6px; box-shadow: 0 0 0 2px color-mix(in oklab, var(--accent) 25%, transparent); }
}

@media (max-width: 380px) {
  /* On the narrowest phones, hide the "PRE-LAUNCH" word but keep the dot */
  .topbar-status { font-size: 0; }
  .topbar-status .dot { font-size: 0; }
}
