:root {
  --ink: #050706;
  --ink-soft: #0b0f0c;
  --paper: #f0f2eb;
  --paper-bright: #f8faf4;
  --muted: #969d94;
  --line-dark: rgba(240, 242, 235, 0.16);
  --line-light: rgba(5, 7, 6, 0.18);
  --signal: #afff3f;
  --signal-soft: rgba(175, 255, 63, 0.12);
  --danger: #ff6a55;
  --header-height: 88px;
  --pad: clamp(24px, 4vw, 72px);
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  background: var(--signal);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background 260ms ease, border-color 260ms ease, height 260ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line-dark);
  background: rgba(5, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.product-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.af-monogram {
  display: inline-grid;
  width: 38px;
  height: 38px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid currentColor;
  line-height: 36px;
  text-align: center;
  font-size: 13px;
}

.af-monogram span:first-child {
  background: var(--signal);
  color: var(--ink);
}

.product-name {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--signal);
}

.site-nav a[aria-current='page'] {
  color: var(--signal);
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  border: 1px solid rgba(240, 242, 235, 0.42);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-toggle i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(240, 242, 235, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 242, 235, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: '';
  mask-image: linear-gradient(to right, transparent 0%, black 40%, black 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 76% 48%, rgba(175, 255, 63, 0.08), transparent 28%), linear-gradient(90deg, rgba(5, 7, 6, 0.98) 0%, rgba(5, 7, 6, 0.84) 48%, rgba(5, 7, 6, 0.2) 76%, rgba(5, 7, 6, 0.55) 100%);
  content: '';
}

.hero-content {
  z-index: 2;
  width: min(850px, 72vw);
  align-self: center;
  padding: calc(var(--header-height) + 60px) var(--pad) 170px;
}

.eyebrow,
.section-index {
  margin: 0;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--signal);
  animation: enter-up 900ms 100ms both var(--ease);
}

.hero-eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: '';
}

.hero h1 {
  max-width: 820px;
  margin: 30px 0 24px;
  font-size: clamp(58px, 8.6vw, 144px);
  font-weight: 800;
  letter-spacing: -0.078em;
  line-height: 0.8;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  animation: enter-up 950ms both var(--ease);
}

.hero h1 span:first-child {
  color: var(--paper);
  animation-delay: 160ms;
}

.hero h1 span:last-child {
  color: var(--signal);
  animation-delay: 240ms;
}

.hero-deck {
  max-width: 580px;
  margin: 0;
  color: #b6bbb4;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  animation: enter-up 900ms 330ms both var(--ease);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  animation: enter-up 900ms 420ms both var(--ease);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

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

.button-primary:hover:not(:disabled) {
  background: var(--paper-bright);
}

.button-outline {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--paper);
}

.button-outline:hover:not(:disabled) {
  border-color: var(--signal);
  color: var(--signal);
}

.text-link,
.text-button {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.text-link::after,
.text-button::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: '';
  transition: transform 220ms var(--ease);
}

.text-link:hover::after,
.text-button:hover:not(:disabled)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.hero-footer {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 28px;
  left: var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  animation: enter-up 900ms 500ms both var(--ease);
}

.powered-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.powered-lockup img {
  width: 118px;
  max-height: 26px;
  filter: invert(1);
  object-fit: contain;
  object-position: left center;
}

.hero-readout {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px var(--signal);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero-field {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -10vw;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  animation: field-enter 1.5s 250ms both var(--ease);
}

.signal-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(175, 255, 63, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.signal-orbit::before,
.signal-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--signal);
  content: '';
}

.signal-orbit::before {
  top: 49%;
  left: -3px;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 18px var(--signal);
}

.signal-orbit::after {
  top: 12%;
  right: 12%;
  width: 4px;
  height: 4px;
}

.signal-orbit-one {
  width: 84%;
  height: 84%;
  animation: rotate 30s linear infinite;
}

.signal-orbit-two {
  width: 58%;
  height: 58%;
  border-style: dashed;
  animation: rotate-reverse 22s linear infinite;
}

.signal-orbit-three {
  width: 34%;
  height: 34%;
  animation: rotate 14s linear infinite;
}

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 18%;
  min-width: 120px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--signal);
  background: rgba(175, 255, 63, 0.04);
  box-shadow: 0 0 80px rgba(175, 255, 63, 0.1), inset 0 0 40px rgba(175, 255, 63, 0.05);
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
}

.signal-core::before,
.signal-core::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--signal);
  content: '';
}

.signal-core::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid;
  border-left: 3px solid;
}

.signal-core::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid;
  border-bottom: 3px solid;
}

.signal-core-label {
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 800;
}

.signal-core-state {
  position: absolute;
  bottom: 10px;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.signal-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(240, 242, 235, 0.1);
  stroke-width: 1;
}

.signal-packet {
  position: absolute;
  display: grid;
  width: 32px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(175, 255, 63, 0.5);
  background: var(--ink);
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 8px;
}

.packet-one {
  top: 28%;
  left: 12%;
  animation: packet-float 4s ease-in-out infinite;
}

.packet-two {
  right: 16%;
  bottom: 24%;
  animation: packet-float 5s 600ms ease-in-out infinite;
}

.packet-three {
  top: 12%;
  right: 30%;
  animation: packet-float 4.6s 1.2s ease-in-out infinite;
}

.section-pad {
  padding: clamp(92px, 12vw, 190px) var(--pad);
}

.section-index {
  color: #71766e;
}

.section-index-light {
  color: #727a72;
}

.statement {
  display: grid;
  min-height: 90vh;
  grid-template-columns: minmax(150px, 0.6fr) 2.4fr 1fr;
  align-items: start;
  gap: 48px;
  background: var(--paper);
}

.statement-title {
  margin: -0.14em 0 0;
  font-size: clamp(48px, 6.6vw, 112px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.statement-title em {
  color: transparent;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  -webkit-text-stroke: 1.4px var(--ink);
}

.statement-detail {
  align-self: end;
  padding-top: 240px;
  border-top: 1px solid var(--line-light);
}

.statement-detail p {
  margin: 0 0 22px;
  font-size: 16px;
}

.live-test {
  background: var(--ink);
  color: var(--paper);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 72px;
}

.section-heading h2,
.method h2,
.docs h2,
.security-model h2,
.access h2 {
  margin: 16px 0 0;
  font-size: clamp(48px, 6vw, 98px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.section-heading > p {
  width: min(440px, 38vw);
  margin: 0;
  color: #9ca29b;
  font-size: 16px;
}

.verifier {
  position: relative;
  border-top: 1px solid rgba(240, 242, 235, 0.35);
  border-bottom: 1px solid rgba(240, 242, 235, 0.35);
  background-image: linear-gradient(rgba(240, 242, 235, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(240, 242, 235, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

.verifier::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(175, 255, 63, 0.06), transparent);
  content: '';
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.verifier[data-state='processing']::after {
  opacity: 1;
  animation: scan 1.35s linear infinite;
}

.verifier-topline {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #899087;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.verifier-clock {
  color: var(--signal);
}

.verifier-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.75fr);
  min-height: 460px;
}

.verifier-primary {
  display: flex;
  align-items: center;
  gap: clamp(38px, 6vw, 100px);
  padding: clamp(48px, 7vw, 110px);
  border-right: 1px solid var(--line-dark);
}

.proof-glyph {
  position: relative;
  flex: 0 0 clamp(160px, 19vw, 260px);
  aspect-ratio: 1;
}

.proof-glyph svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.proof-glyph circle {
  fill: none;
  stroke-width: 1.5;
}

.glyph-track {
  stroke: rgba(240, 242, 235, 0.18);
}

.glyph-progress {
  stroke: var(--signal);
  stroke-dasharray: 603;
  stroke-dashoffset: 603;
  filter: drop-shadow(0 0 7px rgba(175, 255, 63, 0.5));
  transition: stroke-dashoffset 900ms var(--ease);
}

.glyph-mark {
  fill: none;
  stroke: var(--signal);
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 6;
  transition: stroke-dashoffset 600ms 500ms var(--ease);
}

.glyph-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #626961;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.08em;
  transition: color 400ms ease, opacity 400ms ease;
}

.verifier[data-state='processing'] .glyph-progress {
  stroke-dashoffset: 260;
  animation: glyph-spin 1.2s linear infinite;
}

.verifier[data-state='verified'] .glyph-progress {
  stroke-dashoffset: 0;
}

.verifier[data-state='verified'] .glyph-mark {
  stroke-dashoffset: 0;
}

.verifier[data-state='verified'] .glyph-label {
  opacity: 0;
}

.verifier[data-state='error'] .glyph-progress {
  stroke: var(--danger);
  stroke-dashoffset: 120;
}

.verifier-copy {
  max-width: 470px;
}

.verifier-kicker {
  margin: 0 0 14px;
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.verifier-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.verifier-copy > p:last-child {
  max-width: 390px;
  margin: 0;
  color: #979e96;
  font-size: 15px;
}

.verification-stages {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verification-stages li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-dark);
  color: #70766f;
  transition: background 240ms ease, color 240ms ease;
}

.verification-stages li:last-child {
  border-bottom: 0;
}

.verification-stages li span,
.verification-stages li i {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verification-stages li strong {
  font-size: 12px;
}

.verification-stages li.is-active {
  background: rgba(175, 255, 63, 0.055);
  color: var(--paper);
}

.verification-stages li.is-active span,
.verification-stages li.is-active i {
  color: var(--signal);
}

.verification-stages li.is-done {
  color: #aeb5ac;
}

.verification-stages li.is-done i {
  color: var(--signal);
}

.verification-stages li.is-error {
  background: rgba(255, 106, 85, 0.06);
  color: #d8b1aa;
}

.verification-stages li.is-error span,
.verification-stages li.is-error i {
  color: var(--danger);
}

.verifier-token {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border-top: 1px solid var(--signal);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(175, 255, 63, 0.06);
}

.verifier-token[hidden] {
  display: none;
}

.verifier-token div {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.verifier-token span {
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verifier-token code {
  overflow: hidden;
  color: #b8beb6;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.verifier-token button,
.code-panel-head button {
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.verifier-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 18px;
}

.verifier-actions .text-button {
  margin-left: auto;
  color: #a0a69f;
}

.demo-note {
  margin: 0;
  padding: 0 18px 24px;
  color: #777e76;
  font-size: 11px;
}

.demo-note span {
  color: var(--paper);
  font-weight: 700;
}

.method {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: clamp(70px, 12vw, 180px);
  background: var(--paper-bright);
}

.method-lead {
  position: sticky;
  top: 110px;
  align-self: start;
}

.method-lead > p {
  max-width: 380px;
  margin: 30px 0 0;
  color: #5f655d;
}

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

.method-rail li {
  position: relative;
  min-height: 260px;
  padding: 34px 0 50px 90px;
  border-top: 1px solid var(--line-light);
}

.method-rail li > span {
  position: absolute;
  top: 37px;
  left: 0;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
}

.method-rail h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 52px);
  letter-spacing: -0.05em;
}

.method-rail p {
  max-width: 500px;
  margin: 0;
  color: #62685f;
}

.method-rail code {
  display: block;
  margin-top: 34px;
  color: #51574f;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
}

.docs {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.35fr);
  gap: clamp(70px, 10vw, 160px);
  background: var(--ink-soft);
  color: var(--paper);
}

.docs-sidebar > p {
  max-width: 390px;
  margin: 30px 0;
  color: #979e96;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 48px 0 0;
  padding: 0;
  color: #aeb4ad;
  list-style: none;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list li::before {
  margin-right: 8px;
  color: var(--signal);
  content: '•';
}

.docs-workspace {
  min-width: 0;
}

.code-tabs {
  display: flex;
  min-height: 54px;
  align-items: flex-end;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.code-tabs button {
  position: relative;
  height: 54px;
  border: 0;
  background: transparent;
  color: #777e76;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.code-tabs button[aria-selected='true'] {
  color: var(--paper);
}

.code-tabs button[aria-selected='true']::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: '';
}

.code-panel {
  border-bottom: 1px solid var(--line-dark);
  background: #070a08;
}

.code-panel[hidden] {
  display: none;
}

.code-panel-head {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #687068;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.code-panel pre {
  min-height: 330px;
  margin: 0;
  padding: 30px 24px;
  overflow-x: auto;
  color: #c5cbc3;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.8;
  tab-size: 2;
}

.docs-warning {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid rgba(175, 255, 63, 0.55);
}

.docs-warning strong {
  color: var(--signal);
  font-size: 12px;
}

.docs-warning p {
  margin: 0;
  color: #8d948c;
  font-size: 12px;
}

.docs-link {
  display: inline-block;
  margin-top: 30px;
  color: #aeb5ad;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.docs-link:hover {
  color: var(--signal);
}

.security-model {
  background: var(--signal);
}

.security-model .section-index {
  color: rgba(5, 7, 6, 0.58);
}

.security-model h2 {
  margin-top: 30px;
}

.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid rgba(5, 7, 6, 0.38);
  border-bottom: 1px solid rgba(5, 7, 6, 0.38);
}

.claim-grid > div {
  min-height: 300px;
  padding: 36px 40px 36px 0;
}

.claim-grid > div + div {
  padding-left: 40px;
  border-left: 1px solid rgba(5, 7, 6, 0.38);
}

.claim-grid span {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.claim-grid p {
  max-width: 650px;
  margin: 64px 0 0;
  font-size: clamp(27px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.security-footnote {
  max-width: 880px;
  margin: 34px 0 0 auto;
  font-size: 13px;
}

.access {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 12vw, 190px);
  background: var(--ink);
  color: var(--paper);
}

.access-intro > p {
  max-width: 440px;
  margin: 34px 0 0;
  color: #969d95;
}

.powered-lockup-large {
  margin-top: 90px;
}

.powered-lockup-large img {
  width: 150px;
  max-height: 34px;
}

.access-form {
  align-self: start;
}

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

.access-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
  color: #a8aea6;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-form input,
.access-form textarea,
.access-form select {
  width: 100%;
  min-height: 56px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(240, 242, 235, 0.28);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  text-transform: none;
  transition: border-color 180ms ease;
}

.access-form textarea {
  min-height: 130px;
  resize: vertical;
}

.access-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--signal) 50%), linear-gradient(135deg, var(--signal) 50%, transparent 50%);
  background-position: calc(100% - 14px) 25px, calc(100% - 8px) 25px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.access-form option {
  background: var(--ink);
}

.access-form input:focus,
.access-form textarea:focus,
.access-form select:focus {
  border-color: var(--signal);
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: #565c56;
}

.access-checks {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.access-checks legend {
  margin-bottom: 8px;
  color: #a8aea6;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-checks > p {
  margin: 0 0 16px;
  color: #6e756e;
  font-size: 12px;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.check-grid label,
.access-agreements label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #c2c7bf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: none;
}

.access-form .check-grid input[type='checkbox'],
.access-form .access-agreements input[type='checkbox'] {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  accent-color: var(--signal);
}

.access-agreements {
  display: grid;
  gap: 12px;
  margin: 4px 0 30px;
  padding: 20px 0;
  border-top: 1px solid rgba(240, 242, 235, 0.15);
  border-bottom: 1px solid rgba(240, 242, 235, 0.15);
}

.access-agreements a {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 24px;
}

.form-submit p {
  max-width: 320px;
  margin: 0;
  color: #6e756e;
  font-size: 10px;
}

.form-status {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--signal);
  color: var(--signal);
  font-size: 13px;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-error {
  border-color: var(--danger);
  color: var(--danger);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 34px var(--pad);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: #777e76;
  font-size: 11px;
}

.footer-brand {
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
}

.site-footer p a {
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
}

.footer-meta {
  grid-column: 3;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
}

.error-page main {
  width: min(760px, calc(100% - 48px));
}

.error-page p {
  margin: 40px 0 10px;
  color: var(--signal);
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
}

.error-page h1 {
  margin: 0 0 44px;
  font-size: clamp(54px, 10vw, 120px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

@keyframes enter-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes field-enter {
  from { opacity: 0; transform: translateY(-50%) scale(0.82) rotate(-8deg); }
  to { opacity: 1; transform: translateY(-50%) scale(1) rotate(0); }
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes pulse-dot {
  50% { opacity: 0.35; box-shadow: 0 0 5px var(--signal); }
}

@keyframes packet-float {
  50% { transform: translateY(-10px); }
}

@keyframes scan {
  to { transform: translateX(100%); }
}

@keyframes glyph-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .statement {
    grid-template-columns: 120px 1fr;
  }

  .statement-detail {
    grid-column: 2;
    max-width: 520px;
    padding-top: 60px;
  }

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

  .verifier-primary {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .verification-stages {
    grid-template-columns: repeat(4, 1fr);
  }

  .verification-stages li {
    min-height: 100px;
    grid-template-columns: 1fr;
    gap: 4px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .verification-stages li:last-child {
    border-right: 0;
  }

  .method,
  .docs,
  .access {
    grid-template-columns: 1fr;
  }

  .method-lead {
    position: static;
  }

  .docs-sidebar,
  .access-intro {
    max-width: 780px;
  }

  .powered-lockup-large {
    margin-top: 50px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .product-name {
    font-size: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: none;
    width: min(86vw, 380px);
    height: 100svh;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 28px 40px;
    border-left: 1px solid var(--line-dark);
    background: var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 22px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    padding: 0 18px;
    border: 1px solid var(--signal);
  }

  .hero-content {
    width: 100%;
    align-self: end;
    padding: 128px var(--pad) 186px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(54px, 17vw, 92px);
    line-height: 0.84;
  }

  .hero-deck {
    max-width: 94%;
    font-size: 16px;
  }

  .hero-field {
    top: 26%;
    right: -45vw;
    width: 120vw;
    opacity: 0.65;
  }

  .hero::after {
    background: linear-gradient(0deg, var(--ink) 26%, rgba(5, 7, 6, 0.46) 66%, rgba(5, 7, 6, 0.66) 100%);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-readout span:last-child {
    display: none;
  }

  .statement {
    display: block;
    min-height: auto;
  }

  .statement-title {
    margin-top: 32px;
  }

  .statement-detail {
    margin-top: 60px;
    padding-top: 30px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }

  .section-heading > p {
    width: 100%;
  }

  .verifier-primary {
    align-items: flex-start;
    flex-direction: column;
    gap: 36px;
    padding: 48px 24px;
  }

  .proof-glyph {
    flex-basis: 150px;
    width: 150px;
  }

  .verification-stages {
    grid-template-columns: 1fr 1fr;
  }

  .verification-stages li {
    min-height: 94px;
    padding: 14px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .verification-stages li:nth-child(2n) {
    border-right: 0;
  }

  .verifier-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .verifier-actions .text-button {
    min-height: 44px;
    align-self: center;
    margin-left: 0;
  }

  .verifier-token {
    align-items: flex-start;
    flex-direction: column;
  }

  .method-rail li {
    min-height: 230px;
    padding-left: 56px;
  }

  .code-tabs {
    gap: 18px;
    overflow-x: auto;
  }

  .code-tabs button {
    flex: 0 0 auto;
  }

  .code-panel pre {
    min-height: 300px;
    font-size: 11px;
  }

  .docs-warning {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .claim-grid > div {
    min-height: 250px;
    padding: 30px 0;
  }

  .claim-grid > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(5, 7, 6, 0.38);
    border-left: 0;
  }

  .claim-grid p {
    margin-top: 44px;
  }

  .security-footnote {
    margin-top: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-meta {
    grid-column: 1;
    text-align: left;
  }
}

@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;
  }
}

/* AF Verify public routes */
[hidden],
[data-route-page][hidden] {
  display: none !important;
}

body.route-view {
  background: var(--ink);
}

body.route-view .site-header:not(.is-scrolled) {
  border-color: var(--line-dark);
  background: rgba(5, 7, 6, 0.76);
  backdrop-filter: blur(18px);
}

.nav-login {
  color: #a4aba3;
}

.hero-content {
  width: min(980px, 76vw);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 7.15vw, 116px);
  line-height: 0.87;
}

.hero h1 span:last-child {
  margin-top: 0.08em;
}

.identity-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper);
}

.identity-rail > div {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  gap: 10px;
  padding: 28px var(--pad);
  border-right: 1px solid var(--line-dark);
}

.identity-rail > div:last-child {
  border-right: 0;
}

.identity-rail span,
.identity-rail small,
.product-sequence article > span,
.trust-table span,
.endpoint-map article > div > span,
.pricing-grid article > p,
.scenario-picker > p,
.scenario-picker small,
.demo-request-grid > div > span,
.status-row small,
.security-list article > span,
.contact-lines span {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.identity-rail span,
.identity-rail small {
  color: #747b74;
}

.identity-rail strong {
  align-self: end;
  font-size: 18px;
}

.identity-rail small {
  font-weight: 400;
}

.dark-link {
  display: inline-block;
  margin-top: 36px;
  color: var(--ink);
}

.home-demo {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
  background: var(--ink-soft);
  color: var(--paper);
}

.home-demo h2,
.closing h2,
.subhero h1,
.product-sequence h2,
.route-cta h2,
.developer-note h2,
.demo-explainer h2,
.access-intro h1,
.about-body h2,
.security-list h2,
.security-disclosure h2 {
  margin: 16px 0 0;
  font-size: clamp(44px, 5.4vw, 88px);
  font-weight: 750;
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.proof-stream {
  display: grid;
  align-self: center;
  border-top: 1px solid var(--line-dark);
}

.proof-stream span {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #aeb5ad;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
}

.proof-stream i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(175, 255, 63, 0.7);
}

.proof-stream span:nth-child(1) i { animation: pulse-dot 1.8s infinite; }
.proof-stream span:nth-child(2) i { animation: pulse-dot 1.8s 250ms infinite; }
.proof-stream span:nth-child(3) i { animation: pulse-dot 1.8s 500ms infinite; }
.proof-stream span:nth-child(4) i { animation: pulse-dot 1.8s 750ms infinite; }

.home-demo-actions {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.home-demo-actions p {
  max-width: 550px;
  margin: 0;
  color: #8e958d;
  font-size: 13px;
}

.closing {
  min-height: 78svh;
  background: var(--paper-bright);
}

.closing .eyebrow {
  color: #60665f;
}

.closing h2 {
  max-width: 1100px;
  margin-top: 38px;
  font-size: clamp(58px, 8.3vw, 138px);
}

.closing > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(30px, 7vw, 100px);
  margin-top: 70px;
}

.closing > div p {
  max-width: 390px;
  margin: 0;
  color: #686e66;
  font-size: 12px;
}

.route-page {
  min-height: 100svh;
  background: var(--paper-bright);
  color: var(--ink);
}

.subhero {
  position: relative;
  display: grid;
  min-height: min(790px, 88svh);
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(60px, 11vw, 180px);
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(100px, 14vw, 190px)) var(--pad) clamp(70px, 9vw, 120px);
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.subhero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(240,242,235,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(240,242,235,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: '';
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.subhero::after {
  position: absolute;
  z-index: -1;
  right: -12vw;
  bottom: -65%;
  width: min(72vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(175,255,63,.23);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(175,255,63,.025), 0 0 0 160px rgba(175,255,63,.018);
  content: '';
}

.subhero .eyebrow {
  color: var(--signal);
}

.subhero h1 {
  max-width: 1050px;
  margin-top: 30px;
  font-size: clamp(57px, 7.5vw, 124px);
}

.subhero > p {
  max-width: 500px;
  margin: 0;
  color: #a4aaa3;
  font-size: clamp(16px, 1.4vw, 20px);
}

.compact-subhero {
  min-height: min(650px, 76svh);
}

.product-sequence {
  padding-top: 0;
  padding-bottom: 0;
}

.product-sequence article {
  display: grid;
  min-height: 470px;
  grid-template-columns: .45fr 1.2fr .9fr;
  align-items: start;
  gap: clamp(40px, 8vw, 130px);
  padding: clamp(70px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line-light);
}

.product-sequence article > span {
  color: #6d736c;
}

.product-sequence h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 82px);
}

.product-sequence article > p {
  max-width: 480px;
  margin: 10px 0 0;
  color: #5e645c;
  font-size: 17px;
}

.trust-table {
  display: grid;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--signal);
}

.trust-table > div {
  display: grid;
  min-height: 105px;
  grid-template-columns: .6fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(5,7,6,.32);
}

.trust-table span,
.trust-table small {
  color: rgba(5,7,6,.64);
}

.trust-table strong {
  font-size: 18px;
}

.route-cta {
  display: flex;
  min-height: 450px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: clamp(90px, 12vw, 170px) var(--pad);
  background: var(--ink);
  color: var(--paper);
}

.route-cta h2 {
  max-width: 980px;
  margin: 0;
}

.route-cta .button {
  flex: 0 0 auto;
}

.endpoint-map {
  padding-top: 0;
  padding-bottom: 0;
}

.endpoint-map article {
  display: grid;
  min-height: 210px;
  grid-template-columns: 80px 1fr 70px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
}

.endpoint-map article > code,
.endpoint-map article > strong {
  font-family: Consolas, 'Courier New', monospace;
  font-size: 11px;
}

.endpoint-map article > strong {
  color: #747a72;
  text-align: right;
}

.endpoint-map article > div > span {
  color: #787e77;
}

.endpoint-map h2 {
  margin: 10px 0;
  font-family: Consolas, 'Courier New', monospace;
  font-size: clamp(21px, 2.6vw, 40px);
  letter-spacing: -.04em;
}

.endpoint-map p {
  max-width: 700px;
  margin: 0;
  color: #646a62;
}

.developer-note {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 11vw, 170px);
  background: var(--ink-soft);
  color: var(--paper);
}

.developer-note .eyebrow {
  color: var(--signal);
}

.developer-note pre {
  margin: 0;
  padding: 34px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  background: #050706;
  color: #b9c0b7;
  font: 12px/1.8 Consolas, 'Courier New', monospace;
}

.sdk-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}

.sdk-strip > div {
  min-height: 190px;
  padding: 38px 30px;
  border-right: 1px solid var(--line-light);
}

.sdk-strip > div span {
  display: block;
  margin-bottom: 70px;
  color: #767c74;
  font: 10px/1 Consolas, 'Courier New', monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sdk-strip > div code {
  font: 15px/1.4 Consolas, 'Courier New', monospace;
}

.sdk-strip > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 0;
  color: #757b74;
  font-size: 11px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-grid article {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: clamp(50px, 5vw, 78px) clamp(26px, 3vw, 52px);
  border-right: 1px solid var(--line-light);
}

.pricing-grid article:last-child {
  border-right: 0;
}

.pricing-grid article.featured {
  background: var(--signal);
}

.pricing-grid article > p {
  margin: 0;
}

.pricing-grid article > p em {
  float: right;
  color: #5c6c47;
  font-style: normal;
}

.pricing-grid h2 {
  margin: 68px 0 12px;
  font-size: clamp(50px, 5vw, 82px);
  letter-spacing: -.07em;
  line-height: 1;
}

.pricing-grid h2 small {
  font-size: 13px;
  letter-spacing: 0;
}

.pricing-grid article > span {
  color: #666c65;
  font-size: 14px;
}

.pricing-grid ul {
  display: grid;
  gap: 15px;
  margin: 72px 0 40px;
  padding: 0;
  list-style: none;
}

.pricing-grid li {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(5,7,6,.16);
  font-size: 13px;
}

.pricing-grid li::before {
  margin-right: 10px;
  color: #4c6729;
  content: '✓';
}

.pricing-grid .button {
  width: 100%;
  margin-top: auto;
}

.pricing-grid article:not(.featured) .button-outline {
  border-color: rgba(5,7,6,.3);
  color: var(--ink);
}

.pricing-disclaimer {
  margin: 0;
  padding: 20px var(--pad);
  border-top: 1px solid var(--line-light);
  color: #6c726a;
  font-size: 11px;
}

.demo-subhero::after {
  bottom: -78%;
}

.demo-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  background: var(--ink);
  color: var(--paper);
}

.scenario-picker {
  align-self: start;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.scenario-picker > p {
  min-height: 50px;
  margin: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #747b74;
}

.scenario-picker button {
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: 8px 1fr;
  align-items: center;
  gap: 8px 12px;
  padding: 12px 16px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: #a4aaa3;
  cursor: pointer;
  text-align: left;
}

.scenario-picker button i {
  grid-row: 1 / 3;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #525852;
}

.scenario-picker button span {
  font-size: 12px;
  font-weight: 700;
}

.scenario-picker button small {
  color: #676e67;
}

.scenario-picker button:hover,
.scenario-picker button.is-selected {
  background: rgba(175,255,63,.06);
  color: var(--paper);
}

.scenario-picker button.is-selected i {
  background: var(--signal);
  box-shadow: 0 0 10px var(--signal);
}

.demo-layout .verifier {
  min-width: 0;
}

.demo-layout .verifier-primary {
  padding: clamp(42px, 5vw, 80px);
}

.demo-layout .verifier-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.6vw, 62px);
  letter-spacing: -.065em;
  line-height: .98;
}

.demo-request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.demo-request-grid > div {
  min-width: 0;
  padding: 18px;
}

.demo-request-grid > div + div {
  border-left: 1px solid var(--line-dark);
}

.demo-request-grid span {
  color: #697068;
}

.demo-request-grid pre {
  min-height: 112px;
  max-height: 210px;
  margin: 14px 0 0;
  overflow: auto;
  color: #aeb5ac;
  white-space: pre-wrap;
  word-break: break-word;
  font: 10px/1.65 Consolas, 'Courier New', monospace;
}

.demo-explainer,
.security-disclosure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 10vw, 150px);
  background: var(--signal);
}

.demo-explainer h2,
.security-disclosure h2 {
  margin-top: 26px;
}

.demo-explainer > p,
.security-disclosure > div:last-child {
  align-self: end;
  margin: 0;
  font-size: 17px;
}

.access-route {
  background: var(--ink);
}

.access-route .access {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(90px, 10vw, 150px));
}

.access-intro h1 {
  margin-top: 24px;
}

.status-board {
  min-height: 620px;
  padding-top: clamp(70px, 8vw, 110px);
}

.status-summary {
  display: flex;
  min-height: 150px;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.status-beacon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #959b94;
}

.status-beacon.is-live {
  background: #6dbb22;
  box-shadow: 0 0 20px rgba(109,187,34,.5);
}

.status-beacon.is-down {
  background: var(--danger);
}

.status-summary p {
  margin: 0 0 6px;
  font-size: 27px;
  font-weight: 750;
}

.status-summary small {
  color: #70766f;
}

.status-row {
  display: grid;
  min-height: 94px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.status-row strong {
  color: #6a7169;
}

.status-row strong.is-live {
  color: #527f24;
}

.status-row strong.is-down {
  color: #c94f3f;
}

.status-row small {
  grid-column: 1;
  grid-row: 2;
  margin-top: -28px;
  color: #858b83;
}

.status-board > button {
  margin-top: 34px;
}

.about-body {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(70px, 12vw, 190px);
}

.about-body > div {
  display: grid;
  min-height: 300px;
  place-items: center;
  background: var(--ink);
}

.about-body img {
  width: min(80%, 360px);
  filter: invert(1);
}

.about-body article p {
  max-width: 720px;
  color: #626860;
  font-size: 17px;
}

.contact-lines {
  padding-top: 0;
  padding-bottom: 0;
}

.contact-lines a {
  display: grid;
  min-height: 150px;
  grid-template-columns: .5fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition: padding 200ms var(--ease), background 200ms ease;
}

.contact-lines a:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: rgba(175,255,63,.18);
}

.contact-lines span {
  color: #747a72;
}

.contact-lines strong {
  font-size: clamp(23px, 3vw, 46px);
  letter-spacing: -.04em;
}

.contact-lines i {
  font-style: normal;
}

.legal-page {
  padding-top: var(--header-height);
  background: var(--paper-bright);
}

.legal-heading {
  padding: clamp(100px, 12vw, 180px) var(--pad) clamp(65px, 8vw, 110px);
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.legal-heading .eyebrow {
  color: var(--signal);
}

.legal-heading h1 {
  margin: 28px 0 20px;
  font-size: clamp(60px, 8vw, 126px);
  letter-spacing: -.07em;
  line-height: .9;
}

.legal-heading > p:last-child {
  color: #969d95;
}

.legal-copy {
  width: min(920px, calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) 0;
}

.legal-copy section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-light);
}

.legal-copy h2 {
  margin: 0;
  font-size: 17px;
}

.legal-copy p {
  margin: 0;
  color: #5f655d;
}

.security-list {
  padding-top: 0;
  padding-bottom: 0;
}

.security-list article {
  display: grid;
  min-height: 340px;
  grid-template-columns: .35fr 1fr .8fr;
  align-items: start;
  gap: clamp(40px, 8vw, 130px);
  padding: 75px 0;
  border-bottom: 1px solid var(--line-light);
}

.security-list article > span {
  color: #727871;
}

.security-list h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 72px);
}

.security-list article > p {
  margin: 9px 0 0;
  color: #636960;
}

.security-disclosure a {
  font-weight: 800;
}

.site-footer {
  grid-template-columns: 210px minmax(180px, .7fr) minmax(300px, 1.3fr) auto;
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-meta {
  grid-column: auto;
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .demo-layout {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .demo-layout .verifier-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 190px 1fr auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .identity-rail {
    grid-template-columns: 1fr 1fr;
  }

  .identity-rail > div:nth-child(2) {
    border-right: 0;
  }

  .identity-rail > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .home-demo,
  .developer-note,
  .demo-explainer,
  .security-disclosure,
  .about-body {
    grid-template-columns: 1fr;
  }

  .home-demo-actions {
    grid-column: 1;
  }

  .product-sequence article,
  .security-list article {
    grid-template-columns: 110px 1fr;
  }

  .product-sequence article > p,
  .security-list article > p {
    grid-column: 2;
  }

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

  .pricing-grid article {
    min-height: 570px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .scenario-picker {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .scenario-picker > p {
    grid-column: 1 / -1;
  }

  .scenario-picker button {
    border-right: 1px solid var(--line-dark);
  }

  .demo-layout .verifier-primary {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(47px, 14vw, 76px);
    line-height: .88;
  }

  .identity-rail > div {
    min-height: 145px;
    padding: 24px;
  }

  .home-demo-actions,
  .closing > div,
  .route-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .home-demo-actions .button,
  .route-cta .button,
  .closing .button {
    width: 100%;
  }

  .closing h2 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .subhero {
    min-height: 78svh;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 35px;
  }

  .subhero h1 {
    font-size: clamp(49px, 14vw, 78px);
  }

  .subhero::after {
    right: -60vw;
    bottom: -30%;
    width: 125vw;
  }

  .product-sequence article,
  .security-list article {
    display: block;
    min-height: auto;
    padding: 70px 0;
  }

  .product-sequence h2,
  .security-list h2 {
    margin-top: 34px;
  }

  .product-sequence article > p,
  .security-list article > p {
    margin-top: 28px;
  }

  .trust-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 24px 0;
  }

  .route-cta {
    min-height: 500px;
    justify-content: flex-end;
  }

  .endpoint-map article {
    grid-template-columns: 40px 1fr;
    padding: 35px 0;
  }

  .endpoint-map article > strong {
    display: none;
  }

  .sdk-strip {
    grid-template-columns: 1fr;
  }

  .sdk-strip > div {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .sdk-strip > div span {
    margin-bottom: 42px;
  }

  .scenario-picker {
    display: flex;
    overflow-x: auto;
  }

  .scenario-picker > p {
    display: none;
  }

  .scenario-picker button {
    flex: 0 0 170px;
  }

  .demo-request-grid {
    grid-template-columns: 1fr;
  }

  .demo-request-grid > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .demo-layout {
    padding-right: 0;
    padding-left: 0;
  }

  .demo-layout .verifier-topline,
  .demo-layout .verifier-actions,
  .demo-layout .demo-note {
    padding-right: 24px;
    padding-left: 24px;
  }

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

  .about-body > div {
    min-height: 220px;
  }

  .contact-lines a {
    min-height: 120px;
    grid-template-columns: 1fr auto;
  }

  .contact-lines span {
    grid-column: 1;
  }

  .contact-lines strong {
    grid-column: 1;
    font-size: 23px;
  }

  .contact-lines i {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .legal-copy section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-meta {
    grid-column: 1;
    grid-row: auto;
  }
}
