:root {
  --bg: #0b0c0d;
  --panel: #111315;
  --panel-soft: #15181a;
  --line: #282c2f;

  --text: #f2f2ef;
  --muted: #92999d;
  --soft: #c3c7c9;

  --accent: #d7ff5f;

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

/* =========================
   TOP BAR
   ========================= */

.topbar {
  min-height: 82px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;

  align-items: center;

  border-bottom: 1px solid var(--line);
}

.wordmark {
  text-decoration: none;

  font-size: 14px;
  font-weight: 850;

  letter-spacing: 0.2em;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--muted);

  text-decoration: none;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.13em;

  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.live-indicator {
  justify-self: end;

  display: flex;
  align-items: center;

  gap: 8px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.14em;
}

.live-dot {
  width: 6px;
  height: 6px;

  border-radius: 999px;

  background: var(--accent);

  box-shadow:
    0 0 12px rgba(215, 255, 95, 0.55);
}

/* =========================
   HERO
   ========================= */

.hero {
  min-height: calc(100vh - 82px);

  padding: 80px 0 80px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 20px;

  color: var(--accent);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.16em;
}

h1 {
  margin: 0;

  font-size: clamp(68px, 14vw, 174px);

  line-height: 0.83;

  letter-spacing: -0.07em;

  font-weight: 800;
}

.question {
  margin: 30px 0 0;

  font-size: clamp(26px, 4vw, 52px);

  letter-spacing: -0.04em;

  color: var(--soft);
}

.tagline {
  margin: 12px 0 0;

  color: var(--muted);

  font-size: 17px;
}

.hero-description {
  max-width: 620px;

  margin: 28px 0 0;

  color: var(--muted);

  line-height: 1.7;

  font-size: 15px;
}

/* =========================
   PROGRESS
   ========================= */

.progress-block {
  margin-top: 64px;

  max-width: 760px;
}

.progress-head {
  display: flex;

  justify-content: space-between;
  align-items: baseline;

  margin-bottom: 12px;
}

.progress-head strong {
  font-size: 24px;

  letter-spacing: -0.03em;

  font-variant-numeric: tabular-nums;
}

.progress-head span {
  color: var(--muted);

  font-variant-numeric: tabular-nums;
}

.progress-track {
  width: 100%;
  height: 7px;

  overflow: hidden;

  background: var(--line);
}

.progress-fill {
  width: 0%;
  height: 100%;

  background: var(--accent);

  transition: width 500ms ease;
}

.conclusion {
  margin: 18px 0 0;

  color: var(--muted);

  font-size: 14px;
}

/* =========================
   METRICS
   ========================= */

.metrics {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 150px;

  padding: 36px 24px 34px 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--line);
}

.metric:nth-child(3n) {
  padding-left: 24px;

  border-right: 0;
}

.metric:nth-child(3n + 2) {
  padding-left: 24px;
}

.metric:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.metric-value {
  font-size: clamp(28px, 4vw, 46px);

  font-weight: 650;

  letter-spacing: -0.045em;

  font-variant-numeric: tabular-nums;
}

.metric-label {
  margin-top: 22px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.15em;
}

/* =========================
   GENERIC SECTIONS
   ========================= */

.section {
  padding: 100px 0;

  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;

  gap: 18px;

  margin-bottom: 52px;
}

.section-number,
.method-number {
  color: var(--accent);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.12em;
}

h2 {
  margin: 0;

  font-size: clamp(38px, 6vw, 68px);

  letter-spacing: -0.05em;

  line-height: 0.98;
}

/* =========================
   METHOD
   ========================= */

.method-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1px;

  background: var(--line);

  border: 1px solid var(--line);
}

.method-grid article {
  min-height: 230px;

  padding: 34px;

  background: var(--panel);
}

.method-grid h3 {
  margin: 44px 0 10px;

  font-size: 22px;

  letter-spacing: -0.025em;
}

.method-grid p {
  max-width: 500px;

  margin: 0;

  color: var(--muted);

  line-height: 1.65;
}

/* =========================
   BETS
   ========================= */

.empty-state {
  max-width: 620px;

  padding: 60px 0 30px;
}

.empty-index {
  display: inline-block;

  margin-bottom: 25px;

  color: var(--muted);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}

.empty-state h3 {
  margin: 0 0 12px;

  font-size: clamp(27px, 4vw, 42px);

  letter-spacing: -0.035em;
}

.empty-state p {
  color: var(--muted);

  line-height: 1.7;
}

.bet-card {
  padding: 32px 0;

  border-top: 1px solid var(--line);
}

.bet-card:last-child {
  border-bottom: 1px solid var(--line);
}

.bet-card-head {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  margin-bottom: 25px;
}

.bet-index {
  color: var(--muted);

  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}

.bet-status {
  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.1em;
}

.bet-body {
  display: grid;

  grid-template-columns: 1.4fr 1fr;

  gap: 40px;
}

.bet-title {
  margin: 0;

  font-size: 28px;

  letter-spacing: -0.035em;
}

.bet-selection {
  margin: 9px 0 0;

  color: var(--accent);
}

.bet-fields {
  display: grid;

  gap: 10px;
}

.bet-field {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  color: var(--muted);

  font-size: 14px;
}

.bet-field strong {
  color: var(--text);

  font-weight: 500;

  font-variant-numeric: tabular-nums;
}

/* =========================
   PROOF
   ========================= */

.proof-section {
  padding: 100px 0;

  border-bottom: 1px solid var(--line);
}

.proof-heading {
  display: grid;

  grid-template-columns: 50px 1fr;

  gap: 18px;

  margin-bottom: 65px;
}

.proof-heading h2 {
  max-width: 850px;
}

.proof-heading p {
  max-width: 650px;

  margin: 24px 0 0;

  color: var(--muted);

  line-height: 1.7;
}

.proof-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border: 1px solid var(--line);
}

.proof-grid article {
  min-height: 250px;

  padding: 30px;

  background: var(--panel);

  border-right: 1px solid var(--line);

  display: flex;
  flex-direction: column;
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-label {
  color: var(--accent);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.13em;
}

.proof-grid strong {
  margin-top: auto;

  font-size: 27px;

  letter-spacing: -0.035em;
}

.proof-grid p {
  margin: 12px 0 0;

  color: var(--muted);

  line-height: 1.6;

  font-size: 14px;
}

/* =========================
   FOOTER
   ========================= */

.footer {
  padding: 38px 0 50px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px 40px;

  color: var(--muted);

  font-size: 12px;
}

.footer > div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}

.footer-label {
  color: var(--soft);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.14em;
}

.footer code {
  color: var(--muted);

  overflow-wrap: anywhere;
}

.footer-disclaimer {
  grid-column: 1 / -1;

  margin-top: 15px;

  padding-top: 25px;

  border-top: 1px solid var(--line);
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 720px) {
  .page {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    min-height: 68px;

    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 68px);

    padding: 60px 0 65px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .tagline {
    font-size: 15px;
  }

  .hero-description {
    font-size: 14px;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric,
  .metric:nth-child(3n),
  .metric:nth-child(3n + 2) {
    min-height: 125px;

    padding: 28px 18px;

    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .metric:nth-child(odd) {
    padding-left: 0;
  }

  .metric:nth-child(even) {
    border-right: 0;
  }

  .section {
    padding: 65px 0;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: auto;
  }

  .bet-body {
    grid-template-columns: 1fr;
  }

  .proof-section {
    padding: 65px 0;
  }

  .proof-heading {
    grid-template-columns: 32px 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 190px;

    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}