:root {
  --ink: #151814;
  --ink-soft: #20241e;
  --paper: #f1f0e9;
  --paper-bright: #faf9f3;
  --muted: #6c7168;
  --line: rgba(21, 24, 20, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --acid: #d8ff45;
  --mint: #c7ddd0;
  --amber: #d49a45;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Manrope", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1380px, calc(100vw - 96px));
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: #fff;
  background: var(--ink);
  border-color: var(--line-light);
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: 150px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding-inline: 48px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(241, 240, 233, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand em {
  font-style: normal;
  font-weight: 400;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  width: 31px;
  height: 17px;
  border: 1px solid currentColor;
  border-radius: 20px;
}

.brand-mark::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
}

.brand-mark span {
  position: absolute;
  top: 4px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.brand-mark span:nth-child(1) { left: 7px; }
.brand-mark span:nth-child(2) { left: 14px; }
.brand-mark span:nth-child(3) { left: 21px; }

.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  position: relative;
}

.desktop-nav a::after,
.header-cta::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.header-cta span {
  margin-left: 8px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 120px 28px 40px;
  color: var(--paper-bright);
  background: var(--ink);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu a {
  padding-block: 15px;
  font-size: clamp(28px, 9vw, 54px);
  letter-spacing: -0.05em;
  border-bottom: 1px solid var(--line-light);
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 1080px;
  overflow: hidden;
  color: #fff;
  background: #11130f;
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/hero-pill-field.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.035);
  animation: hero-image-in 1.6s cubic-bezier(0.2, 0.72, 0.22, 1) 0.1s both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 13, 10, 0.96) 0%, rgba(11, 13, 10, 0.86) 34%, rgba(11, 13, 10, 0.18) 66%, rgba(11, 13, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(10, 12, 9, 0.7) 0%, transparent 45%);
}

.hero-grid,
.contribute-grid {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-top: var(--header-h);
  padding-bottom: 90px;
}

.hero-content > * {
  max-width: 720px;
}

.eyebrow,
.section-kicker,
.mono-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.7);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 255, 69, 0.1);
}

.hero h1 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(64px, 7.1vw, 118px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero-copy {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.hero-actions,
.contribute-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 44px;
}

.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, color 200ms ease, background-color 200ms ease,
    border-color 200ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--acid);
}

.button-primary:hover {
  background: #e3ff76;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--acid);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.text-link.light {
  border-color: rgba(255, 255, 255, 0.35);
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 34px;
  left: 48px;
  display: flex;
  gap: 0;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-proof span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
}

.hero-proof span:not(:last-child)::after {
  width: 52px;
  height: 1px;
  margin-inline: 15px;
  content: "";
  background: rgba(255, 255, 255, 0.25);
}

.specimen-label {
  position: absolute;
  z-index: 2;
  right: 32px;
  top: 50%;
  display: flex;
  gap: 40px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.reveal-item {
  animation: hero-copy-in 800ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.reveal-item:nth-child(1) { animation-delay: 280ms; }
.reveal-item:nth-child(2) { animation-delay: 380ms; }
.reveal-item:nth-child(3) { animation-delay: 500ms; }
.reveal-item:nth-child(4) { animation-delay: 620ms; }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image-in {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.035); }
}

.section-kicker {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: var(--muted);
}

.section-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.5);
}

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 42px;
}

.manifesto-copy {
  max-width: 980px;
}

.display-copy {
  margin: 0;
  font-size: clamp(43px, 5.1vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.body-large {
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.manifesto-copy .body-large {
  max-width: 760px;
  margin: 48px 0 0 auto;
  color: var(--muted);
}

.evidence-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.7fr;
  gap: 48px;
  align-items: end;
  margin-top: 120px;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.evidence-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 22px;
  align-items: end;
}

.evidence-lead .mono-label {
  grid-column: 1 / -1;
  color: var(--muted);
}

.evidence-lead strong {
  font-family: var(--mono);
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.06em;
}

.evidence-lead > span:last-child {
  max-width: 290px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.evidence-meter {
  position: relative;
  height: 10px;
  margin-bottom: 13px;
  background: rgba(21, 24, 20, 0.1);
}

.evidence-fill {
  width: 11.7%;
  height: 100%;
  background: var(--ink);
  transition: width 1.2s ease;
}

.evidence-meter span {
  position: absolute;
  top: 20px;
  left: 11.7%;
  font-family: var(--mono);
  font-size: 10px;
  transform: translateX(-50%);
}

.evidence-band > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.evidence-band > p a {
  display: inline;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.truth-list {
  margin-top: 90px;
}

.truth-row {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 1.6fr 0.6fr;
  gap: 32px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.truth-row:last-child {
  border-bottom: 1px solid var(--line);
}

.truth-number,
.truth-tag {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.truth-row h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.truth-row p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
}

.method {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.method-heading,
.developer-intro,
.stats-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.method h2,
.developer-section h2,
.stats-section h2,
.roadmap-section h2,
.names-section h2 {
  max-width: 880px;
  margin: 28px 0 0;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.method-heading > p,
.developer-intro > p,
.stats-heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 125px;
}

.pipeline-line {
  position: absolute;
  top: 137px;
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.pipeline-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: translateX(-100%);
  transition: transform 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.pipeline.is-visible .pipeline-line span {
  transform: translateX(0);
}

.pipeline-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pipeline-index {
  position: absolute;
  top: -38px;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 10px;
}

.pipeline-orb {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 275px;
  height: 275px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 18px var(--ink);
}

.pipeline-orb::before,
.pipeline-orb::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.orb-declared::before {
  width: 105px;
  height: 105px;
  background: #e5e1d2;
  box-shadow: inset -14px -11px 30px rgba(0, 0, 0, 0.14), 0 22px 45px rgba(0, 0, 0, 0.28);
}

.tablet-symbol {
  position: relative;
  z-index: 1;
  color: rgba(21, 24, 20, 0.48);
  font-family: var(--mono);
  font-size: 17px;
  line-height: 1.05;
}

.orb-observed {
  background:
    radial-gradient(circle at 44% 41%, rgba(216, 255, 69, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 63% 54%, rgba(216, 255, 69, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 51% 65%, rgba(216, 255, 69, 0.75) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 57% 35%, rgba(216, 255, 69, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 37% 59%, rgba(216, 255, 69, 0.65) 0 2px, transparent 3px),
    var(--ink-soft);
}

.orb-observed::before {
  width: 122px;
  height: 122px;
  border: 1px dashed rgba(216, 255, 69, 0.55);
  animation: orbit 18s linear infinite;
}

.orb-observed::after {
  width: 70px;
  height: 70px;
  background: rgba(216, 255, 69, 0.12);
  border: 1px solid rgba(216, 255, 69, 0.4);
}

@keyframes orbit { to { transform: rotate(360deg); } }

.orb-derived::before,
.orb-derived::after,
.derived-stack {
  width: 95px;
  height: 95px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.orb-derived::before { transform: translate(-18px, -11px); }
.orb-derived::after { transform: translate(18px, 11px); }
.derived-stack { position: relative; z-index: 2; border-color: var(--acid); }

.pipeline-copy {
  max-width: 320px;
  margin-top: 38px;
}

.pipeline-copy .mono-label {
  color: var(--acid);
}

.pipeline-copy h3 {
  margin: 12px 0 10px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.pipeline-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.provenance-note {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 26px;
  align-items: center;
  margin-top: 120px;
  padding-block: 28px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.provenance-note .brace {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 64px;
  font-weight: 300;
}

.provenance-note p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.provenance-note p strong { color: #fff; }

.provenance-note code {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
}

.audience-section {
  background: var(--paper-bright);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.audience-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    #dfe1d6;
  background-size: 48px 48px;
}

.product-sheet {
  position: relative;
  z-index: 3;
  width: min(72%, 430px);
  padding: 22px;
  background: var(--paper-bright);
  box-shadow: 0 28px 70px rgba(21, 24, 20, 0.17);
  transform: rotate(-2deg);
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.audience-visual:hover .product-sheet {
  transform: rotate(0deg) translateY(-8px);
}

.sheet-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.pill-portrait {
  display: grid;
  place-items: center;
  height: 330px;
}

.portrait-pill {
  display: grid;
  place-items: center;
  width: 215px;
  height: 118px;
  color: rgba(21, 24, 20, 0.35);
  background: var(--mint);
  border-radius: 70px;
  box-shadow: inset -18px -15px 28px rgba(39, 64, 51, 0.12), 0 30px 40px rgba(39, 64, 51, 0.14);
  font-family: var(--mono);
  font-size: 25px;
  letter-spacing: 0.08em;
}

.sheet-rule {
  height: 1px;
  background: var(--ink);
}

.sheet-values {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px 24px;
  padding-top: 19px;
  font-family: var(--mono);
  font-size: 9px;
}

.sheet-values span { color: var(--muted); }
.sheet-values strong { font-weight: 400; }
.sheet-values .verified { color: #426d26; }

.signal {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.signal::before,
.signal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  content: "";
  border: 1px solid rgba(21, 24, 20, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: signal-pulse 2.8s ease-out infinite;
}

.signal::after { animation-delay: 1.4s; }
.signal-one { top: 16%; left: 14%; }
.signal-two { right: 13%; bottom: 20%; }
.signal-three { bottom: 12%; left: 21%; }

@keyframes signal-pulse {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.2); }
  to { opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}

.audience-copy h2 {
  margin: 27px 0 33px;
  font-size: clamp(45px, 5.3vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.audience-copy .body-large {
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 54px 0 42px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.check-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.developer-section {
  color: #fff;
  background: #10130f;
}

.developer-intro > p {
  max-width: 460px;
}

.api-console {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 650px;
  margin-top: 95px;
  overflow: hidden;
  background: #171a16;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.api-sidebar {
  padding: 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.api-logo {
  padding: 0 26px 30px;
  font-family: var(--mono);
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.api-logo span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 18px;
  margin-right: 8px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 10px;
  font-size: 8px;
}

.api-logo em {
  float: right;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}

.api-group-label {
  display: block;
  padding: 30px 26px 8px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.endpoint {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 6px;
  align-items: center;
  width: 100%;
  padding: 12px 26px;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  background: transparent;
  border: 0;
  border-left: 2px solid transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.endpoint:hover,
.endpoint.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--acid);
}

.endpoint code,
.request-line code,
.code-block {
  font-family: var(--mono);
}

.endpoint code { font-size: 10px; }

.method-get {
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
}

.api-main {
  min-width: 0;
}

.api-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 61px;
  padding-inline: 23px;
  color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: 9px;
}

.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; background: rgba(255, 255, 255, 0.18); border-radius: 50%; }

.copy-button {
  justify-self: end;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}

.copy-button:hover { color: var(--ink); background: var(--acid); }

.request-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  margin: 28px 30px 0;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.request-line code {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.response-status {
  color: #8fae81;
  font-family: var(--mono);
  font-size: 9px;
}

.code-block {
  overflow: auto;
  min-height: 390px;
  margin: 0;
  padding: 34px 45px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.9;
  tab-size: 2;
}

.code-block .key { color: #b9d9c5; }
.code-block .string { color: #e2cb98; }
.code-block .number { color: var(--acid); }
.code-block .literal { color: #aa9fce; }

.api-footnote {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 17px 30px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.api-footnote span { display: flex; gap: 6px; align-items: center; }
.api-footnote a { margin-left: auto; color: var(--acid); }

.legend-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }
.legend-dot.declared { background: var(--mint); }
.legend-dot.observed { background: var(--acid); }
.legend-dot.synthetic { border: 1px solid rgba(255, 255, 255, 0.6); }

.stats-section {
  background: var(--paper);
}

.stats-heading {
  align-items: end;
}

.target-badge {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  margin-bottom: 8px;
  padding: 9px 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.target-badge span {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 330px;
  padding: 35px 28px 35px 0;
}

.stat:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-family: var(--mono);
  font-size: clamp(42px, 4.2vw, 65px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.07em;
}

.stat strong sup {
  color: var(--muted);
  font-size: 17px;
  vertical-align: top;
}

.stat > span {
  display: block;
  margin-top: 19px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.stat p {
  max-width: 250px;
  margin: 75px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.origin-strip {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr;
  gap: 80px;
  align-items: end;
  margin-top: 90px;
}

.origin-label span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.origin-label strong {
  display: block;
  max-width: 330px;
  margin-top: 12px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.origin-bars {
  display: flex;
  height: 70px;
}

.origin-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--width);
  padding: 11px 13px;
  color: var(--ink);
  border-right: 2px solid var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  transition: filter 180ms ease, transform 180ms ease;
}

.origin-bar:hover { filter: brightness(1.06); transform: translateY(-5px); }
.origin-bar.manufacturer { background: var(--mint); }
.origin-bar.pharmacy { background: var(--acid); }
.origin-bar.generated { color: #fff; background: var(--ink-soft); }
.origin-bar em { opacity: 0.65; font-size: 8px; font-style: normal; text-transform: uppercase; }

.roadmap-section {
  color: #fff;
  background: var(--ink-soft);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 130px;
}

.roadmap-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.roadmap-intro p {
  max-width: 390px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.55);
}

.roadmap-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.roadmap-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px 90px 1fr auto;
  gap: 28px;
  min-height: 190px;
  padding: 8px 0 42px;
}

.roadmap-list li::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line-light);
}

.roadmap-marker {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.roadmap-marker span {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.roadmap-list .is-current .roadmap-marker {
  border-color: var(--acid);
  box-shadow: 0 0 0 7px rgba(216, 255, 69, 0.08);
}

.roadmap-list .is-current .roadmap-marker span { background: var(--acid); }

.roadmap-date,
.roadmap-status {
  padding-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.roadmap-list h3 {
  margin: 38px 0 8px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.roadmap-list p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.roadmap-status {
  padding: 5px 9px;
  height: max-content;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.names-section {
  background: var(--paper-bright);
}

.names-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
}

.names-grid > div > p {
  max-width: 480px;
  margin-top: 28px;
  color: var(--muted);
}

.name-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.name-list li {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, color 200ms ease, background-color 200ms ease;
}

.name-list li:hover,
.name-list li.is-selected {
  padding-inline: 17px;
  color: var(--ink);
  background: var(--acid);
}

.name-list span,
.name-list em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.name-list strong {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contribute-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  color: #fff;
  background: #0d0f0c;
}

.contribute-section::before {
  position: absolute;
  top: 50%;
  right: -150px;
  width: 570px;
  height: 300px;
  content: "";
  background: var(--acid);
  border-radius: 55% 45% 50% 50%;
  filter: blur(0.1px);
  transform: translateY(-50%) rotate(-14deg);
  opacity: 0.95;
}

.contribute-section::after {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 580px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translateY(-50%) rotate(-14deg);
}

.contribute-grid {
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(90deg, black 0 65%, transparent 92%);
}

.contribute-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 720px;
  padding-block: 100px;
}

.contribute-meta {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.contribute-content h2 {
  max-width: 920px;
  margin: 35px 0 25px;
  font-size: clamp(55px, 7.5vw, 110px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.contribute-content > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.contribute-actions .button { border: 0; }

.contact-note {
  height: 0;
  max-width: 660px;
  overflow: hidden;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0;
  transition: height 220ms ease, opacity 220ms ease, margin 220ms ease;
}

.contact-note.is-visible {
  height: auto;
  margin-top: 22px;
  opacity: 1;
}

.site-footer {
  padding-block: 54px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--ink);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 80px;
  align-items: end;
}

.footer-brand { color: #fff; }

.footer-grid > div:first-child p {
  max-width: 380px;
  margin: 18px 0 0;
  font-size: 11px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 34px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.footer-links a:hover { color: var(--acid); }

.footer-legal {
  justify-self: end;
  max-width: 360px;
  text-align: right;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.footer-legal p { margin: 0 0 10px; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root { --shell: min(100% - 56px, 1050px); }

  .site-header { padding-inline: 28px; }
  .desktop-nav { gap: 18px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { justify-self: end; }

  .hero-proof { right: 28px; left: 28px; }
  .specimen-label { display: none; }

  .manifesto-grid { grid-template-columns: 0.7fr 2.3fr; }
  .evidence-band { grid-template-columns: 1fr 1fr; }
  .evidence-band > p { grid-column: 1 / -1; max-width: 620px; }

  .pipeline-orb { width: 220px; height: 220px; }
  .pipeline-line { top: 110px; }
  .provenance-note { grid-template-columns: auto 1fr auto; }
  .provenance-note code { grid-column: 2; }

  .audience-grid { gap: 60px; }
  .audience-visual { min-height: 610px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }

  .roadmap-grid { gap: 70px; }
  .names-grid { gap: 70px; }

  .contribute-section::before,
  .contribute-section::after { right: -340px; }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
    --header-h: 66px;
  }

  .section-pad { padding-block: 100px; }
  .site-header { height: var(--header-h); padding-inline: 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; justify-self: end; }

  .hero { min-height: 720px; max-height: none; height: 100svh; }
  .hero-image { background-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 13, 10, 0.95) 0%, rgba(11, 13, 10, 0.74) 58%, rgba(11, 13, 10, 0.25) 100%),
      linear-gradient(0deg, rgba(10, 12, 9, 0.78), transparent 60%);
  }
  .hero h1 { font-size: clamp(55px, 15vw, 90px); }
  .hero-copy { max-width: 500px; font-size: 17px; }
  .hero-proof span:not(:first-child) { display: none; }
  .hero-proof span:first-child::after { display: none; }

  .manifesto-grid,
  .method-heading,
  .developer-intro,
  .stats-heading,
  .audience-grid,
  .roadmap-grid,
  .names-grid,
  .origin-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-copy { margin-top: 40px; }
  .manifesto-copy .body-large { margin-top: 35px; }
  .evidence-band { margin-top: 80px; }
  .truth-row { grid-template-columns: 50px 1fr; }
  .truth-row p { grid-column: 2; }
  .truth-tag { grid-column: 2; }

  .method-heading > p,
  .developer-intro > p { margin-top: 25px; }
  .pipeline { grid-template-columns: 1fr; gap: 85px; margin-top: 95px; }
  .pipeline-line { top: 100px; bottom: 100px; left: 50%; width: 1px; height: auto; }
  .pipeline-line span { width: 100%; height: 100%; transform: translateY(-100%); }
  .pipeline.is-visible .pipeline-line span { transform: translateY(0); }
  .pipeline-step { min-height: 390px; }
  .pipeline-index { left: 10px; }
  .pipeline-orb { width: 210px; height: 210px; }
  .provenance-note { margin-top: 70px; }

  .audience-visual { order: 2; min-height: 580px; }
  .audience-copy { order: 1; }

  .api-console { grid-template-columns: 1fr; min-height: 0; }
  .api-sidebar { display: flex; overflow-x: auto; padding: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .api-logo { display: none; }
  .api-group-label { display: none; }
  .endpoint { flex: 0 0 auto; width: auto; padding: 17px 18px; border-bottom: 2px solid transparent; border-left: 0; }
  .endpoint:hover, .endpoint.is-active { border-bottom-color: var(--acid); border-left-color: transparent; }
  .api-toolbar { grid-template-columns: auto 1fr auto; }
  .api-toolbar > span { text-align: center; }
  .code-block { padding-inline: 28px; font-size: 11px; }
  .api-footnote { flex-wrap: wrap; }
  .api-footnote a { width: 100%; margin-left: 0; }

  .target-badge { justify-self: start; margin-top: 28px; }
  .stats-grid { margin-top: 70px; }
  .origin-strip { gap: 35px; }
  .origin-bars { height: 90px; }

  .roadmap-intro { position: static; }
  .roadmap-list { margin-top: 70px; }
  .roadmap-list li { grid-template-columns: 28px 74px 1fr; }
  .roadmap-status { display: none; }

  .name-list { margin-top: 60px; }

  .contribute-section::before,
  .contribute-section::after { display: none; }

  .footer-links { justify-self: start; }
  .footer-legal { justify-self: start; text-align: left; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .section-pad { padding-block: 82px; }

  .hero { min-height: 680px; }
  .hero-image { background-position: 66% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(11,13,10,.94), rgba(11,13,10,.63)), linear-gradient(0deg, rgba(10,12,9,.85), transparent 65%); }
  .hero-grid { background-size: 64px 64px; }
  .hero-content { padding-bottom: 75px; }
  .hero-eyebrow { margin-bottom: 25px; }
  .hero h1 { font-size: clamp(51px, 15.5vw, 74px); line-height: .94; }
  .hero-copy { margin-top: 25px; font-size: 15px; }
  .hero-actions, .contribute-actions { flex-direction: column; align-items: flex-start; gap: 15px; margin-top: 30px; }
  .button { width: 100%; }
  .hero-proof { bottom: 18px; right: 16px; left: 16px; }

  .display-copy { font-size: clamp(38px, 12vw, 56px); }
  .body-large { font-size: 17px; }
  .evidence-band { grid-template-columns: 1fr; gap: 38px; }
  .evidence-band > p { grid-column: auto; }
  .evidence-lead { grid-template-columns: 1fr; }
  .evidence-lead strong { font-size: 58px; }
  .truth-row { grid-template-columns: 35px 1fr; gap: 15px; }
  .truth-row h3 { font-size: 22px; }

  .method h2,
  .developer-section h2,
  .stats-section h2,
  .roadmap-section h2,
  .names-section h2 { font-size: clamp(42px, 13vw, 62px); }

  .provenance-note { grid-template-columns: 1fr; gap: 12px; }
  .provenance-note .brace { display: none; }
  .provenance-note code { grid-column: auto; }

  .audience-copy h2 { font-size: clamp(41px, 13vw, 60px); }
  .audience-visual { min-height: 500px; margin-inline: -16px; }
  .product-sheet { width: 78%; }
  .pill-portrait { height: 265px; }
  .portrait-pill { width: 175px; height: 98px; }

  .api-console { width: 100%; margin-top: 60px; }
  .endpoint { grid-template-columns: auto; gap: 0; }
  .endpoint code { display: none; }
  .api-toolbar > span { display: none; }
  .api-toolbar { grid-template-columns: 1fr auto; }
  .request-line { grid-template-columns: auto 1fr; margin: 18px 16px 0; }
  .response-status { display: none; }
  .code-block { min-height: 420px; padding: 25px 18px; font-size: 9.5px; }
  .api-footnote span { display: none; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat { min-height: 260px; padding: 28px 0; border-left: 0 !important; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .stat p { margin-top: 45px; }
  .origin-bars { flex-direction: column; height: auto; }
  .origin-bar { width: 100%; height: 54px; border-right: 0; border-bottom: 2px solid var(--paper); }

  .roadmap-list li { grid-template-columns: 22px 1fr; gap: 17px; }
  .roadmap-date { grid-column: 2; grid-row: 1; }
  .roadmap-list li > div:nth-child(3) { grid-column: 2; }
  .roadmap-list h3 { margin-top: 8px; }

  .name-list li { grid-template-columns: 28px 1fr; }
  .name-list em { grid-column: 2; }

  .contribute-section,
  .contribute-content { min-height: 680px; }
  .contribute-content h2 { font-size: clamp(48px, 14vw, 70px); }

  .footer-grid { gap: 42px; }
}

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