@font-face {
  font-family: "Hanken Grotesk";
  src: url("assets/fonts/HankenGrotesk-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --canvas: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f1f4f2;
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --green: #1e5c3a;
  --green-strong: #16472c;
  --green-bright: #54b27d;
  --green-soft: #e9f4ed;
  --green-lime: #caff9c;
  --red: #b42318;
  --red-soft: #fef3f2;
  --shadow-soft: 0 10px 30px rgba(16, 24, 40, .08);
  --shadow-float: 0 22px 60px rgba(16, 24, 40, .14);
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.015em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.mono { font-family: var(--mono); letter-spacing: -.02em; }
::selection { background: var(--green-lime); color: var(--green-strong); }
:focus-visible { outline: 3px solid rgba(30, 92, 58, .35); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: none; }

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: var(--green-lime);
  color: #0d2c1d;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.announcement a { display: inline-flex; align-items: center; gap: 9px; }
.announcement a:hover { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 58px;
  left: 50%;
  width: calc(100% - 48px);
  max-width: var(--max);
  min-height: 76px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 13px 16px 13px 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 24px rgba(16,24,40,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: top .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  position: fixed;
  top: 16px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-soft);
}
.brand { display: inline-flex; align-items: center; gap: 9px; width: max-content; font-size: 24px; font-weight: 650; letter-spacing: -.04em; }
.brand-mark { display: block; color: var(--ink); }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); font-size: 14px; font-weight: 500; color: var(--text); }
.desktop-nav a, .nav-text-link { transition: color .18s ease; }
.desktop-nav a:hover, .nav-text-link:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.nav-text-link { font-size: 14px; font-weight: 550; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 8px 8px 8px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 48px; padding-left: 18px; border-radius: 13px; font-size: 14px; }
.button--ink { background: var(--ink); color: var(--white); box-shadow: 0 3px 10px rgba(16,24,40,.16); }
.button--ink:hover { background: #1d2939; box-shadow: 0 8px 20px rgba(16,24,40,.16); }
.button--light { background: var(--white); color: var(--green-strong); }
.button-arrow { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.12); font-size: 17px; }
.button--light .button-arrow { background: var(--green-soft); }
.button--small .button-arrow { width: 32px; height: 32px; }
.text-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-arrow:hover { color: var(--green); }

.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; margin: 5px auto; background: #fff; transition: transform .2s ease; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  margin: 0 16px;
  border-radius: 0 0 34px 34px;
  background:
    radial-gradient(circle at 79% 18%, rgba(255,255,255,.95) 0 4%, transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(84,178,125,.28), transparent 32%),
    linear-gradient(125deg, #edf8ef 0%, #dff3e5 54%, #cbeed8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: -34%;
  width: 54%;
  aspect-ratio: 1;
  border: 1px dashed rgba(30,92,58,.22);
  border-radius: 50%;
}
.hero-orbit { position: absolute; border: 1px solid rgba(30,92,58,.16); border-radius: 50%; pointer-events: none; }
.hero-orbit--one { width: 620px; height: 620px; right: -90px; top: 70px; }
.hero-orbit--two { width: 430px; height: 430px; right: 10px; top: 164px; border-style: dashed; }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 80px));
  min-height: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: clamp(42px, 6vw, 94px);
  padding-top: 112px;
}
.hero-copy { max-width: 640px; padding: 80px 0 40px; }
.eyebrow, .section-kicker {
  margin: 0 0 25px;
  color: var(--green-strong);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(30,92,58,.1); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; text-wrap: balance; }
.hero h1 { max-width: 690px; margin-bottom: 25px; font-size: clamp(52px, 5.45vw, 78px); font-weight: 420; line-height: .99; }
.hero h1 strong { font-weight: 690; color: var(--green-strong); }
.phrase-lock { white-space: nowrap; }
.hero-lede { max-width: 590px; margin-bottom: 34px; color: var(--text); font-size: clamp(18px, 1.7vw, 21px); line-height: 1.48; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 28px; }

.hero-product {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --float-x: 0px;
  --float-y: 0px;
  position: relative;
  width: 100%;
  max-width: 620px;
  justify-self: end;
  perspective: 1200px;
}
.product-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.88);
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(16px);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.hero-product.is-reacting .product-window { transition: transform .08s linear, border-color .22s ease, box-shadow .22s ease; }
.hero-product:hover .product-window { border-color: rgba(255,255,255,1); box-shadow: 0 28px 72px rgba(16,24,40,.17); }
.product-window__header { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.product-window__header > div { display: grid; gap: 2px; }
.product-window__header strong { font-size: 18px; }
.window-kicker { color: var(--muted); font-size: 12px; }
.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid #b7dbc4; border-radius: 999px; background: var(--green-soft); color: var(--green-strong); font-size: 12px; font-weight: 650; }
.live-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); }
.scenario-tabs { display: grid; grid-template-columns: repeat(3,1fr); padding: 8px; background: #f7f8fa; border-bottom: 1px solid var(--line); }
.scenario-tab { padding: 10px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 600; cursor: pointer; }
.scenario-tab.is-active { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(16,24,40,.1); }
.action-summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin: 18px 20px 12px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: transform .22s ease, border-color .22s ease; }
.hero-product:hover .action-summary { transform: translateY(-2px); border-color: #cbded1; }
.action-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--green-soft); color: var(--green); font-size: 20px; font-weight: 700; }
.action-summary > div:nth-child(2) { min-width: 0; display: grid; gap: 3px; }
.action-summary span, .action-summary small { color: var(--muted); font-size: 12px; }
.action-summary strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.write-chip { padding: 5px 8px; border-radius: 6px; background: #f2f4f7; color: var(--text) !important; font-family: var(--mono); font-size: 10px !important; font-weight: 650; }
.checks-list { margin: 0 20px; padding: 0; list-style: none; border: 1px solid var(--line); border-radius: 14px; transition: transform .22s ease; }
.hero-product:hover .checks-list { transform: translateY(-1px); }
.checks-list li { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.checks-list li:last-child { border: 0; }
.check-dot { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 12px; font-weight: 800; }
.checks-list div { min-width: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.checks-list strong { font-size: 13px; font-weight: 600; }
.checks-list small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.decision-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 12px 20px 20px; padding: 17px 18px; border: 1px solid #b7dbc4; border-radius: 15px; background: var(--green-soft); transition: transform .22s ease, box-shadow .22s ease; }
.hero-product:hover .decision-card { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(30,92,58,.09); }
.decision-card > div:first-child { display: grid; gap: 2px; }
.decision-card > div:first-child span { color: var(--muted); font-size: 11px; }
.decision-card > div:first-child strong { color: var(--green-strong); font-size: 24px; letter-spacing: -.03em; }
.receipt-status { display: flex; align-items: center; gap: 10px; }
.receipt-status > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--green); color: #fff; font-weight: 700; }
.receipt-status div { display: grid; gap: 1px; }
.receipt-status strong { font-size: 12px; }
.receipt-status small { color: var(--muted); font-size: 10px; }
.decision-card.is-deny { border-color: #f3c7c2; background: var(--red-soft); }
.decision-card.is-deny > div:first-child strong { color: var(--red); }
.decision-card.is-deny .receipt-status > span { background: var(--red); }
.floating-note { position: absolute; z-index: 3; display: grid; gap: 2px; min-width: 140px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.9); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-soft); }
.floating-note span { color: var(--green-strong); font-weight: 700; }
.floating-note small { color: var(--muted); font-size: 11px; }
.floating-note--top { top: 42px; right: -40px; transform: translate3d(var(--float-x), var(--float-y), 0); transition: transform .12s ease; }
.floating-note--bottom { bottom: 54px; left: -56px; transform: translate3d(var(--float-x), var(--float-y), 0); transition: transform .16s ease; }

.trust-strip { max-width: var(--max); margin: 0 auto; padding: 56px 40px 70px; text-align: center; }
.trust-strip p { margin-bottom: 30px; color: var(--muted); font-size: 14px; font-weight: 500; }
.trust-strip p strong { color: var(--text); font-weight: 650; }
.trust-logos { display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #7b8491; font-size: clamp(17px, 2vw, 23px); font-weight: 650; letter-spacing: -.04em; }
.section-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.statement { padding: 24px 0 120px; }
.statement-card { position: relative; overflow: hidden; min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 9%; border-radius: 32px; background: var(--green-strong); color: #fff; text-align: center; }
.statement-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(circle, black, transparent 72%); }
.statement-card::before, .statement-card::after { content: ""; position: absolute; border: 1px dashed rgba(202,255,156,.34); border-radius: 50%; }
.statement-card::before { width: 520px; height: 520px; left: -180px; top: -260px; }
.statement-card::after { width: 430px; height: 430px; right: -120px; bottom: -260px; }
.statement-card .section-kicker, .statement-card h2, .statement-card a { position: relative; z-index: 1; }
.statement-card .section-kicker { color: var(--green-lime); }
.statement-card h2 { max-width: 980px; margin: 0 0 34px; font-size: clamp(44px, 5.3vw, 72px); font-weight: 620; line-height: 1.04; }
.statement-card h2 span { color: #a9d9ba; font-weight: 430; }
.statement-card a { display: inline-flex; gap: 10px; color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 5px; }

.platform { padding: 40px 0 140px; }
.section-intro { margin-bottom: 58px; }
.section-intro--center { max-width: 830px; margin-right: auto; margin-left: auto; text-align: center; }
.section-intro .section-kicker { margin-bottom: 18px; }
.section-intro h2, .workflow h2, .evidence-copy h2, .final-cta h2 { margin-bottom: 20px; font-size: clamp(44px, 5vw, 68px); font-weight: 650; line-height: 1.03; }
.section-intro h2 span, .workflow h2 span, .evidence-copy h2 span { color: var(--green); font-weight: 440; }
.section-intro > p:last-child { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: 19px; line-height: 1.5; }
.platform-map { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding-top: 106px; }
.platform-map::before { content: ""; position: absolute; top: 61px; left: 16.66%; right: 16.66%; border-top: 1px dashed #a9b8af; }
.platform-hub { position: absolute; z-index: 2; top: 18px; left: 50%; width: 82px; height: 82px; transform: translateX(-50%); display: grid; place-items: center; border: 12px solid #fff; border-radius: 22px; background: var(--green-lime); color: var(--green-strong); box-shadow: 0 5px 20px rgba(16,24,40,.1); }
.map-line { position: absolute; top: 61px; height: 45px; border-left: 1px dashed #a9b8af; }
.map-line--one { left: 16.66%; }
.map-line--two { left: 50%; }
.map-line--three { left: 83.33%; }
.platform-card { position: relative; min-width: 0; display: flex; flex-direction: column; min-height: 490px; padding: 18px 18px 26px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.platform-card:hover { transform: translateY(-5px); border-color: #c3d9cb; box-shadow: var(--shadow-soft); }
.card-number { align-self: flex-end; color: var(--muted); font-family: var(--mono); font-size: 11px; }
.card-visual { height: 210px; margin: 8px 0 24px; border-radius: 17px; background: #f4f7f5; }
.platform-card h3 { margin: 0 8px 10px; font-size: 25px; font-weight: 650; }
.platform-card > p { margin: 0 8px 24px; color: var(--muted); font-size: 15px; }
.card-link { display: flex; align-items: center; justify-content: space-between; margin: auto 8px 0; padding-top: 18px; border-top: 1px solid var(--line); font-weight: 600; }
.card-link b { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 9px; background: var(--green-soft); color: var(--green); }
.visual-estate { position: relative; }
.visual-estate::before, .visual-estate::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px dashed #a7bdb0; border-radius: 50%; transform: translate(-50%,-50%); }
.visual-estate::before { width: 120px; height: 120px; }
.visual-estate::after { width: 72px; height: 72px; }
.visual-estate i { position: absolute; width: 24px; height: 24px; border: 5px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 2px 6px rgba(16,24,40,.15); }
.visual-estate i:nth-child(1) { left: 48%; top: 18%; background: var(--green-lime); }
.visual-estate i:nth-child(2) { left: 27%; top: 42%; }
.visual-estate i:nth-child(3) { right: 26%; top: 47%; }
.visual-estate i:nth-child(4) { left: 42%; bottom: 15%; background: #91c9a6; }
.visual-estate i:nth-child(5) { right: 15%; top: 20%; background: #d0d5dd; }
.visual-decision { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.visual-decision div { display: flex; justify-content: space-between; padding: 12px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-size: 12px; }
.visual-decision div span { color: var(--muted); }
.visual-decision div b { color: var(--green); }
.visual-decision > strong { margin-top: auto; padding: 12px; border: 1px solid #b7dbc4; border-radius: 10px; background: var(--green-soft); color: var(--green); text-align: center; font-size: 20px; }
.visual-proof { padding: 25px; background: #fbf9f4; }
.visual-proof div { display: flex; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid #ddd7c8; font-size: 12px; }
.visual-proof div b { color: var(--green); }
.visual-proof i { display: block; width: 100%; height: 8px; margin-top: 15px; border-radius: 4px; background: #e5e0d5; }
.visual-proof i:nth-of-type(2) { width: 76%; }
.visual-proof i:nth-of-type(3) { width: 56%; }
.visual-proof small { display: block; margin-top: 23px; color: #777064; font-family: var(--mono); font-size: 10px; }

.action-principles { padding: 120px 0; background: #f7f8fa; }
.principles-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.principles-heading .section-kicker { margin-bottom: 18px; }
.principles-heading h2 { max-width: 760px; margin: 0; font-size: clamp(44px, 5vw, 68px); font-weight: 650; line-height: 1.03; }
.principles-heading h2 span { color: var(--green); font-weight: 440; }
.principles-heading > p { max-width: 420px; margin: 0 0 6px; color: var(--muted); font-size: 18px; }
.principles-grid { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: repeat(3, minmax(190px, auto)); gap: 16px; }
.principle-card { min-width: 0; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.principle-card--decision { grid-row: 1 / 4; display: flex; flex-direction: column; padding: 34px; background: linear-gradient(145deg, #ffffff 55%, #edf7f0); }
.principle-label { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--muted); font-size: 12px; font-weight: 650; }
.principle-label span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; color: var(--green); font-family: var(--mono); font-size: 10px; }
.principle-card h3 { margin: 0 0 8px; font-size: 25px; font-weight: 650; }
.principle-card > p { margin: 0; color: var(--muted); font-size: 14px; }
.principle-card--decision > p { max-width: 500px; font-size: 16px; }
.policy-evaluation { overflow: hidden; margin-top: 28px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.84); box-shadow: 0 8px 24px rgba(16,24,40,.06); }
.policy-evaluation > div { display: grid; grid-template-columns: 30px 88px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 13px 15px; border-bottom: 1px solid var(--line); font-size: 12px; }
.policy-index { color: var(--muted); font-family: var(--mono); font-size: 10px; }
.policy-evaluation > div > span:nth-child(2) { color: var(--muted); }
.policy-evaluation > div strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.policy-evaluation em { color: var(--green); font-family: var(--mono); font-size: 9px; font-style: normal; font-weight: 700; }
.policy-evaluation footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 17px 18px; background: var(--green-soft); }
.policy-evaluation footer span { color: var(--muted); font-size: 10px; }
.policy-evaluation footer strong { color: var(--green); font-size: 21px; letter-spacing: -.03em; }
.principle-card--fast { position: relative; overflow: hidden; padding-right: 185px; }
.latency-readout { position: absolute; right: 28px; top: 50%; width: 130px; transform: translateY(-50%); display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.latency-readout strong { color: var(--green); font-size: 60px; line-height: 1; letter-spacing: -.07em; }
.latency-readout span { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.latency-readout i { position: absolute; left: 2px; right: 2px; bottom: -17px; height: 22px; border-top: 1px solid var(--line); background: linear-gradient(135deg, transparent 0 46%, var(--green-bright) 47% 51%, transparent 52%); background-size: 19px 15px; opacity: .55; }
.payload-match { display: grid; grid-template-columns: 1fr 16px auto 16px 1fr; align-items: center; gap: 6px; margin: 16px 0 18px; }
.payload-match div { min-width: 0; display: grid; gap: 3px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 9px; background: #f9fafb; }
.payload-match span { color: var(--muted); font-size: 9px; }
.payload-match div strong { overflow: hidden; font-size: 11px; text-overflow: ellipsis; }
.payload-match i { height: 1px; background: var(--green-bright); }
.payload-match > b { padding: 5px 7px; border-radius: 6px; background: var(--green-soft); color: var(--green); font-family: var(--mono); font-size: 8px; white-space: nowrap; }
.proof-strip { display: flex; align-items: center; gap: 12px; margin: 14px 0 17px; padding: 12px; border: 1px solid #cfe2d5; border-radius: 11px; background: var(--green-soft); }
.proof-check { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 9px; background: var(--green); color: #fff; font-weight: 800; }
.proof-strip div { min-width: 0; display: grid; gap: 2px; }
.proof-strip div strong { font-size: 12px; }
.proof-strip small { overflow: hidden; color: var(--muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.proof-strip > b { margin-left: auto; color: var(--green); font-family: var(--mono); font-size: 9px; }

.workflow { display: grid; grid-template-columns: .84fr 1.16fr; gap: 110px; padding: 150px 0; }
.workflow-copy { align-self: center; }
.workflow-copy > p:not(.section-kicker) { max-width: 510px; margin-bottom: 32px; color: var(--muted); font-size: 18px; }
.workflow-list { margin: 0; padding: 0; list-style: none; }
.workflow-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.workflow-list li:last-child { border-bottom: 1px solid var(--line); }
.workflow-list > li > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 11px; color: var(--green); font-family: var(--mono); font-size: 11px; }
.workflow-list h3 { margin: 0 0 5px; font-size: 21px; font-weight: 650; }
.workflow-list p { margin: 0; color: var(--muted); }

.evidence { padding: 10px 0 140px; }
.evidence-card { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; padding: 72px; border-radius: 30px; background: var(--green-soft); }
.receipt-paper { overflow: hidden; border: 1px solid #e0dbd0; border-radius: 16px; background: #fbf9f4; color: #16181b; box-shadow: var(--shadow-soft); transform: rotate(-1.2deg); }
.receipt-paper header { display: flex; justify-content: space-between; align-items: flex-start; padding: 22px 24px; border-bottom: 1px solid #e0dbd0; }
.receipt-paper header > div { display: grid; gap: 4px; }
.receipt-paper header span { color: #6c695f; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.receipt-paper header strong { font-size: 16px; }
.receipt-paper header b { padding: 6px 9px; border: 1px solid #b7d0bd; border-radius: 6px; color: var(--green); font-family: var(--mono); font-size: 10px; }
.receipt-paper dl { margin: 0; padding: 10px 24px; }
.receipt-paper dl div { display: grid; grid-template-columns: 34% 1fr; padding: 10px 0; border-bottom: 1px solid #ebe7dd; font-size: 12px; }
.receipt-paper dl div:last-child { border: 0; }
.receipt-paper dt { color: #767269; }
.receipt-paper dd { margin: 0; overflow-wrap: anywhere; }
.allow-chip { padding: 3px 6px; border-radius: 5px; background: #e4ece3; color: var(--green); font-family: var(--mono); font-size: 10px; font-weight: 700; }
.receipt-match span { margin-left: 7px; color: var(--green); font-weight: 700; }
.receipt-paper footer { display: flex; align-items: center; gap: 11px; padding: 17px 24px; border-top: 1px solid #e0dbd0; background: #f5f2eb; }
.receipt-seal { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; }
.receipt-paper footer div { display: grid; gap: 2px; }
.receipt-paper footer strong { font-size: 12px; }
.receipt-paper footer small { color: #767269; font-size: 9px; }
.evidence-copy > p:not(.section-kicker) { color: var(--muted); font-size: 18px; }

.final-cta { padding: 0 0 28px; }
.final-cta__inner { position: relative; overflow: hidden; min-height: 570px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 30px; border-radius: 32px; background: var(--green); color: #fff; text-align: center; }
.final-cta__inner::before { content:""; position:absolute; width:620px;height:620px;left:-220px;top:-300px;border:1px dashed rgba(255,255,255,.25);border-radius:50%; }
.final-cta__inner::after { content:""; position:absolute; width:420px;height:420px;right:-120px;bottom:-230px;border:1px solid rgba(255,255,255,.2);border-radius:50%; }
.cta-orbit { position:absolute;width:230px;height:230px;right:9%;top:12%;border:1px dashed rgba(202,255,156,.4);border-radius:50%; }
.cta-orbit::after{content:"";position:absolute;width:20px;height:20px;left:18px;top:35px;border:5px solid var(--green);border-radius:50%;background:var(--green-lime)}
.final-cta .section-kicker, .final-cta h2, .final-cta p, .final-cta .button { position:relative;z-index:1; }
.final-cta .section-kicker { color: var(--green-lime); }
.final-cta h2 span { color: #b9e3c8; font-weight: 430; }
.final-cta__inner > p:not(.section-kicker) { max-width: 600px; margin-bottom: 30px; color: #dcefe3; font-size: 19px; }

.site-footer { padding: 72px max(32px, calc((100vw - var(--max))/2)) 24px; background: #101828; color: #f2f4f7; }
.footer-main { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; padding-bottom: 68px; }
.footer-brand p { max-width: 340px; margin: 22px 0 0; color: #98a2b3; }
.site-footer .brand { color: #fff; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 12px; }
.footer-links strong { margin-bottom: 7px; color: #667085; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.footer-links a { color: #d0d5dd; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #29323f; color: #667085; font-family: var(--mono); font-size: 11px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .floating-note--top { right: -12px; }
  .floating-note--bottom { left: -20px; }
  .principles-heading { gap: 48px; }
  .principle-card--fast { padding-right: 155px; }
  .latency-readout { right: 16px; width: 116px; }
  .workflow { gap: 60px; }
  .evidence-card { gap: 52px; padding: 52px; }
}

@media (max-width: 820px) {
  .announcement { font-size: 12px; }
  .site-header { top: 54px; width: calc(100% - 28px); min-height: 66px; padding: 10px 10px 10px 16px; border-radius: 19px; }
  .site-header.is-scrolled { top: 10px; }
  .brand { font-size: 21px; }
  .brand-mark { width: 27px; height: 27px; }
  .header-actions .nav-text-link, .header-actions .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-float); }
  .mobile-nav:not([hidden]) { display: grid; gap: 4px; }
  .mobile-nav > a:not(.button) { padding: 12px 10px; border-radius: 10px; }
  .mobile-nav > a:not(.button):hover { background: var(--green-soft); }
  .mobile-nav .button { margin-top: 6px; }
  .hero { min-height: auto; margin: 0 8px; border-radius: 0 0 26px 26px; }
  .hero-content { width: min(100% - 40px, 680px); min-height: auto; grid-template-columns: 1fr; padding: 180px 0 90px; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(46px, 11vw, 67px); }
  .hero-product { justify-self: center; margin-top: 10px; }
  .hero-orbit--one { right: -300px; }
  .hero-orbit--two { right: -200px; }
  .trust-strip { padding: 48px 24px 58px; overflow: hidden; }
  .trust-logos { min-width: 840px; animation: logo-drift 24s linear infinite; }
  @keyframes logo-drift { to { transform: translateX(-45%); } }
  .section-shell { width: min(100% - 28px, 680px); }
  .statement { padding-bottom: 90px; }
  .statement-card { min-height: 480px; padding: 65px 28px; border-radius: 25px; }
  .statement-card h2 { font-size: clamp(39px, 9vw, 58px); }
  .platform { padding-bottom: 100px; }
  .platform-map { grid-template-columns: 1fr; gap: 14px; padding-top: 88px; }
  .platform-map::before { left: 50%; right: auto; top: 52px; height: 36px; border-top: 0; border-left: 1px dashed #a9b8af; }
  .platform-hub { top: 4px; }
  .map-line { display: none; }
  .platform-card { min-height: auto; }
  .card-visual { height: 190px; }
  .action-principles { padding: 90px 0; }
  .principles-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
  .principles-heading > p { max-width: 580px; }
  .principles-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .principle-card--decision { grid-row: auto; min-height: 580px; }
  .workflow { grid-template-columns: 1fr; gap: 50px; padding: 100px 0; }
  .evidence { padding-bottom: 100px; }
  .evidence-card { grid-template-columns: 1fr; gap: 50px; padding: 34px 24px 46px; }
  .receipt-paper { transform: none; }
  .evidence-copy { order: -1; }
  .final-cta__inner { min-height: 530px; border-radius: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 540px) {
  .announcement { min-height: 44px; padding: 7px 12px; line-height: 1.25; }
  .site-header { top: 56px; }
  .hero-content { width: calc(100% - 28px); padding-top: 166px; padding-bottom: 58px; }
  .hero h1 { margin-bottom: 20px; font-size: 43px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero-actions .button { width: 100%; }
  .product-window { border-radius: 18px; }
  .floating-note { display: none; }
  .checks-list div { display: grid; }
  .decision-card { align-items: flex-start; flex-direction: column; }
  .action-summary { grid-template-columns: auto 1fr; }
  .write-chip { display: none; }
  .statement-card { min-height: 440px; }
  .section-intro h2, .workflow h2, .evidence-copy h2, .final-cta h2 { font-size: 39px; }
  .platform-card h3 { font-size: 23px; }
  .principles-heading h2 { font-size: 39px; }
  .principle-card { padding: 22px; }
  .principle-card--decision { min-height: 520px; padding: 22px; }
  .policy-evaluation > div { grid-template-columns: 24px minmax(0,1fr) auto; gap: 7px; padding: 13px 11px; }
  .policy-evaluation > div > span:nth-child(2) { display: none; }
  .principle-card--fast { min-height: 285px; padding-right: 22px; padding-bottom: 126px; }
  .latency-readout { top: auto; right: 22px; bottom: 35px; left: 22px; width: auto; transform: none; justify-content: flex-start; }
  .proof-strip > b { display: none; }
  .workflow-list li { grid-template-columns: 44px 1fr; gap: 14px; }
  .receipt-paper header { gap: 14px; }
  .receipt-paper dl div { grid-template-columns: 1fr; gap: 3px; }
  .receipt-paper dd { font-size: 10px; }
  .receipt-match span { display: block; margin: 3px 0 0; }
  .final-cta__inner { min-height: 500px; padding-right: 20px; padding-left: 20px; }
  .footer-links { gap: 26px; }
}

@media (max-width: 350px) {
  .phrase-lock { white-space: normal; }
}

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