:root {
  color-scheme: light;
  --ink: #101417;
  --muted: #5a646d;
  --line: #d9dee3;
  --paper: #f7f8f7;
  --panel: #ffffff;
  --wash: #edf1f2;
  --accent: #0b6f5f;
  --accent-strong: #064f44;
  --dark: #171b1c;
  --dark-muted: #9fb3b8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(247, 248, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 78svh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 27, 28, 0.58);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 112px);
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee0cb;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lede {
  max-width: 620px;
  color: #d7e1e4;
  font-size: 22px;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.live-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(142, 224, 203, 0.44);
  border-radius: 6px;
  background: rgba(16, 25, 31, 0.78);
  color: #d7e1e4;
  font-size: 14px;
  font-weight: 800;
}

.live-label {
  color: #8ee0cb;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8ee0cb;
  box-shadow: 0 0 0 0 rgba(142, 224, 203, 0.55);
  animation: live-pulse 2s ease-out infinite;
}

.live-strip[data-market-health="connecting"] .live-dot,
.live-strip[data-market-health="refreshing"] .live-dot {
  background: #f0f4c3;
}

.live-strip[data-market-health="delayed"] {
  border-color: rgba(232, 173, 63, 0.58);
}

.live-strip[data-market-health="delayed"] .live-dot {
  background: #e8ad3f;
  box-shadow: none;
  animation: none;
}

.live-strip[data-market-health="delayed"] .live-label {
  color: #ffd889;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 780px;
  margin-top: 18px;
  border-top: 1px solid rgba(215, 225, 228, 0.28);
  border-bottom: 1px solid rgba(215, 225, 228, 0.28);
}

.hero-metrics > div {
  min-width: 0;
  padding: 14px 18px 14px 0;
}

.hero-metrics > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(215, 225, 228, 0.28);
}

.hero-metrics output {
  display: block;
  min-height: 34px;
  color: #f0f4c3;
  font-size: 28px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
  opacity: 0.7;
}

.hero-metrics output[data-loaded="true"] {
  animation: metric-in 220ms ease-out both;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: #bdc9cc;
  font-size: 12px;
  line-height: 1.35;
}

.hero-metrics-source {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  max-width: 780px;
  margin: 10px 0 0;
  color: #9fb3b8;
  font-size: 12px;
  line-height: 1.45;
}

.hero-metrics-source time {
  color: #d7e1e4;
}

.hero-metrics-source a {
  color: #8ee0cb;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-strong);
}

.secondary {
  background: transparent;
}

.band,
.cta {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 96px);
}

.compact {
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(40px, 6vw, 76px);
}

.muted {
  background: var(--wash);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.2fr);
  gap: clamp(28px, 8vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
}

.inventory-head {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, auto);
  gap: 32px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.inventory-summary {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.inventory-summary a {
  color: var(--accent-strong);
  font-weight: 800;
}

.home-bounty-feed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.home-bounty-row {
  display: flex;
  flex-direction: column;
}

.home-bounty-row .actions {
  margin-top: auto;
  padding-top: 16px;
}

.opportunity-board {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.opportunity-board.market-update {
  animation: market-update 360ms ease-out;
}

.opportunity-section {
  display: grid;
  gap: 14px;
}

.opportunity-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.opportunity-section-head h3,
.opportunity-section-head p {
  margin: 0;
}

.opportunity-count {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--accent-strong);
  font-weight: 800;
}

.opportunity-state {
  width: fit-content;
  margin-bottom: 4px;
  padding: 5px 8px;
  border-radius: 4px;
  background: rgba(16, 20, 23, 0.07);
}

.opportunity-state-none {
  color: #5f4a00 !important;
  background: #fff4c2;
}

.opportunity-state-seeking_funding {
  color: #754800 !important;
  background: #ffe7bd;
}

.opportunity-state-escrowed {
  color: var(--accent-strong) !important;
  background: #dff7ee;
}

.opportunity-state-paid {
  color: #31523f !important;
  background: #e1efe5;
}

.opportunity-method {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.opportunity-empty {
  margin: 0;
  padding: 20px;
  background: var(--panel);
}

.bounty-disclosure,
.inventory-note {
  color: #754800;
  line-height: 1.6;
}

.bounty-disclosure {
  padding-left: 12px;
  border-left: 3px solid #a36400;
  font-size: 14px;
}

.inventory-note {
  max-width: 1180px;
  margin: 20px auto 0;
  font-size: 14px;
}

.leaderboard-section {
  scroll-margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.leaderboard-head,
.leaderboard-grid,
.leaderboard-rules,
.leaderboard-section > .actions {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.leaderboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.leaderboard-head > p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  text-align: right;
}

.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 72px);
}

.leaderboard-grid > section {
  min-width: 0;
}

.leaderboard-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.leaderboard-label h3,
.leaderboard-label time {
  margin: 0;
}

.leaderboard-label time {
  color: var(--muted);
  font-size: 13px;
}

.leaderboard-table {
  min-height: 196px;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 72px 84px;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.leaderboard-row > :nth-child(n + 3) {
  text-align: right;
}

.leaderboard-row[data-leader="true"] {
  color: var(--accent-strong);
  font-weight: 800;
}

.leaderboard-columns {
  min-height: 38px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.leaderboard-row code {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-empty {
  padding: 24px 0;
  color: var(--muted);
}

.leaderboard-rules {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.copy,
.steps {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.copy p:last-child,
.steps li:last-child {
  margin-bottom: 0;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.process > div {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
}

.process p {
  color: var(--muted);
  line-height: 1.6;
}

.step {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  background: var(--dark);
  color: white;
}

.cta p {
  max-width: 760px;
  color: var(--dark-muted);
  line-height: 1.6;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer a {
  font-weight: 700;
  text-decoration: none;
}

.page,
.policy {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 96px) 20px;
}

.page-head,
.policy {
  max-width: 880px;
}

.button:disabled,
.button:disabled:hover {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.protocol-page {
  max-width: none;
  padding: 0;
}

.protocol-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  padding: 72px 20px 48px;
  margin: 0 auto;
}

.protocol-head > div {
  max-width: 780px;
}

.protocol-status {
  flex: 0 0 auto;
  min-width: 190px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--muted);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.protocol-status[data-tone="success"] {
  border-left-color: var(--accent);
  color: var(--accent-strong);
}

.protocol-status[data-tone="pending"] {
  border-left-color: #a36400;
  color: #754800;
}

.page-head h1,
.policy h1 {
  font-size: 64px;
  line-height: 0.95;
}

.page-head p,
.policy p,
.policy li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.policy h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 28px;
}

.funding-form {
  display: grid;
  gap: 16px;
}

.protocol-workspace {
  padding-top: 0;
}

.protocol-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px 72px;
}

.narrow-form {
  max-width: 680px;
}

.form-section {
  display: grid;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.form-section:last-of-type {
  border-bottom: 1px solid var(--line);
}

.form-section .eyebrow {
  margin-bottom: 0;
}

.advanced {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.advanced summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.advanced[open] summary {
  margin-bottom: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
  line-height: 1.5;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 14px;
}

.form-row.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-line input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
}

.verifier-warning {
  padding: 14px;
  border-left: 3px solid #a36400;
  background: #fff4c2;
  color: #5f4200;
  line-height: 1.5;
}

.legal-consent {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #b9c7c5;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: #f3f7f6;
}

.legal-consent-heading {
  display: grid;
  gap: 5px;
}

.legal-consent-heading h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
}

.legal-consent-step {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.legal-consent-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  margin: 0;
  padding-left: 20px;
  color: #344148;
  font-size: 14px;
  line-height: 1.5;
}

.legal-consent-check {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #cbd6d4;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.legal-consent-check input {
  width: 22px;
  min-height: 22px;
  margin: 1px 0 0;
}

.legal-consent-note,
.legal-consent-status {
  margin: 0;
}

.legal-consent-status[data-tone="error"] {
  color: #9f2727;
  font-weight: 800;
}

.legal-consent-status[data-tone="success"] {
  color: var(--accent-strong);
  font-weight: 800;
}

.sticky-actions {
  position: static;
  margin-top: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.wallet-picker {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
}

.readiness-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--wash);
}

.readiness-panel h3 {
  margin-bottom: 6px;
}

.readiness-panel .button {
  justify-self: start;
}

.fine {
  color: var(--muted);
  line-height: 1.7;
}

.policy-summary {
  margin: 28px 0 38px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: var(--wash);
}

.policy-summary h2 {
  font-size: 28px;
}

.policy-summary li,
.policy li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.output {
  min-height: 44px;
  padding: 12px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  line-height: 1.5;
  white-space: pre-wrap;
}

.output[data-tone="success"] {
  border-left-color: var(--accent);
  color: var(--accent-strong);
}

.output[data-tone="pending"] {
  border-left-color: #a36400;
  color: #754800;
}

.output[data-tone="error"] {
  border-left-color: #b42318;
  color: #8d1b13;
}

.compact-output {
  margin-top: 16px;
  font-size: 14px;
}

.feed-layout {
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
}

.bounty-feed {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.bounty-row {
  min-width: 0;
  padding: 22px;
  background: var(--panel);
}

.bounty-row h3,
.bounty-row p {
  overflow-wrap: anywhere;
}

.bounty-row > p:nth-of-type(1) {
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 800;
}

.endpoint-list p {
  margin-bottom: 10px;
}

.readiness-output {
  max-height: 260px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.62);
}

.recovery-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.recovery-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 16px;
  background: var(--panel);
}

.recovery-row div {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.recovery-row code {
  width: fit-content;
}

.recovery-row output {
  color: var(--muted);
  text-align: right;
}

.recovery-row[data-state="ready"] output {
  color: #754800;
}

.recovery-row[data-state="recovered"] output {
  color: var(--accent-strong);
}

.recovery-row[data-state="error"] output {
  color: #8d1b13;
}

.prefill-output {
  background: rgba(255, 255, 255, 0.62);
}

code {
  padding: 0.1em 0.3em;
  border-radius: 4px;
  background: rgba(16, 20, 23, 0.08);
  overflow-wrap: anywhere;
}

.prompt-block {
  margin: 0 0 18px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  overflow: auto;
  white-space: pre-wrap;
}

.prompt-block code {
  padding: 0;
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: enter 640ms ease forwards;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metric-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(142, 224, 203, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 224, 203, 0);
  }
}

@keyframes market-update {
  from {
    opacity: 0.72;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: min(600px, calc(100svh - 96px));
  }

  .hero-copy {
    margin-left: 20px;
    padding: 48px 0;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 38px;
  }

  .page-head h1,
  .policy h1 {
    font-size: 52px;
  }

  .protocol-head {
    display: grid;
    padding-top: 48px;
  }

  .protocol-status {
    min-width: 0;
    width: 100%;
  }

  .section-grid,
  .process,
  .cta,
  .form-row,
  .form-row.three,
  .feed-layout,
  .inventory-head,
  .home-bounty-feed {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(215, 225, 228, 0.28);
  }

  .hero-metrics > div:nth-child(4) {
    border-top: 1px solid rgba(215, 225, 228, 0.28);
  }

  .legal-consent-points {
    grid-template-columns: 1fr;
  }

  .inventory-summary {
    justify-items: start;
    text-align: left;
  }

  .leaderboard-head {
    display: grid;
  }

  .leaderboard-head > p {
    max-width: none;
    text-align: left;
  }

  .leaderboard-grid {
    grid-template-columns: 1fr;
  }

  .recovery-row {
    grid-template-columns: 1fr;
  }

  .recovery-row output {
    text-align: left;
  }

  .cta {
    display: grid;
  }

  .process > div {
    min-height: auto;
  }

  .readiness-output {
    max-height: none;
  }

  .sticky-actions {
    position: static;
  }
}

.analytics-consent {
  position: fixed;
  z-index: 30;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(11, 27, 31, 0.2);
}

.analytics-consent p {
  max-width: 620px;
  margin: 0;
}

.analytics-consent .actions {
  flex: 0 0 auto;
}

@media (max-width: 700px) {
  .analytics-consent {
    display: grid;
  }
}

@media (max-width: 480px) {
  .hero-copy {
    padding: 28px 0 24px;
  }

  .hero .eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 12px;
  }

  .hero .lede {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.4;
  }

  .hero .actions {
    margin-top: 18px;
  }

  .hero .live-strip {
    margin-top: 16px;
    padding: 10px 12px;
  }

  .hero-metrics {
    margin-top: 12px;
  }

  .hero-metrics > div,
  .hero-metrics > div + div {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-metrics-source {
    margin-top: 7px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  .page-head h1,
  .policy h1 {
    font-size: 44px;
  }

  .button {
    width: 100%;
  }

  .leaderboard-row {
    grid-template-columns: 42px minmax(0, 1fr) 58px 68px;
    gap: 8px;
    font-size: 13px;
  }
}
