:root {
  --void: #070707;
  --ink: #0b0b0b;
  --ink-2: #101010;
  --steel: #161616;
  --line: #242424;
  --line-2: #333;
  --ice: #f3f3f3;
  --muted: #9a9a9a;
  --faint: #6a6a6a;
  --live: #ff2d42;
  --live-dim: rgba(255, 45, 66, 0.16);
  --up: #7d9b86;
  --ok: #7d9b86;
  --on: #ffffff;
  --ui: "Barlow", "Segoe UI", sans-serif;
  --board: "Barlow Condensed", "Arial Narrow", sans-serif;
  --nav-h: 60px;
  --max: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--ice);
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.serif { font-family: var(--ui); font-weight: 700; letter-spacing: -0.03em; }
.mono { font-family: var(--ui); font-variant-numeric: tabular-nums; font-weight: 500; }
.num { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }
.gold { color: var(--ice); }
.live { color: var(--live); }
.ok { color: var(--up); }

/* ——— Nav ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.94);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.mark {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
}

.nav-links a:hover { color: var(--ice); }
.nav-links a.is-on {
  color: var(--ice);
  box-shadow: inset 0 -2px 0 var(--ice);
}

.nav-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 34px;
  width: 168px;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
}

.nav-search input {
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  outline: none;
  color: var(--ice);
  font-size: 13px;
}

.nav-search input::placeholder { color: var(--faint); }
.nav-search input::-webkit-search-decoration,
.nav-search input::-webkit-search-cancel-button,
.nav-search input::-webkit-search-results-button,
.nav-search input::-webkit-search-results-decoration {
  display: none;
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

.menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ice);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--on);
  color: #111;
}
.btn-gold:hover { background: #ddd; }
.btn-gold:disabled { opacity: 0.38; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ice);
}
.btn-ghost:hover { border-color: #555; background: #141414; }

.btn-lg { height: 44px; padding: 0 22px; font-size: 14.5px; }
.btn-sm { height: 30px; padding: 0 12px; font-size: 12.5px; }

/* ——— Hero ——— */
.hero {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 36px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--live);
  margin-bottom: 16px;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--live);
  box-shadow: 0 0 0 3px var(--live-dim), 0 0 10px var(--live);
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lede {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 14px;
}

.fine {
  font-size: 13px;
  color: var(--faint);
}

/* Jumbotron — physical LED cabinet */
.screen {
  position: relative;
  background:
    linear-gradient(180deg, #3a3a3a 0%, #1f1f1f 8%, #141414 100%);
  border: 0;
  border-radius: 3px;
  overflow: hidden;
  min-height: 440px;
  padding: 18px 18px 20px;
  box-shadow:
    0 0 0 1px #4a4a4a,
    inset 0 1px 0 #5a5a5a,
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 100px rgba(255, 255, 255, 0.06);
}

.screen::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 6px;
  height: 6px;
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
  z-index: 5;
}

.screen-bezel {
  position: absolute;
  inset: 16px 16px 40px;
  border: 0;
  box-shadow:
    inset 0 0 0 8px #0a0a0a,
    inset 0 0 0 9px #222,
    inset 0 0 50px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 3;
}

.screen-top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 0;
  font-family: var(--board);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--live);
  box-shadow: 0 0 0 3px var(--live-dim), 0 0 12px var(--live);
  display: inline-block;
  margin-right: 8px;
  vertical-align: -1px;
}

.screen-stage {
  position: relative;
  height: 360px;
  margin: 8px 8px 0;
  display: grid;
  place-items: center;
  background: #000;
  overflow: hidden;
}

.stage-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 1;
}

.stage-live {
  position: absolute;
  inset: -12% -8%;
  width: 116%;
  height: 124%;
  border: 0;
  z-index: 1;
  pointer-events: none;
  background: #000;
}

.screen-stage.is-live .feed-video,
.screen-stage.is-live .crowd,
.screen-stage.is-live .ticker-xl {
  display: none;
}

.screen-stage::before,
.screen-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.screen-stage::before {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 255, 255, 0.07), transparent 58%);
}

.screen-stage::after {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0 1px,
      transparent 1px 4px
    );
  animation: refresh 7s linear infinite;
  mix-blend-mode: screen;
}

@keyframes refresh {
  0% { transform: translateY(0); opacity: 0.85; }
  50% { opacity: 1; }
  100% { transform: translateY(4px); opacity: 0.85; }
}

.crowd {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 78px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92)),
    repeating-linear-gradient(90deg, #141414 0 7px, #0a0a0a 7px 13px);
  opacity: 0.9;
  z-index: 1;
}

.ticker-xl {
  position: relative;
  z-index: 2;
  font-family: var(--board);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.45),
    0 0 60px rgba(255, 255, 255, 0.12);
}

.screen-meta {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 10px 16px 4px;
  font-family: var(--board);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.screen-meta a {
  color: var(--ice);
  border-bottom: 1px solid #444;
}
.screen-meta a:hover { border-bottom-color: var(--ice); }

.cam-tabs {
  display: flex;
  gap: 0;
  margin-top: 10px;
}

.cam-tabs button {
  height: 28px;
  padding: 0 12px;
  background: #111;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  color: var(--faint);
  font-family: var(--board);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cam-tabs button:last-child { border-right: 1px solid var(--line); }
.cam-tabs button.is-on {
  border-color: var(--live);
  color: #fff;
  background: var(--live);
}

/* Tape — broadcast lower-third */
.tape {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  background: #0e0e0e;
  box-shadow: inset 0 2px 0 var(--live);
}

.tape-item {
  padding: 14px 16px 12px;
  text-align: left;
  border-right: 1px solid #222;
}
.tape-item:last-child { border-right: 0; }
.tape-item b {
  display: block;
  font-family: var(--board);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.tape-item span {
  font-family: var(--board);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* Sections */
.section { padding: 56px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.section-head p { color: var(--muted); font-size: 14px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 28px;
  align-items: start;
}

/* Secondary surfaces stay quiet */
.panel {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border: 0;
  font-family: var(--board);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Rotation board — arena ribbon / lower-third */
.grid-2 > .panel:first-child {
  background: #0c0c0c;
  box-shadow: inset 4px 0 0 var(--live);
}
.grid-2 > .panel:first-child .panel-h {
  background: #111;
  color: var(--ice);
  padding-left: 16px;
}

/* Token rows as signage */
.rows { display: flex; flex-direction: column; }
.row {
  display: grid;
  grid-template-columns: 22px 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #1a1a1a;
  font-size: 14px;
}
.row:last-child { border-bottom: 0; }
.row:hover { background: #121212; }
.row strong {
  font-family: var(--board);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.av {
  width: 22px;
  height: 22px;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-family: var(--board);
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.chg.up { color: var(--up); }
.chg.dn { color: var(--live); }

.side-note {
  padding: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: none;
  border: 0;
}
.side-note h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.side-note p { color: var(--muted); font-size: 14px; }

.venue-mini {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.price {
  font-family: var(--board);
  font-weight: 700;
  font-size: 16px;
  color: var(--ice);
}

/* Steps — run of show, not a card stack */
.steps {
  display: grid;
  gap: 0;
  border: 0;
  background: transparent;
  box-shadow: inset 0 1px 0 var(--line);
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n {
  font-family: var(--board);
  font-size: 28px;
  font-weight: 800;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.step p { color: var(--muted); max-width: 62ch; }

/* Ledger — reference, quieter than the board */
.ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ledger .panel {
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.big-n {
  font-family: var(--board);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ice);
}
.bars { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; font-size: 13px; }
.track {
  height: 3px;
  background: #1a1a1a;
  grid-column: 1 / -1;
}
.track > i {
  display: block;
  height: 100%;
  background: var(--ice);
}

.spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 48px;
  margin: 16px 0 8px;
}
.spark i {
  flex: 1;
  background: #222;
  display: block;
}
.spark i.on { background: var(--live); }

/* Page header */
.page-hero { padding: 40px 0 24px; }
.page-hero h1 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 8px 0 10px;
}
.page-hero p { color: var(--muted); max-width: 58ch; }

.filters { display: flex; gap: 0; margin: 8px 0 20px; flex-wrap: wrap; }
.filter {
  height: 30px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-right: 0;
  color: var(--muted);
  border-radius: 0;
  font-size: 12.5px;
  font-weight: 600;
}
.filter:last-child { border-right: 1px solid var(--line); }
.filter.is-on {
  border-color: var(--ice);
  color: #111;
  background: var(--ice);
}

/* Inventory — call sheet, not cards */
.table-wrap {
  overflow-x: auto;
  border: 0;
  box-shadow: inset 0 1px 0 var(--line);
}
table.inv {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: transparent;
}
.inv th {
  text-align: left;
  font-family: var(--board);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 600;
  padding: 12px 12px 10px 0;
  border-bottom: 1px solid var(--line);
}
.inv td {
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid #1a1a1a;
  vertical-align: middle;
}
.inv tr:last-child td { border-bottom: 1px solid var(--line); }
.inv tr:hover td { background: #101010; }
.badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 7px;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--board);
  font-weight: 700;
  background: #1a1a1a;
  color: var(--muted);
}
.badge-live {
  color: #fff;
  background: var(--live);
}
.badge-wait { color: var(--muted); background: #161616; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 24px;
  background: #0e0e0e;
  box-shadow: inset 0 2px 0 #2a2a2a;
}
.stat {
  border: 0;
  border-right: 1px solid #222;
  background: transparent;
  padding: 14px 16px;
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: var(--board);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.stat span {
  color: var(--faint);
  font-size: 12px;
  font-family: var(--board);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Launch */
.launch {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding-bottom: 72px;
}
.form {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
label span req, .req { color: var(--live); font-size: 11px; margin-left: 6px; }
.field, select.field, textarea.field {
  height: 42px;
  padding: 0 12px;
  background: #101010;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  border-radius: 0;
  outline: none;
}
textarea.field { height: 88px; padding: 10px 12px; resize: vertical; }
.field:focus { border-bottom-color: var(--ice); }
.row-2 { display: grid; grid-template-columns: 1fr 140px; gap: 12px; }
.choice {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.choice button {
  height: 34px;
  padding: 0 12px;
  background: transparent;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  color: var(--muted);
  font-size: 13px;
}
.choice button:last-child { border-right: 1px solid var(--line); }
.choice button.is-on {
  border-color: var(--ice);
  color: #111;
  background: var(--ice);
}
.choice button:disabled { opacity: 0.35; cursor: not-allowed; }

.preview {
  padding: 16px;
  background: #0c0c0c;
  box-shadow: 0 0 0 1px #222, 0 20px 40px rgba(0, 0, 0, 0.35);
}
.preview-art {
  aspect-ratio: 16 / 10;
  background: #000;
  border: 0;
  display: grid;
  place-items: center;
  margin: 12px 0 16px;
  overflow: hidden;
  box-shadow: inset 0 0 0 3px #050505;
  position: relative;
}
.preview-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 1px, transparent 1px 4px);
  pointer-events: none;
}
.preview-art img { width: 100%; height: 100%; object-fit: cover; }
.preview-art .ph {
  font-family: var(--board);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.kv { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid #1c1c1c; font-size: 13.5px; }

.art-drop {
  height: 88px;
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  background: #0e0e0e;
  cursor: pointer;
}
.art-drop input { display: none; }

/* Docs */
.docs {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding-bottom: 80px;
}
.toc { position: sticky; top: 88px; align-self: start; }
.toc a {
  display: block;
  padding: 7px 0;
  color: var(--faint);
  font-size: 13.5px;
  border-left: 2px solid var(--line);
  padding-left: 12px;
}
.toc a:hover, .toc a.is-on { color: var(--ice); border-left-color: var(--ice); }
.prose h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0 12px;
  letter-spacing: -0.03em;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 14px; max-width: 68ch; }
.prose ul { color: var(--muted); padding-left: 18px; margin: 0 0 14px; }

/* Flow */
.flow-bar {
  display: grid;
  grid-template-columns: 80fr 15fr 5fr;
  height: 8px;
  background: #1a1a1a;
  border: 0;
  margin: 16px 0 20px;
}
.flow-bar span:nth-child(1) { background: var(--ice); }
.flow-bar span:nth-child(2) { background: #666; }
.flow-bar span:nth-child(3) { background: #333; }
.path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 24px 0 40px;
}
.path article {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 20px 20px 20px 0;
  min-height: 180px;
}
.path article + article { padding-left: 20px; }
.path b {
  display: block;
  font-family: var(--board);
  font-size: 22px;
  font-weight: 800;
  color: var(--faint);
  margin-bottom: 10px;
}
.path h3 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.path p { color: var(--muted); font-size: 13.5px; }

.rates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.rate {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 16px 20px 16px 0;
}
.rate .sym { color: var(--faint); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.rate b {
  display: block;
  font-family: var(--board);
  font-size: 24px;
  font-weight: 800;
  margin-top: 6px;
}

/* Footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
}
.foot-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.foot-cta h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.foot-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 13px;
}
.foot-row nav { display: flex; gap: 16px; }
.foot-row a:hover { color: var(--ice); }

/* Modal */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-bg.is-on { display: flex; }
.modal {
  width: min(380px, 100%);
  background: #111;
  border: 1px solid var(--line-2);
  padding: 22px;
}
.modal h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.wallets { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.wallets button {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-bottom: 0;
  color: var(--ice);
  text-align: left;
}
.wallets button:last-of-type { border-bottom: 1px solid var(--line); }
.wallets button:hover { background: #1a1a1a; }

.toast-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 60;
}
.toast {
  background: #111;
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--live);
  padding: 12px 14px;
  min-width: 240px;
  max-width: 360px;
  font-size: 13.5px;
}

.addr {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--live);
}

.feed-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  z-index: 0;
  pointer-events: none;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}
.explore-card {
  background: #0c0c0c;
  box-shadow: inset 0 1px 0 #222;
  padding: 18px;
}
.explore-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.explore-head strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.explore-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 1100px) {
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .explore-grid { grid-template-columns: 1fr; }
}

.coin-links {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
}
.coin-links a { border-bottom: 1px solid #444; }
.coin-links a:hover { border-bottom-color: var(--ice); color: var(--ice); }

.checkout {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.badge-pending {
  color: #111;
  background: #c8c8c8;
}

.badge-scheduled {
  color: #fff;
  background: #333;
}

.prose code {
  font-family: var(--ui);
  font-size: 0.92em;
  border-bottom: 1px solid var(--line-2);
}

/* Billboard cards — same chassis as venue rows, image on top */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 72px;
}

.board-card {
  background: #0c0c0c;
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 1px 0 #222;
  display: flex;
  flex-direction: column;
}

.board-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-radius: 0;
}
.board-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.board-skel {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #141414 0%, #1d1d1d 46%, #141414 100%);
  background-size: 200% 100%;
  animation: skel 1.2s ease-in-out infinite;
}
.board-photo.is-load .board-skel { display: block; }
.board-photo.is-load img { opacity: 0; }
.board-miss {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  background: #101010;
}
.board-miss span {
  width: 28px;
  height: 18px;
  border: 2px solid #3a3a3a;
  box-shadow: inset 0 -4px 0 #222;
}
.board-photo.is-miss .board-miss { display: grid; }
.board-photo.is-miss img { display: none; }

@keyframes skel {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.board-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.board-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.board-head strong {
  font-family: var(--board);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.board-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #1a1a1a;
}
.board-meta span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13.5px;
}
.board-meta b {
  font-family: var(--board);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.board-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.board-actions .btn { flex: 1; }

.watch-modal { width: min(640px, 100%); }
.watch-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  margin: 14px 0;
  overflow: hidden;
}
.watch-stage .feed-video {
  opacity: 0.85;
  position: relative;
}

@media (max-width: 1100px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .board-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hero, .grid-2, .launch, .docs, .ledger, .path, .rates, .stat-row, .tape {
    grid-template-columns: 1fr;
  }
  .nav-search { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--void);
    border-bottom: 1px solid var(--line);
    padding: 12px;
  }
  .menu-btn { display: grid; place-items: center; }
  .tape-item { border-right: 0; border-bottom: 1px solid #222; }
  .step { grid-template-columns: 48px 1fr; padding: 20px 0; }
  .foot-cta, .foot-row { flex-direction: column; align-items: flex-start; }
  .toc { display: none; }
  .hero { padding-top: 32px; gap: 24px; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .screen { min-height: 320px; }
  .screen-stage { height: 240px; }
  .stat { border-right: 0; border-bottom: 1px solid #222; }
  .path article + article { padding-left: 0; }
}
