/* =========================================================
   SpreadSignals · landing page
   Terminal-noir aesthetic, aligned with ss-web-svelte.
   Monospace base (Geist Mono), Instrument Serif for display,
   monochrome base, green/red reserved for +EV direction.
   ========================================================= */

:root {
  /* Base palette — matches ss-web-svelte */
  --bg-void: #0a0a0c;
  --bg-abyss: #0d0d0f;
  --bg-primary: #111114;
  --bg-secondary: #16161a;
  --bg-tertiary: #1c1c21;
  --bg-elevated: #222228;
  --bg-hover: #26262c;

  --text-max: #ffffff;
  --text-bright: #f0f0f3;
  --text-primary: #d0d0d5;
  --text-secondary: #9a9aa2;
  --text-tertiary: #6a6a72;
  --text-muted: #4a4a52;
  --text-dim: #2a2a30;

  --border-ghost: rgba(255, 255, 255, 0.04);
  --border-dim: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-visible: rgba(255, 255, 255, 0.20);

  /* EV semantic colors — the only real color on the page */
  --ev-up: #6ad47f;
  --ev-up-glow: rgba(106, 212, 127, 0.22);
  --ev-up-bg: rgba(106, 212, 127, 0.07);
  --ev-down: #ff6969;
  --ev-down-glow: rgba(255, 105, 105, 0.22);
  --ev-down-bg: rgba(255, 105, 105, 0.07);

  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-display: "Instrument Serif", "Times New Roman", Georgia, serif;

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

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient radial glow top-left, for atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: -20% -20% auto auto;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(closest-side, rgba(106, 212, 127, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
body::after {
  content: "";
  position: fixed;
  inset: auto auto -30% -25%;
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(closest-side, rgba(70, 90, 180, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ambient fx -------------------------------------------- */
.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.scanlines {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(255,255,255,0.012) 2px 3px
  );
  mix-blend-mode: overlay;
}

main, .nav, .foot, .ticker { position: relative; z-index: 2; }

.nav,
main > section,
.foot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* nav ------------------------------------------------------ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12px;
  color: var(--text-secondary);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 24px;
}

.brand-name {
  font-family: "JetBrains Mono", "SF Mono", "Fira Code", Consolas, monospace;
  font-size: 14px;
  color: var(--text-bright);
  letter-spacing: -0.01em;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.brand-mark {
  color: var(--text-muted);
  font-weight: 500;
}
.brand-v {
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-meta {
  font-variant-numeric: tabular-nums;
  color: var(--text-tertiary);
  font-size: 11.5px;
  padding: 6px 12px;
  border: 1px solid var(--border-ghost);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.015);
}

.nav-cta {
  color: var(--text-bright) !important;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  padding: 7px 14px;
  font-size: 11.5px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-visible);
}
.nav-cta .arrow {
  transition: transform 0.25s var(--ease);
  color: var(--text-tertiary);
}
.nav-cta:hover .arrow {
  transform: translateX(2px);
  color: var(--text-bright);
}

/* hero ----------------------------------------------------- */
.hero {
  padding-top: clamp(48px, 9vw, 104px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--border-ghost);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.015);
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease) both;
}
.hero-eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--ev-up);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--ev-up-glow);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(68px, 13vw, 184px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--text-max);
  margin: 0 0 28px;
  animation: fadeUp 0.9s 0.08s var(--ease) both;
}

.hero-title em {
  font-style: italic;
  color: var(--text-bright);
  letter-spacing: -0.045em;
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--text-max) 0%, #b7bfc3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0 0 40px;
  max-width: 52ch;
  letter-spacing: 0.005em;
  animation: fadeUp 0.9s 0.16s var(--ease) both;
}
.mono-accent {
  color: var(--ev-up);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* waitlist form -------------------------------------------- */
.waitlist {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  max-width: 480px;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: 0;
  transition: border-color 0.25s var(--ease);
  animation: fadeUp 0.9s 0.24s var(--ease) both;
}

.waitlist:focus-within {
  border-bottom-color: var(--text-bright);
}

.waitlist input {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 0;
  color: var(--text-max);
  font-family: var(--font-mono);
  font-size: 13.5px;
}

.waitlist input::placeholder { color: var(--text-muted); }

.waitlist button {
  border: 0;
  background: transparent;
  color: var(--text-bright);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 0 4px 0 18px;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s var(--ease), transform 0.15s var(--ease);
}

.waitlist button:hover { color: var(--text-max); }
.waitlist button:active { transform: scale(0.98); }
.waitlist button:disabled { opacity: 0.6; cursor: default; }
.waitlist button .arrow {
  transition: transform 0.25s var(--ease);
  color: var(--text-tertiary);
}
.waitlist button:hover .arrow {
  transform: translateX(3px);
  color: var(--text-max);
}

.waitlist-msg {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  font-size: 11px;
  color: var(--text-secondary);
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.waitlist-msg.show { padding: 8px 0 0; max-height: 40px; }
.waitlist-msg.error { color: var(--ev-down); }

/* live odds board ------------------------------------------ */
.board {
  margin-top: 72px;
  border: 1px solid var(--border-dim);
  background: var(--bg-primary);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: fadeUp 0.9s 0.36s var(--ease) both;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.03) inset,
    0 30px 60px -30px rgba(0,0,0,0.6);
}

.board-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-dim);
  background: var(--bg-abyss);
  gap: 16px;
}

.board-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-bright);
}

.board-title {
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: none;
  font-size: 11px;
  flex: 1;
  text-align: center;
}

.live-dot {
  width: 6px; height: 6px;
  background: var(--ev-up);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ev-up-glow);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(106, 212, 127, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(106, 212, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 212, 127, 0); }
}

.board-meta {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

/* table */
.board-scroll {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-subtle) transparent;
}
.board-scroll::-webkit-scrollbar { height: 8px; }
.board-scroll::-webkit-scrollbar-track { background: transparent; }
.board-scroll::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 4px;
}

.board-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
}

.board-table thead th {
  text-align: left;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 10px 10px;
  border-bottom: 1px solid var(--border-ghost);
  background: transparent;
  white-space: nowrap;
}
.board-table thead th:first-child { padding-left: 18px; }
.board-table thead th:last-child { padding-right: 18px; }

/* right-aligned numeric columns */
.board-table thead th.c-line,
.board-table thead th.c-fair,
.board-table thead th.c-price,
.board-table thead th.c-ev,
.board-table thead th.c-kelly,
.board-table thead th.c-vig { text-align: right; }

.board-table tbody tr {
  border-bottom: 1px solid var(--border-ghost);
  transition: background 0.2s var(--ease);
}
.board-table tbody tr:last-child { border-bottom: 0; }
.board-table tbody tr:hover { background: var(--bg-secondary); }

.board-table tbody td {
  padding: 10px 10px;
  color: var(--text-primary);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.board-table tbody td:first-child { padding-left: 18px; }
.board-table tbody td:last-child { padding-right: 18px; }

.board-table .c-line,
.board-table .c-fair,
.board-table .c-price,
.board-table .c-ev,
.board-table .c-kelly,
.board-table .c-vig { text-align: right; }

/* column-specific widths (hints — table will grow in scroll container) */
.board-table .c-age    { width: 52px;  color: var(--text-tertiary); font-size: 10.5px; }
.board-table .c-spt {
  width: 44px;
  color: var(--text-muted);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.board-table .c-status { width: 50px; }
.board-table .c-matchup {
  color: var(--text-bright);
  min-width: 180px;
}
.board-table .c-matchup .at {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  margin: 0 4px;
  font-size: 13px;
}
.board-table .c-pick {
  width: 80px;
  color: var(--text-primary);
}
.board-table .c-line   { width: 52px; color: var(--text-secondary); }
.board-table .c-mkt-t  {
  width: 52px;
  color: var(--text-tertiary);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.board-table .c-fair   { width: 54px; color: var(--text-muted); }
.board-table .c-soft {
  width: 78px;
  color: var(--text-secondary);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.board-table .c-price {
  width: 64px;
  color: var(--text-max);
  font-weight: 500;
}
.board-table .c-ev     { width: 64px; font-weight: 600; }
.board-table .c-kelly  { width: 56px; color: var(--text-secondary); }
.board-table .c-vig    { width: 48px; color: var(--text-muted); font-size: 10.5px; }
.board-table .c-books {
  min-width: 110px;
  color: var(--text-tertiary);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-table .c-ev.up   { color: var(--ev-up); }
.board-table .c-ev.down { color: var(--ev-down); }

/* status cell variants */
.status-pre {
  color: var(--text-tertiary);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.status-live {
  color: var(--ev-up);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* cell flash on update */
.flash-up {
  animation: flashUp 0.9s var(--ease);
}
.flash-down {
  animation: flashDown 0.9s var(--ease);
}
@keyframes flashUp {
  0%   { background: var(--ev-up-bg); }
  100% { background: transparent; }
}
@keyframes flashDown {
  0%   { background: var(--ev-down-bg); }
  100% { background: transparent; }
}

/* row enter animation */
.row-enter {
  animation: rowEnter 0.4s var(--ease);
}
@keyframes rowEnter {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ticker --------------------------------------------------- */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border-ghost);
  border-bottom: 1px solid var(--border-ghost);
  background: var(--bg-abyss);
  margin-top: clamp(40px, 6vw, 72px);
  mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 5%, black 95%, transparent 100%);
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  padding: 12px 0;
  animation: tickerScroll 60s linear infinite;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}
.ticker-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.ticker-sport {
  color: var(--text-muted);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker-sep {
  color: var(--text-muted);
  opacity: 0.4;
}
.ticker-ev.up { color: var(--ev-up); }
.ticker-ev.down { color: var(--ev-down); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* section kickers ----------------------------------------- */
.section-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text-bright);
}
.section-name::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.5;
}

/* showcase ------------------------------------------------- */
.showcase {
  padding-top: clamp(56px, 9vw, 112px);
  padding-bottom: clamp(56px, 9vw, 112px);
}

.card-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-primary);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.opp-card {
  padding: 28px 30px;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-right: 1px solid var(--border-dim);
  position: relative;
}
/* corner bracket decoration */
.opp-card::before,
.opp-card::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--border-subtle);
  border-style: solid;
}
.opp-card::before {
  top: 10px; left: 10px;
  border-width: 1px 0 0 1px;
}
.opp-card::after {
  bottom: 10px; right: 10px;
  border-width: 0 1px 1px 0;
}

.opp-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opp-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ev-up);
  background: var(--ev-up-bg);
  border: 1px solid rgba(106, 212, 127, 0.35);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  position: relative;
  box-shadow: 0 0 20px var(--ev-up-glow);
}

.opp-roi { font-variant-numeric: tabular-nums; }
.opp-roi span {
  color: var(--ev-up);
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font-mono);
}

.opp-event {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--text-max);
}
.opp-vs {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.7em;
  margin: 0 6px;
  font-family: var(--font-display);
}
.opp-mkt {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.opp-legs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-ghost);
  border-bottom: 1px solid var(--border-ghost);
}

.opp-leg {
  padding: 16px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
}
.opp-leg + .opp-leg {
  border-left: 1px solid var(--border-ghost);
  padding-left: 18px;
}
.opp-leg:first-child { padding-right: 18px; }

.leg-book {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.14em;
}
.leg-odds {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-max);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.leg-stake {
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.opp-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.foot-k {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9.5px;
  margin-right: 6px;
}
.opp-countdown.warn {
  color: var(--ev-down);
  animation: countdownPulse 1s ease-in-out infinite;
}
.opp-countdown.warn .foot-k { color: var(--ev-down); opacity: 0.7; }
@keyframes countdownPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

/* chart side */
.opp-chart {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  background: var(--bg-abyss);
  position: relative;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.chart-head span:last-child {
  color: var(--ev-up);
  text-transform: none;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.chart-foot {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}

#edge-chart { width: 100%; height: 200px; display: block; flex: 1; }

/* capability strip ---------------------------------------- */
.capability-section,
.numbers-section {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.capability {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-dim);
  border-radius: var(--r-lg);
  background: var(--bg-primary);
  overflow: hidden;
}
.cap {
  padding: 28px clamp(18px, 2vw, 26px);
  border-left: 1px solid var(--border-ghost);
  transition: background 0.25s var(--ease);
}
.cap:first-child { border-left: 0; }
.cap:hover { background: var(--bg-secondary); }
.cap-k {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cap-v {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--text-bright);
  line-height: 1.5;
  letter-spacing: 0;
}

/* numbers -------------------------------------------------- */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-ghost);
  border-bottom: 1px solid var(--border-ghost);
  padding: 48px 0;
}
.numbers .num {
  padding: 0 clamp(18px, 2vw, 28px);
  border-left: 1px solid var(--border-ghost);
  position: relative;
}
.numbers .num:first-child { border-left: 0; padding-left: clamp(20px, 4vw, 40px); }

.num-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 6.4vw, 92px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-max);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.num-suffix {
  font-size: 0.42em;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-style: normal;
  letter-spacing: 0;
  margin-left: 4px;
  font-weight: 500;
}

.num-label {
  font-size: 10.5px;
  color: var(--text-muted);
  margin-top: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* footer --------------------------------------------------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--border-ghost);
  font-size: 11px;
  color: var(--text-muted);
  gap: 24px;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}

.foot-l {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
}

.foot-l img {
  display: block;
  filter: grayscale(0.5) brightness(0.9);
}

.foot-sep { color: var(--text-muted); opacity: 0.5; }
.foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-tertiary);
  font-size: 13px;
  letter-spacing: -0.005em;
}

.foot-r {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.foot-meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ev-up);
  display: inline-block;
  box-shadow: 0 0 6px var(--ev-up-glow);
  animation: pulse 2.4s ease-out infinite;
}

.foot-meta.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
}

/* motion --------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* responsive ---------------------------------------------- */
@media (max-width: 900px) {
  .nav-meta { display: none; }
  .board-title { display: none; }
  .card-row { grid-template-columns: 1fr; }
  .opp-card { border-right: 0; border-bottom: 1px solid var(--border-dim); }
  .capability { grid-template-columns: 1fr 1fr; }
  .cap:nth-child(-n+2) { border-top: 0; }
  .cap:nth-child(n+3) { border-top: 1px solid var(--border-ghost); }
  .cap:nth-child(odd) { border-left: 0; }
  .numbers { grid-template-columns: 1fr 1fr; gap: 32px 0; padding: 32px 0; }
  .numbers .num { padding: 0 clamp(20px, 4vw, 40px) !important; border-left: 0; }
  .numbers .num:nth-child(2n) { border-left: 1px solid var(--border-ghost); }
  .board-table .c-vig,
  .board-table .c-books { display: none; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 64px; }
  .opp-legs { grid-template-columns: 1fr; }
  .opp-leg + .opp-leg {
    border-left: 0;
    border-top: 1px solid var(--border-ghost);
    padding-left: 0;
    padding-top: 16px;
  }
  .opp-leg:first-child { padding-right: 0; }
  .foot { flex-direction: column; align-items: flex-start; }
  .board-table .c-kelly,
  .board-table .c-fair,
  .board-table .c-soft { display: none; }
  .opp-event { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .ticker-track { animation: none; }
}
