@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #071718;
  --ink-2: #102a2b;
  --paper: #f3f2e9;
  --paper-2: #e9e7dc;
  --line: rgba(7, 23, 24, 0.16);
  --light-line: rgba(244, 243, 234, 0.15);
  --acid: #d8ff72;
  --cyan: #73e4d1;
  --orange: #ffb461;
  --red: #ff887c;
  --white: #fbfaf3;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Manrope, Inter, system-ui, sans-serif;
  --max: 1280px;
  --pad: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(243, 242, 233, .94);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  text-decoration: none;
}
.brand sup {
  font: 500 9px/1 var(--mono);
  letter-spacing: .1em;
  padding: 4px 5px;
  border: 1px solid currentColor;
  border-radius: 2px;
  opacity: .7;
}
.brand-mark {
  width: 26px;
  height: 26px;
  display: grid;
  gap: 3px;
  padding: 5px;
  background: var(--acid);
  border-radius: 5px;
}
.brand-mark span { display: block; background: var(--ink); border-radius: 2px; }
.brand-mark span:nth-child(2) { width: 75%; }
.brand-mark span:nth-child(3) { width: 48%; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.button) {
  font: 500 12px/1 var(--mono);
  letter-spacing: .04em;
  text-decoration: none;
  opacity: .8;
}
.nav > a:hover { opacity: 1; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--ink-2); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
.button-small { min-height: 38px; padding: 0 16px; background: var(--acid); color: var(--ink); border-color: var(--acid); }
.site-header.scrolled .button-small { background: var(--ink); color: var(--white); border-color: var(--ink); }
.button-large { min-height: 62px; padding: 0 32px; font-size: 14px; }

.hero {
  min-height: 100vh;
  padding-top: 76px;
  background:
    radial-gradient(circle at 72% 29%, rgba(115, 228, 209, .10), transparent 30%),
    var(--ink);
  color: var(--white);
}
.hero-grid {
  min-height: calc(100vh - 132px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 150px) var(--pad) 72px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
}
.hero-grid > *, .problem-grid > *, .split-heading > *, .planner-grid > *, .boundaries-grid > * { min-width: 0; }
.grid-lines {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}
.eyebrow, .kicker, .section-number, .label, .card-index, .field-label, .time-marker, .footer-links > span, .footer-note > span {
  font: 500 11px/1.3 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--cyan); margin: 0 0 28px; }
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(216,255,114,.12);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(216,255,114,0); } }
.hero h1 {
  margin: 0;
  max-width: 830px;
  font-size: clamp(58px, 7.4vw, 108px);
  line-height: .91;
  letter-spacing: -.072em;
  font-weight: 600;
}
.hero h1 em { font-style: normal; color: var(--acid); }
.hero h1 span, .hero h1 em { display: block; }
.hero-lede { max-width: 610px; margin: 32px 0 0; font-size: clamp(18px, 1.65vw, 23px); line-height: 1.55; color: rgba(251,250,243,.72); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.hero .button { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.text-link { font: 600 13px var(--mono); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 5px; }
.microcopy { margin: 24px 0 0; font: 400 11px/1.6 var(--mono); color: rgba(251,250,243,.45); }

.docket-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 18px 18px 0 rgba(115,228,209,.08);
  transform: rotate(1.5deg);
}
.docket-head, .decision-topline {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
}
.docket-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--line); }
.docket-head > div { display: grid; gap: 9px; }
.docket-head strong { font: 500 21px var(--mono); letter-spacing: -.04em; }
.label { color: rgba(7,23,24,.55); }
.status { padding: 8px 10px; border-radius: 2px; font: 600 10px var(--mono); letter-spacing: .08em; }
.status-review { background: var(--orange); color: var(--ink); }
.status-allow { background: var(--acid); color: var(--ink); }
.status-deny { background: var(--red); color: var(--ink); }
.docket-route { display: flex; align-items: center; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.route-node { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font: 500 9px var(--mono); }
.route-node.complete { background: var(--ink); color: var(--white); }
.route-node.active { background: var(--orange); border-color: var(--orange); }
.docket-route i { flex: 1; height: 1px; background: var(--line); }
.docket-rows > div { display: grid; grid-template-columns: 112px 1fr; gap: 16px; padding: 14px 28px; border-bottom: 1px solid var(--line); font-size: 12px; }
.docket-rows span { color: rgba(7,23,24,.5); font-family: var(--mono); }
.docket-rows code { font-family: var(--mono); }
.hash-strip { display: flex; justify-content: space-between; gap: 14px; padding: 16px 28px; background: var(--ink-2); color: var(--acid); font: 500 9px var(--mono); letter-spacing: .06em; }
.hash-strip code { color: var(--white); opacity: .65; }

.signal-bar { min-height: 56px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.signal-bar span { display: grid; place-items: center; padding: 16px; border-right: 1px solid rgba(255,255,255,.12); font: 500 10px var(--mono); color: rgba(251,250,243,.62); letter-spacing: .04em; text-align: center; }
.signal-bar span::before { content: "●"; color: var(--acid); margin-right: 9px; font-size: 7px; }

.section { padding: clamp(90px, 12vw, 160px) var(--pad); }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section-number { padding-bottom: 20px; border-bottom: 1px solid var(--line); color: rgba(7,23,24,.48); }
.section-number.light { border-color: var(--light-line); color: rgba(251,250,243,.45); }
.kicker { color: rgba(7,23,24,.55); margin: 0 0 18px; }
.kicker.acid { color: var(--acid); }
.section h2 { margin: 0; font-size: clamp(44px, 5.8vw, 78px); line-height: 1; letter-spacing: -.06em; font-weight: 600; }

.problem-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: end; margin-top: 76px; }
.problem-copy { padding-bottom: 7px; }
.problem-copy > p { margin: 0 0 28px; font-size: 18px; line-height: 1.7; color: rgba(7,23,24,.66); }
.source-link { font: 600 12px var(--mono); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 6px; }
.source-link span { margin-left: 8px; }
.contrast-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 80px; border: 1px solid var(--line); }
.contrast-card { padding: clamp(32px, 4vw, 58px); }
.contrast-card + .contrast-card { border-left: 1px solid var(--line); }
.muted-card { background: var(--paper-2); }
.bright-card { background: var(--acid); }
.contrast-card ul { list-style: none; margin: 40px 0 0; padding: 0; }
.contrast-card li { padding: 16px 0; border-top: 1px solid rgba(7,23,24,.15); font-size: 16px; }
.contrast-card li::before { content: "—"; margin-right: 18px; font-family: var(--mono); }
.bright-card li::before { content: "✓"; }

.dark-section { background: var(--ink); color: var(--white); }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: end; }
.section-heading { margin-top: 72px; }
.section-heading > p:last-child, .split-heading > p { margin: 0; font-size: 17px; line-height: 1.7; color: rgba(251,250,243,.58); max-width: 540px; }
.proof .section-heading > p:last-child { color: rgba(7,23,24,.58); max-width: 720px; margin-top: 24px; }
.system-flow { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 88px; border: 1px solid var(--light-line); }
.system-flow li { min-height: 400px; padding: 28px; position: relative; display: flex; flex-direction: column; }
.system-flow li + li { border-left: 1px solid var(--light-line); }
.flow-num { font: 500 10px var(--mono); color: rgba(251,250,243,.4); }
.flow-icon { margin: 52px 0 28px; color: var(--acid); font-size: 42px; }
.system-flow h3 { margin: 0 0 16px; font-size: 20px; }
.system-flow p { margin: 0; color: rgba(251,250,243,.57); font-size: 14px; line-height: 1.7; }
.system-flow code { margin-top: auto; padding-top: 26px; color: var(--cyan); font: 400 9px var(--mono); letter-spacing: .04em; }

.lab-shell { display: grid; grid-template-columns: .72fr 1.28fr; margin-top: 68px; border: 1px solid var(--line); background: var(--white); }
.scenario-list { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.scenario { min-height: 94px; border: 0; border-bottom: 1px solid var(--line); padding: 20px 24px; background: transparent; color: var(--ink); text-align: left; cursor: pointer; display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; transition: background .18s ease; }
.scenario:last-child { border-bottom: 0; }
.scenario span { grid-row: 1 / 3; font: 500 10px var(--mono); color: rgba(7,23,24,.4); padding-top: 3px; }
.scenario strong { font-size: 14px; }
.scenario small { color: rgba(7,23,24,.5); margin-top: 5px; }
.scenario:hover { background: var(--paper-2); }
.scenario.active { background: var(--acid); }
.decision-panel { padding: clamp(30px, 4vw, 56px); min-height: 376px; display: flex; flex-direction: column; }
.decision-panel h3 { max-width: 720px; margin: 38px 0; font-size: clamp(24px, 3vw, 38px); line-height: 1.2; letter-spacing: -.04em; }
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.field-label { display: block; color: rgba(7,23,24,.4); margin-bottom: 14px; }
.signal-list { list-style: none; margin: 0; padding: 0; }
.signal-list li { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line); font: 400 11px var(--mono); }
.signal-list em { font-style: normal; color: rgba(7,23,24,.5); }
.decision-grid p { margin: 0; color: rgba(7,23,24,.68); font-size: 14px; line-height: 1.7; }
.decision-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 32px; font: 500 10px var(--mono); color: rgba(7,23,24,.55); }
.verified-dot { display: inline-block; width: 7px; height: 7px; background: #2f8c75; border-radius: 50%; margin-right: 7px; }
.proof-metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-metrics div { padding: 28px; }
.proof-metrics div + div { border-left: 1px solid var(--line); }
.proof-metrics strong { display: block; font: 500 clamp(26px, 3vw, 42px) var(--mono); letter-spacing: -.05em; }
.proof-metrics span { display: block; margin-top: 8px; color: rgba(7,23,24,.52); font-size: 12px; }
.metric-note { text-align: right; margin-top: 12px; color: rgba(7,23,24,.45); font: 400 10px var(--mono); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 82px; border-top: 2px solid var(--ink); }
.timeline article { position: relative; padding: 34px 30px 30px 0; }
.timeline article + article { padding-left: 30px; border-left: 1px solid var(--line); }
.timeline article::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
.timeline h3 { margin: 26px 0 14px; font-size: 20px; }
.timeline p { margin: 0 0 24px; color: rgba(7,23,24,.58); font-size: 14px; line-height: 1.7; }
.timeline strong { font: 500 10px/1.5 var(--mono); color: #286b62; }

.planner-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.planner-copy .section-number { margin-bottom: 68px; }
.planner-copy > p:not(.kicker) { max-width: 500px; margin: 28px 0 24px; color: rgba(251,250,243,.58); line-height: 1.7; }
.privacy-chip { display: inline-flex; padding: 9px 12px; border: 1px solid var(--light-line); color: var(--cyan); font: 500 10px var(--mono); }
.pilot-form { background: var(--white); color: var(--ink); padding: clamp(28px, 4vw, 52px); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pilot-form label { display: grid; gap: 9px; font: 500 10px var(--mono); color: rgba(7,23,24,.6); }
.pilot-form input, .pilot-form select { width: 100%; height: 52px; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); padding: 0 14px; font: 500 14px var(--mono); }
.plan-output { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 28px; border: 1px solid var(--line); }
.plan-output > div { padding: 20px; }
.plan-output > div + div { border-left: 1px solid var(--line); }
.plan-output span { display: block; min-height: 32px; color: rgba(7,23,24,.5); font: 500 9px/1.4 var(--mono); text-transform: uppercase; }
.plan-output strong { display: block; margin-top: 12px; font: 500 32px var(--mono); }
.plan-output small { color: rgba(7,23,24,.48); font: 400 9px var(--mono); }
.acid-button { width: 100%; background: var(--acid); color: var(--ink); border-color: var(--acid); }
.email-button { width: 100%; margin-top: 10px; background: transparent; color: var(--ink); }
.email-button:hover { background: var(--ink); color: var(--white); }
.form-note { margin: 16px 0 0; color: rgba(7,23,24,.45); font: 400 9px/1.5 var(--mono); }

.boundaries-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; margin-top: 72px; }
.boundary-lists { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.boundary-lists article { padding: clamp(28px, 3vw, 42px); }
.boundary-lists article + article { border-left: 1px solid var(--line); background: var(--paper-2); }
.boundary-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; font: 500 20px var(--mono); }
.boundary-icon.yes { background: var(--acid); }
.boundary-icon.no { background: var(--ink); color: var(--white); }
.boundary-lists h3 { margin: 28px 0; }
.boundary-lists ul { list-style: none; margin: 0; padding: 0; }
.boundary-lists li { padding: 12px 0; border-top: 1px solid var(--line); color: rgba(7,23,24,.63); font-size: 13px; }

.final-cta { text-align: center; background: var(--acid); }
.cta-rule { width: 1px; height: 70px; background: var(--ink); margin-bottom: 48px; }
.final-cta h2 { font-size: clamp(52px, 7vw, 96px); }
.final-cta .button { margin-top: 42px; }
.final-cta > p:last-child { margin-top: 22px; font: 500 10px var(--mono); opacity: .56; }

.site-footer { padding: 62px var(--pad); background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; }
.footer-brand p { color: rgba(251,250,243,.48); font-size: 13px; }
.footer-email { display: inline-block; max-width: 100%; color: var(--acid); font: 400 12px/1.5 var(--mono); overflow-wrap: anywhere; text-underline-offset: 4px; }
.footer-links { display: grid; align-content: start; gap: 12px; }
.footer-links > span, .footer-note > span { color: var(--acid); margin-bottom: 6px; }
.footer-links a { width: fit-content; color: rgba(251,250,243,.62); font: 400 11px var(--mono); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-note p { max-width: 360px; margin: 12px 0 24px; color: rgba(251,250,243,.55); font-size: 12px; line-height: 1.6; }
.footer-note small { color: rgba(251,250,243,.32); font: 400 9px var(--mono); }

.reveal { animation: rise .7s both ease-out; }
.docket-card.reveal { animation-delay: .15s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } }

@media (max-width: 1050px) {
  .nav > a:not(.button) { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 110px; }
  .hero-copy { max-width: 850px; }
  .docket-card { max-width: 660px; transform: none; }
  .problem-grid, .split-heading, .planner-grid, .boundaries-grid { grid-template-columns: 1fr; gap: 48px; }
  .system-flow { grid-template-columns: 1fr 1fr; }
  .system-flow li:nth-child(3) { border-left: 0; border-top: 1px solid var(--light-line); }
  .system-flow li:nth-child(4) { border-top: 1px solid var(--light-line); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .timeline article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .site-header { height: 66px; }
  .nav-toggle { display: grid; place-items: center; gap: 5px; width: 40px; height: 40px; border: 1px solid currentColor; background: transparent; color: inherit; }
  .nav-toggle span { width: 16px; height: 1px; background: currentColor; }
  .nav { display: none; position: absolute; top: 65px; left: 0; right: 0; padding: 24px var(--pad); background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); }
  .nav.open { display: grid; gap: 22px; }
  .nav > a:not(.button) { display: block; font-size: 13px; }
  .hero { padding-top: 66px; }
  .hero-grid { min-height: auto; grid-template-columns: minmax(0, 1fr); padding-top: 86px; padding-bottom: 60px; }
  .hero h1 { max-width: 100%; font-size: clamp(46px, 12.5vw, 58px); overflow-wrap: anywhere; }
  .eyebrow { flex-wrap: wrap; line-height: 1.6; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .text-link { width: fit-content; }
  .signal-bar { grid-template-columns: 1fr 1fr; }
  .signal-bar span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .section h2 { font-size: clamp(40px, 12vw, 58px); }
  .problem-grid, .section-heading { margin-top: 48px; }
  .contrast-grid, .boundary-lists { grid-template-columns: 1fr; }
  .contrast-card + .contrast-card, .boundary-lists article + article { border-left: 0; border-top: 1px solid var(--line); }
  .system-flow, .timeline { grid-template-columns: 1fr; }
  .system-flow li + li { border-left: 0; border-top: 1px solid var(--light-line); }
  .timeline article { padding: 30px 0; }
  .timeline article + article, .timeline article:nth-child(4) { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .timeline article:not(:first-child)::before { top: -7px; }
  .lab-shell { grid-template-columns: 1fr; }
  .scenario-list { border-right: 0; border-bottom: 1px solid var(--line); }
  .decision-grid { grid-template-columns: 1fr; gap: 30px; }
  .decision-footer { flex-direction: column; }
  .proof-metrics { grid-template-columns: 1fr 1fr; }
  .proof-metrics div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .proof-metrics div:nth-child(4) { border-top: 1px solid var(--line); }
  .form-grid, .boundary-lists, .site-footer { grid-template-columns: 1fr; }
  .plan-output { grid-template-columns: 1fr; }
  .plan-output > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { gap: 42px; }
  .docket-rows > div { grid-template-columns: 95px 1fr; padding-left: 20px; padding-right: 20px; }
  .docket-rows strong, .docket-rows code, .hash-strip code { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
