@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b0d10;
  --paper: #faf8f5;
  --paper-deep: #f2ede4;
  --emerald: #0d9668;
  --emerald-deep: #076849;
  --red: #c1272d;
  --muted: #6b6f76;
  --line: #dcd5c7;
  --hairline: rgba(11, 13, 16, 0.11);
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", monospace;
  --display: "Space Grotesk", "Arial Narrow", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% -10%, rgba(13, 150, 104, 0.12), transparent 25rem),
    linear-gradient(180deg, var(--paper), #f7f3ec);
  font-family: var(--display);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--emerald); color: white; }

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(11, 13, 16, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 13, 16, 0.035) 1px, transparent 1px),
    radial-gradient(circle, rgba(11, 13, 16, 0.055) 0.75px, transparent 0.75px);
  background-size: 64px 64px, 64px 64px, 20px 20px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.site-header,
.site-footer,
main { width: min(1480px, calc(100% - 64px)); margin-inline: auto; }
.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}
.wordmark {
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.07em;
}
.wordmark > span { color: var(--emerald); }
.wordmark b {
  margin-left: 10px;
  color: var(--muted);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.header-meta i {
  width: 7px;
  height: 7px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(13, 150, 104, 0.12);
}

.mono-label,
.chapter-line,
.hero-index,
.batch-strip p,
.pool-total p,
.rail-stop p,
.site-footer,
.status-dot {
  font-family: var(--mono);
  letter-spacing: 0.085em;
  text-transform: uppercase;
}
.mono-label { margin: 0; color: var(--emerald-deep); font-size: 11px; font-weight: 700; }

.reward-hero {
  position: relative;
  min-height: 760px;
  padding: 68px 0 0;
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(40px, 7vw, 116px);
}
.hero-index {
  grid-column: 1 / -1;
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 10px;
}
.hero-index span:first-child { color: var(--ink); font-weight: 700; }
.hero-copy { align-self: center; padding: 32px 0 76px; }
.hero-copy h1,
.archive-hero h1 {
  max-width: 970px;
  margin: 22px 0 28px;
  font-size: clamp(64px, 7.5vw, 124px);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.hero-lead,
.archive-lead {
  max-width: 670px;
  margin: 0;
  color: #35383d;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.status-stamp {
  position: absolute;
  right: 0;
  top: 54px;
  width: 170px;
  min-height: 112px;
  padding: 17px 20px;
  border: 3px solid currentColor;
  color: var(--red);
  text-transform: uppercase;
  transform: rotate(4deg);
  display: grid;
  align-content: center;
  justify-items: center;
  isolation: isolate;
}
.status-stamp::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px dashed currentColor;
  opacity: 0.55;
}
.status-stamp small,
.status-stamp span { font: 700 9px/1.4 var(--mono); letter-spacing: 0.12em; }
.status-stamp strong { margin: 2px 0; font-size: 26px; line-height: 1; letter-spacing: 0.08em; }
.status-complete { color: var(--emerald-deep); }

.hero-totals {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr 138px;
  align-items: center;
  gap: 30px;
  padding: 42px 0 84px;
}
.pool-total { display: grid; grid-template-columns: auto 1fr; align-items: end; }
.metric-number { font-size: clamp(100px, 11vw, 168px); line-height: 0.74; letter-spacing: -0.1em; font-weight: 600; }
.metric-unit { padding: 0 0 8px 16px; color: var(--emerald-deep); font: 700 18px/1 var(--mono); letter-spacing: 0.05em; }
.pool-total p { grid-column: 1 / -1; margin: 26px 0 0; color: var(--muted); font-size: 10px; }
.allocation-ring {
  width: 138px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--emerald) calc(var(--allocation) * 1%), var(--line) 0);
  transform: rotate(-24deg);
  position: relative;
}
.allocation-ring::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--paper); }
.allocation-ring > div { z-index: 1; transform: rotate(24deg); text-align: center; }
.allocation-ring strong { display: block; font-size: 30px; letter-spacing: -0.06em; }
.allocation-ring span { display: block; margin-top: 3px; color: var(--muted); font: 600 8px/1.3 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.batch-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}
.batch-strip > div { padding: 26px 30px 28px 0; border-right: 1px solid var(--line); }
.batch-strip > div + div { padding-left: 30px; }
.batch-strip > div:last-child { border-right: 0; }
.batch-strip span { font-size: clamp(32px, 3vw, 48px); line-height: 1; font-weight: 600; letter-spacing: -0.06em; }
.batch-strip p { margin: 10px 0 0; color: var(--muted); font-size: 9px; line-height: 1.4; }

.proof-section,
.ecosystem,
.method-section,
.archive-list { padding: 112px 0; border-bottom: 1px solid var(--ink); }
.chapter-line { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 20px; color: var(--muted); font-size: 10px; }
.chapter-line::after { content: ""; height: 1px; background: var(--ink); grid-column: 2; grid-row: 1; margin-left: 190px; opacity: 0.24; }
.chapter-line p { grid-column: 2; grid-row: 1; margin: 0; width: fit-content; background: var(--paper); padding-right: 18px; z-index: 1; }
.chapter-line span { color: var(--emerald-deep); font-weight: 700; }
.proof-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin: 72px 0 54px;
}
.proof-heading h2,
.method-grid h2 {
  margin: 16px 0 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}
.proof-heading h2 em,
.method-grid h2 em,
.archive-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.035em;
  color: var(--emerald-deep);
}
.proof-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.verified-time { display: block; margin-top: 18px; color: var(--emerald-deep); font: 700 9px/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.snapshot-frame {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: rgba(250, 248, 245, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(11, 13, 16, 0.06);
}
.brand-frame::before,
.brand-frame::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid var(--emerald);
  pointer-events: none;
}
.brand-frame::before { top: -7px; left: -7px; border-right: 0; border-bottom: 0; }
.brand-frame::after { right: -7px; bottom: -7px; border-top: 0; border-left: 0; }
.snapshot-primary { padding: 58px; border-right: 1px solid var(--line); }
.snapshot-primary strong { display: block; margin: 18px 0; font-size: clamp(52px, 5.3vw, 82px); line-height: 1; letter-spacing: -0.075em; }
.snapshot-primary a { color: var(--emerald-deep); font: 700 10px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.snapshot-primary a span { display: inline-block; margin-left: 3px; transition: transform 180ms ease; }
.snapshot-primary a:hover span { transform: translate(3px, -3px); }
.snapshot-ledger { margin: 0; padding: 30px 46px; display: grid; align-content: center; }
.snapshot-ledger > div { display: grid; grid-template-columns: 132px 1fr; align-items: center; min-width: 0; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.snapshot-ledger > div:last-child { border-bottom: 0; }
.snapshot-ledger dt { color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.snapshot-ledger dd { margin: 0; min-width: 0; display: flex; align-items: center; gap: 12px; }
.snapshot-ledger code,
.technical-record code { font: 500 12px/1.4 var(--mono); overflow-wrap: anywhere; }
.snapshot-ledger a { text-decoration: none; border-bottom: 1px solid var(--line); }
.copy { padding: 0; border: 0; border-bottom: 1px solid currentColor; color: var(--emerald-deep); background: none; cursor: pointer; font: 700 8px/1.3 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.distribution-proof { margin-top: 30px; }
.pending-proof {
  min-height: 210px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 54px;
  padding: 34px 54px;
  background: var(--ink);
  color: var(--paper);
}
.pending-proof h3 { margin: 10px 0; font-size: clamp(28px, 3vw, 46px); letter-spacing: -0.055em; text-transform: uppercase; }
.pending-proof > div:last-child > p:last-child { max-width: 760px; margin: 0; color: #aaaeb5; font-size: 14px; line-height: 1.6; }
.pending-proof .mono-label { color: #63d8ad; }
.pending-orbit { width: 120px; aspect-ratio: 1; border: 1px dashed rgba(250, 248, 245, 0.32); border-radius: 50%; display: grid; place-items: center; position: relative; }
.pending-orbit::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(99, 216, 173, 0.28); border-radius: 50%; }
.pending-orbit span { font-size: 44px; font-weight: 600; letter-spacing: -0.07em; }
.pending-orbit i { position: absolute; width: 9px; height: 9px; background: #63d8ad; border-radius: 50%; top: -5px; box-shadow: 0 0 18px #63d8ad; transform-origin: 4px 65px; animation: orbit 5s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }

.proof-table-wrap { overflow-x: auto; border: 1px solid var(--ink); background: rgba(250, 248, 245, 0.75); }
.proof-table { width: 100%; min-width: 1440px; border-collapse: collapse; font-size: 12px; }
.proof-table th { padding: 18px 14px; background: var(--ink); color: var(--paper); text-align: left; font: 600 8px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.proof-table td { padding: 17px 14px; border-bottom: 1px dashed var(--line); white-space: nowrap; }
.proof-table tbody tr:last-child td { border-bottom: 0; }
.proof-table .wallet-cell { display: flex; align-items: center; gap: 10px; }
.proof-table .wallet-cell code { font: 500 10px/1.4 var(--mono); }
.proof-table a { text-decoration: none; }
.proof-table .rank { color: var(--emerald-deep); font: 700 10px/1 var(--mono); }
.proof-link { color: var(--emerald-deep); font-weight: 700; }
.proof-table tfoot td { border-top: 1px solid var(--ink); border-bottom: 0; background: var(--paper-deep); font: 700 9px/1.35 var(--mono); letter-spacing: 0.02em; text-transform: uppercase; }

.rail {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 150px 1fr 150px 1fr;
  align-items: center;
}
.rail-stop { min-height: 210px; display: grid; place-items: center; align-content: center; gap: 32px; border: 1px solid var(--line); background: rgba(250, 248, 245, 0.72); position: relative; }
.rail-stop::before { content: ""; width: 8px; height: 8px; position: absolute; top: -5px; left: calc(50% - 4px); background: var(--emerald); border-radius: 50%; }
.partner-lockup { width: min(190px, 72%); min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.partner-lockup img { max-width: 100%; max-height: 48px; object-fit: contain; }
.virtuals-lockup img { width: 45px; }
.virtuals-lockup strong { white-space: nowrap; font-size: 22px; letter-spacing: -0.045em; }
.rail-stop img.robinhood-logo { max-height: 40px; }
.rail-stop p { margin: 0; color: var(--muted); font-size: 9px; }
.rail-wrkr { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: scale(1.06); box-shadow: 0 28px 70px rgba(11, 13, 16, 0.18); }
.rail-wrkr p { color: #a9adb3; }
.mini-wordmark { font-size: 45px; line-height: 1; font-weight: 700; letter-spacing: -0.08em; }
.mini-wordmark span { color: #63d8ad; }
.rail-arrow { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px; padding: 0 14px; }
.rail-arrow span { height: 1px; background: var(--emerald); position: relative; }
.rail-arrow span::after { content: ""; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1px solid var(--emerald); border-right: 1px solid var(--emerald); transform: rotate(45deg); }
.rail-arrow b { color: var(--muted); font: 600 8px/1 var(--mono); }
.rail-payoff { margin: 74px auto 0; max-width: 1040px; text-align: center; font-size: clamp(29px, 3.5vw, 54px); line-height: 1.05; letter-spacing: -0.05em; }
.rail-payoff em { display: block; font: 400 italic 1.16em/1.05 var(--serif); color: var(--emerald-deep); }

.method-grid { margin-top: 74px; display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 90px; align-items: start; }
.method-ledger { border-top: 1px solid var(--ink); }
.method-ledger > div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px dashed var(--line); }
.method-ledger span { color: var(--emerald-deep); font: 700 9px/1.7 var(--mono); }
.method-ledger p { margin: 0; color: #44474d; font-size: 15px; line-height: 1.55; }
.technical-record { margin-top: 70px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.technical-record summary { padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; list-style: none; font: 700 10px/1 var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.technical-record summary::-webkit-details-marker { display: none; }
.technical-record summary span { color: var(--emerald-deep); }
.technical-record dl { margin: 0; padding: 5px 0 28px; }
.technical-record dl > div { display: grid; grid-template-columns: 210px 1fr; gap: 30px; padding: 15px 0; border-top: 1px dashed var(--line); }
.technical-record dt { color: var(--muted); font: 600 9px/1.5 var(--mono); letter-spacing: 0.07em; text-transform: uppercase; }
.technical-record dd { margin: 0; display: flex; gap: 12px; align-items: flex-start; font-size: 13px; line-height: 1.5; }

.archive-hero { min-height: 680px; padding: 92px 0 72px; border-bottom: 1px solid var(--ink); position: relative; }
.archive-hero h1 { max-width: 1170px; margin-top: 36px; }
.archive-lead { max-width: 620px; margin-top: 40px; }
.archive-count { position: absolute; right: 0; bottom: 72px; display: grid; justify-items: end; }
.archive-count strong { font-size: 84px; line-height: 0.8; letter-spacing: -0.08em; }
.archive-count span { margin-top: 14px; color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }
.archive-list .chapter-line { margin-bottom: 44px; }
.archive-row { display: grid; grid-template-columns: 90px 1fr 250px 48px; gap: 30px; align-items: center; min-height: 150px; border-top: 1px solid var(--line); text-decoration: none; transition: padding 220ms ease, background 220ms ease; }
.archive-row:last-child { border-bottom: 1px solid var(--line); }
.archive-row:hover { padding-inline: 22px; background: rgba(13, 150, 104, 0.055); }
.archive-number { color: var(--emerald-deep); font: 700 13px/1 var(--mono); }
.archive-row h2 { margin: 11px 0 0; font-size: clamp(25px, 2.5vw, 38px); letter-spacing: -0.045em; text-transform: uppercase; }
.archive-meta { justify-self: end; }
.archive-meta p { margin: 10px 0 0; color: var(--muted); font-size: 12px; text-align: right; }
.status-dot { font-size: 8px; font-weight: 700; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.08); }
.status-dot.status-complete::before { background: var(--emerald); box-shadow: 0 0 0 4px rgba(13, 150, 104, 0.1); }
.archive-arrow { font-size: 24px; transition: transform 180ms ease; }
.archive-row:hover .archive-arrow { transform: translate(5px, -5px); }

.site-footer { min-height: 140px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; }
.site-footer span { color: var(--ink); font-family: var(--display); font-size: 14px; font-weight: 700; letter-spacing: -0.06em; text-transform: lowercase; }

.has-motion .reveal { opacity: 0; transform: translateY(20px); transition: opacity 650ms ease, transform 850ms cubic-bezier(0.16, 1, 0.3, 1); transition-delay: calc(var(--reveal-order, 0) * 55ms); }
.has-motion .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .reward-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-bottom: 24px; }
  .hero-totals { padding: 50px 0 70px; max-width: 620px; }
  .status-stamp { top: 52px; }
  .proof-heading { gap: 40px; }
  .snapshot-primary { padding: 44px; }
  .snapshot-ledger { padding: 24px 34px; }
  .rail { grid-template-columns: 1fr 75px 1fr 75px 1fr; }
  .rail-arrow { padding-inline: 7px; }
  .rail-arrow b { display: none; }
  .method-grid { gap: 50px; }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  main { width: min(100% - 34px, 1480px); }
  .site-header { min-height: 70px; }
  .header-meta span { display: none; }
  .reward-hero { padding-top: 38px; }
  .hero-index { gap: 16px; }
  .status-stamp { position: relative; top: auto; right: auto; grid-row: 2; width: 138px; min-height: 88px; margin: 30px 0 0 auto; transform: rotate(3deg); }
  .status-stamp strong { font-size: 20px; }
  .hero-copy { padding-top: 28px; }
  .hero-copy h1,
  .archive-hero h1 { font-size: clamp(49px, 15vw, 78px); line-height: 0.9; }
  .hero-lead,
  .archive-lead { font-size: 17px; }
  .hero-totals { grid-template-columns: 1fr 108px; gap: 18px; padding-top: 46px; }
  .metric-number { font-size: clamp(91px, 27vw, 130px); }
  .metric-unit { font-size: 13px; padding-left: 10px; }
  .allocation-ring { width: 108px; }
  .allocation-ring strong { font-size: 25px; }
  .batch-strip { grid-template-columns: 1fr; }
  .batch-strip > div,
  .batch-strip > div + div { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
  .batch-strip > div:last-child { border-bottom: 0; }
  .batch-strip p { max-width: 180px; margin: 0; text-align: right; }
  .proof-section,
  .ecosystem,
  .method-section,
  .archive-list { padding: 78px 0; }
  .chapter-line::after { margin-left: 120px; }
  .proof-heading { grid-template-columns: 1fr; margin-top: 56px; }
  .proof-heading h2,
  .method-grid h2 { font-size: clamp(43px, 13vw, 66px); }
  .snapshot-frame { grid-template-columns: 1fr; }
  .snapshot-primary { padding: 38px 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .snapshot-ledger { padding: 18px 28px; }
  .snapshot-ledger > div { grid-template-columns: 1fr; gap: 9px; }
  .pending-proof { grid-template-columns: 1fr; gap: 25px; padding: 40px 30px; }
  .pending-orbit { width: 94px; }
  .pending-orbit i { transform-origin: 4px 52px; }
  .rail { grid-template-columns: 1fr; gap: 0; margin-top: 55px; }
  .rail-stop { min-height: 175px; }
  .rail-wrkr { transform: none; }
  .rail-arrow { width: 1px; height: 58px; padding: 0; margin: auto; background: var(--emerald); }
  .rail-arrow span { display: none; }
  .rail-payoff { margin-top: 58px; text-align: left; }
  .method-grid { grid-template-columns: 1fr; }
  .technical-record dl > div { grid-template-columns: 1fr; gap: 8px; }
  .technical-record dd { display: block; }
  .technical-record dd .copy { margin-left: 8px; }
  .archive-hero { min-height: 690px; padding-top: 70px; }
  .archive-count { bottom: 62px; }
  .archive-row { grid-template-columns: 42px 1fr 28px; gap: 15px; padding: 24px 0; }
  .archive-meta { grid-column: 2; grid-row: 2; justify-self: start; }
  .archive-meta p { text-align: left; }
  .archive-arrow { grid-column: 3; grid-row: 1 / 3; }
  .site-footer { min-height: 120px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 9px; }
  .site-footer p { margin: 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; }
}
