/* Passport public site — one stylesheet, one token set, two themes.
   Dark is the default; [data-theme="light"] flips it. `.band--invert` flips a
   single section the other way. Every value below comes from a token. */

@font-face { font-family: "Geist"; src: url("/fonts/geist-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Geist Mono"; src: url("/fonts/geist-mono-var.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

/* ---------------------------------------------------------------- tokens */
:root,
[data-theme="light"] .band--invert {
  color-scheme: dark;
  --signal-text: #ff7a45;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --line: #292929;
  --line-2: #3d3d3d;
  --ink: #ededed;
  --ink-2: #b0b0b0;
  --ink-3: #a1a1a1;
  --ink-4: #888888;
  --btn-bg: #ededed;
  --btn-ink: #0a0a0a;
  --btn-bg-hover: #ffffff;
  --ok: #34d399;
  --ok-wash: rgba(52, 211, 153, 0.12);
  --warn: #fbbf24;
  --warn-wash: rgba(251, 191, 36, 0.12);
  --bad: #f87171;
  --bad-wash: rgba(248, 113, 113, 0.12);
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 60px -32px rgba(0, 0, 0, 0.8);
}
[data-theme="light"],
:root:not([data-theme="light"]) .band--invert {
  color-scheme: light;
  --signal-text: #b93800;
  --bg: #ffffff;
  --bg-2: #fafafa;
  --bg-3: #f2f2f2;
  --line: #e6e6e6;
  --line-2: #d6d6d6;
  --ink: #0a0a0a;
  --ink-2: #525252;
  --ink-3: #666666;
  --ink-4: #737373;
  --btn-bg: #0a0a0a;
  --btn-ink: #ffffff;
  --btn-bg-hover: #262626;
  --ok: #166534;
  --ok-wash: rgba(21, 128, 61, 0.1);
  --warn: #92400e;
  --warn-wash: rgba(180, 83, 9, 0.1);
  --bad: #b91c1c;
  --bad-wash: rgba(185, 28, 28, 0.1);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 24px 60px -36px rgba(0, 0, 0, 0.25);
}
:root {
  --signal: #ff5c1a;
  --signal-ink: #0a0a0a;
  --signal-wash: rgba(255, 92, 26, 0.14);
  --sans: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --r-1: 4px;
  --r-2: 8px;
  --r-3: 8px;
  --r-pill: 999px;
  --wrap: 1200px;
  --gutter: 32px;
  --sec: 96px;
  --sec-sm: 72px;
}
@media (max-width: 760px) {
  :root { --gutter: 20px; --sec: 72px; --sec-sm: 48px; }
  .lede, .lede--lg { font-size: 17px; }
}

/* ------------------------------------------------------------------ base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font: 400 16px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
.band--invert { background: var(--bg); color: var(--ink-2); }
[hidden] { display: none !important; }
a, button, summary { touch-action: manipulation; }
a { color: var(--ink); text-decoration: none; text-underline-offset: 3px; }
a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-decoration-color: var(--ink-3); }
main p a:not(.btn), main li a:not(.btn), .legal-meta a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: var(--r-1); }
img, svg { display: block; max-width: 100%; }
p { margin: 0 0 1em; }
b, strong { color: var(--ink); font-weight: 600; }
code, kbd, .mono { font-family: var(--mono); font-feature-settings: normal; }
code { font-size: 0.92em; background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r-1); padding: 0.08em 0.4em; color: var(--ink); }
pre { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: var(--signal-wash); color: var(--ink); }

.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 14px; border-radius: var(--r-2); background: var(--btn-bg); color: var(--btn-ink); transform: translateY(-160%); transition: transform 0.12s; font-weight: 500; }
.skip-link:focus { transform: translateY(0); text-decoration: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 820px; }
.wrap--read { max-width: 760px; }

/* ------------------------------------------------------------------ type */
h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 600; text-wrap: balance; }
h1 { font-size: clamp(40px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -0.035em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: 20px; line-height: 1.25; letter-spacing: -0.015em; }
h4 { font-size: 16px; line-height: 1.35; }
.h-page { font-size: clamp(36px, 4.4vw, 60px); }
.lede { font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 640px; }
.lede--lg { font-size: clamp(18px, 1.6vw, 21px); }
.sub { color: var(--ink-3); }
.small { font-size: 14px; }
.eyebrow, .lp-kicker, .lp-microcaps, .cat, .demo-lbl {
  display: inline-flex; align-items: center; gap: 8px;
  font: 500 12px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3);
}
.eyebrow--signal { color: var(--signal-text); }
.lp-kicker-mark, .eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); flex-shrink: 0; }
.eyebrow + h1, .eyebrow + h2, .lp-kicker + h1, .lp-kicker + h2, .lp-microcaps + h2, .lp-microcaps + h3 { margin-top: 18px; }
.hl { color: var(--signal-text); }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 18px; border-radius: var(--r-2);
  font: 500 14px/1 var(--sans); letter-spacing: -0.005em; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: background 0.14s, border-color 0.14s, color 0.14s, transform 0.14s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--btn-bg); color: var(--btn-ink); border-color: var(--btn-bg); }
.btn--primary:hover { background: var(--btn-bg-hover); border-color: var(--btn-bg-hover); color: var(--btn-ink); }
.btn--quiet, .btn--secondary { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--quiet:hover, .btn--secondary:hover { border-color: var(--ink-3); background: var(--bg-2); color: var(--ink); }
.btn--signal { background: var(--signal); color: var(--signal-ink); border-color: var(--signal); }
.btn--signal:hover { filter: brightness(1.06); color: var(--signal-ink); }
.btn--lg { height: 46px; padding: 0 22px; font-size: 15px; }
.btn--sm { height: 32px; padding: 0 12px; font-size: 13px; border-radius: 6px; }
.btn--block { width: 100%; }
.btn svg { width: 16px; height: 16px; }
.cta-row, .heroCta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cta-note, .heroNote, .lp-hero-note { margin-top: 14px; font: 400 13px/1.4 var(--mono); color: var(--ink-3); }

/* ------------------------------------------------------------ command chip */
.cmd {
  display: inline-flex; align-items: center; gap: 12px; max-width: 100%;
  height: 46px; padding: 0 6px 0 16px; border: 1px solid var(--line-2); border-radius: var(--r-2);
  background: var(--bg-2); color: var(--ink); font: 500 14px/1 var(--mono);
}
.cmd__prompt { color: var(--signal-text); user-select: none; }
.cmd__text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cmd__copy {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 6px;
  border: 0; background: transparent; color: var(--ink-3); cursor: pointer; transition: background 0.14s, color 0.14s;
}
.cmd__copy:hover { background: var(--bg-3); color: var(--ink); }
.cmd__copy svg { width: 15px; height: 15px; }
.cmd__copy[data-copied="true"] { color: var(--ok); }

/* ------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.2s;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__in { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font: 600 17px/1 var(--sans); letter-spacing: -0.03em; text-decoration: none !important; }
.brand .mark-svg { width: 24px; height: 24px; color: var(--signal); }
.brand__sup { font: 500 10px/1 var(--mono); letter-spacing: 0.08em; color: var(--ink-3); margin-left: -2px; align-self: flex-start; margin-top: 1px; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > a, .nav__menu > summary { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 12px; border-radius: 6px; color: var(--ink-2); font: 500 14px/1 var(--sans); text-decoration: none !important; }
.nav__links > a:hover, .nav__menu > summary:hover, .nav__menu[open] > summary { color: var(--ink); background: var(--bg-2); }
.nav__links > a[aria-current="page"] { color: var(--ink); }
.nav__end { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav__end .btn { height: 34px; padding: 0 14px; font-size: 13.5px; }
.nav__menu { position: relative; }
.nav__menu > summary { list-style: none; cursor: pointer; }
.nav__menu > summary::-webkit-details-marker { display: none; }
.nav__menu > summary svg { width: 12px; height: 12px; color: var(--ink-3); transition: transform 0.14s; }
.nav__menu[open] > summary svg { transform: rotate(180deg); }
.nav__panel {
  position: absolute; top: calc(100% + 10px); left: 0; z-index: 60; min-width: 280px;
  padding: 6px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); box-shadow: var(--shadow);
}
.nav__panel a { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 10px 10px; border-radius: var(--r-2); text-decoration: none !important; color: var(--ink); }
.nav__panel a:hover { background: var(--bg-3); }
.nav__panel a b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.nav__panel a span { display: block; font-size: 12.5px; color: var(--ink-3); line-height: 1.35; }
.nav__panel .glyph { width: 34px; height: 34px; border-radius: var(--r-2); background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); }
.nav__panel .glyph svg { width: 16px; height: 16px; }
.theme-toggle { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line-2); background: transparent; color: var(--ink-2); cursor: pointer; }
.theme-toggle:hover { color: var(--ink); background: var(--bg-2); }
.theme-toggle svg { width: 15px; height: 15px; }
.theme-toggle .i-sun { display: none; }
[data-theme="light"] .theme-toggle .i-sun { display: block; }
[data-theme="light"] .theme-toggle .i-moon { display: none; }
.nav__burger { display: none; }
.nav__sheet { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__end .hide-sm { display: none; }
  .nav__burger { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line-2); background: transparent; color: var(--ink); cursor: pointer; }
  .nav__burger svg { width: 16px; height: 16px; }
  .nav__sheet[open] { display: block; position: fixed; inset: 0; margin: 0; width: 100%; height: 100%; max-width: none; max-height: none; border: 0; border-radius: 0; color: var(--ink); background: var(--bg); overflow: auto; overscroll-behavior: contain; padding: 0 var(--gutter) max(32px, env(safe-area-inset-bottom)); }
  .nav__sheet-head { display: flex; align-items: center; justify-content: space-between; min-height: 64px; }
  .nav__sheet-head .brand { border: 0; padding: 0; font-size: 17px; justify-content: flex-start; }
  .nav__close { display: grid; place-items: center; width: 44px; height: 44px; background: transparent; color: var(--ink); border: 1px solid var(--line-2); border-radius: var(--r-2); cursor: pointer; }
  .nav__sheet a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); color: var(--ink); font: 500 18px/1 var(--sans); letter-spacing: -0.01em; text-decoration: none !important; }
  .nav__sheet .eyebrow { margin: 22px 0 6px; }
  .nav__sheet .cta-row { margin-top: 20px; }
  .nav__sheet .cta-row .btn { flex: 1; justify-content: center; padding: 0 18px; font-size: 15px; }
  .nav__sheet .btn--primary { color: var(--btn-ink); border-color: var(--btn-bg); }
}

/* ----------------------------------------------------------------- layout */
section, .sec { padding: var(--sec) 0; }
.sec--sm { padding: var(--sec-sm) 0; }
.sec--tight { padding-top: 0; }
.sec-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: 32px 64px; align-items: end; margin-bottom: 48px; }
.sec-head h2 { text-wrap: balance; }
.sec-head p { margin: 0; color: var(--ink-3); font-size: 16px; max-width: 460px; }
.sec-head--center { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.sec-head--center p { max-width: 620px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.section-head h2 { max-width: 680px; margin: 0; }
.section-head p { max-width: 400px; margin: 0; color: var(--ink-3); font-size: 15px; }
@media (max-width: 760px) {
  .sec-head, .section-head { display: block; }
  .sec-head p, .section-head p { margin-top: 12px; }
}
.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 900px) { .grid3, .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .grid2, .grid3, .grid4 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ hero */
.hero { padding: 88px 0 56px; }
.hero--center { text-align: center; }
.hero--center .lede, .hero--center .eyebrow { margin-left: auto; margin-right: auto; }
.hero--center .cta-row { justify-content: center; }
.hero h1 { max-width: 15ch; margin: 0; }
.hero--center h1 { margin: 0 auto; }
.hero .lede, .hero > p, .hero > .wrap > p { margin-top: 24px; }
.hero > p { font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 640px; }
.hero .pill + h1 { margin-top: 16px; }
.hero .cta-row { margin-top: 32px; }
.hero .cmd { margin-top: 18px; }
.hero--page { padding: 80px 0 40px; }
.hero--page h1 { margin: 0; max-width: 20ch; }
.page-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 48px; align-items: end; padding: 80px 0 40px; }
.page-hero__copy h1 { max-width: 18ch; font-size: clamp(36px, 4.4vw, 60px); }
.page-hero__copy .lede, .page-hero__copy > p { margin: 22px 0 0; font-size: 18px; line-height: 1.5; color: var(--ink-2); max-width: 600px; }
.page-hero__aside { padding: 22px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); }
.page-hero__aside b { display: block; margin-bottom: 6px; color: var(--ink); font-size: 15px; }
.page-hero__aside p { color: var(--ink-3); font-size: 14px; line-height: 1.5; margin: 0; }
@media (max-width: 900px) { .page-hero { grid-template-columns: 1fr; gap: 24px; padding-top: 56px; } }

/* Access story: Geist typography, a shared grid, and one decision at a time. */
.section-rule { border-top: 1px solid var(--line); }
.access-hero { padding: 88px 0 0; }
.access-hero__intro { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: end; margin-bottom: 64px; }
.access-hero h1 { max-width: none; margin-top: 20px; font-size: clamp(40px, 5.6vw, 80px); font-weight: 500; line-height: 1.06; letter-spacing: -0.055em; }
.access-hero h1 > span { color: var(--ink-3); }
.access-hero__copy .lede { margin: 0; max-width: 460px; font-size: 18px; line-height: 1.6; text-wrap: pretty; }
.access-hero__copy .cta-row { margin-top: 24px; }
.access-hero__copy .cta-note { font: 400 13px/1.5 var(--sans); margin: 16px 0 0; }
.access-demo { border: 1px solid var(--line-2); border-radius: var(--r-2); overflow: hidden; background: var(--bg); }
.access-demo__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.access-demo__head > div:first-child { display: flex; align-items: center; gap: 16px; }
.access-demo__example { font-size: 13px; color: var(--ink-3); }
.access-demo__switch { display: inline-flex; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-2); }
.access-demo__switch button { border: 1px solid transparent; border-radius: var(--r-1); background: transparent; padding: 8px 12px; min-height: 36px; color: var(--ink-3); font: 500 13px/1.3 var(--sans); cursor: pointer; }
.access-demo__switch button:hover { color: var(--ink); }
.access-demo__switch button[aria-pressed="true"] { background: var(--bg); color: var(--ink); border-color: var(--line-2); box-shadow: 0 1px 2px #0000000d; }
.access-demo__flow { display: grid; grid-template-columns: 1fr 24px 1.1fr 24px 1fr; align-items: center; gap: 16px; padding: 32px; background-image: radial-gradient(var(--line) 1px, transparent 1px); background-size: 20px 20px; }
.access-demo__node, .access-demo__gate { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg); }
.access-demo__gate { border-color: var(--line-2); box-shadow: var(--shadow); border-top: 2px solid var(--signal); }
.access-demo__identity { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.access-demo__identity > svg { flex-shrink: 0; color: var(--ink-2); }
.access-demo__identity b { display: block; font-size: 17px; font-weight: 500; }
.access-demo__identity span { display: block; margin-top: 4px; font-size: 12px; color: var(--ink-3); }
.access-demo__node p { margin: 20px 0 0; font-size: 13px; color: var(--ink-3); }
.access-demo__arrow { display: grid; place-items: center; color: var(--ink-3); }
.access-demo__brand { display: flex; align-items: center; gap: 10px; margin: 24px 0; font-size: 21px; }
.access-demo__brand > svg { color: var(--signal); }
.access-demo__brand b { font-weight: 500; }
.access-demo__checks { display: grid; gap: 14px; }
.access-demo__checks span { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-2); }
.access-demo__checks svg { color: var(--ink-3); flex-shrink: 0; }
.access-demo__decision { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; color: var(--ok); font-size: 13px; font-weight: 500; }
.access-demo__decision--review { color: var(--warn); }
.access-demo__decision + p { margin-top: 6px; }
.access-demo__record { display: flex; gap: 10px; align-items: center; padding: 16px 24px; border-top: 1px solid var(--line); background: var(--bg-2); font: 400 12px/1.5 var(--mono); }
.access-demo__record > svg { flex-shrink: 0; }
.access-demo__record-label { margin-left: auto; color: var(--ink-3); white-space: nowrap; }
.access-demo__fallback { margin: 0; padding: 16px 24px; font-size: 13px; }
.activity-preview__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px; border-bottom: 1px solid var(--line); }
.activity-preview__row:last-child { border-bottom: 0; }
.activity-preview__row b { display: block; font-size: 14px; font-weight: 500; }
.activity-preview__row > div > span { display: block; font-size: 12px; color: var(--ink-3); margin-top: 5px; }
.activity-preview__row .pill { font: 500 11px/1.2 var(--sans); text-transform: none; letter-spacing: 0; }
.policy-preview { margin: 0; }
.policy-preview > div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: 14px; }
.policy-preview > div:last-child { border-bottom: 0; }
.policy-preview dt { color: var(--ink-3); }
.policy-preview dd { margin: 0; color: var(--ink); }
.policy-preview .pill { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-size: 12px; }
.coverage { display: grid; grid-template-columns: 1fr 1fr; margin-top: 40px; border: 1px solid var(--line); border-radius: var(--r-2); }
.coverage > div { padding: 32px; }
.coverage > div + div { border-left: 1px solid var(--line); }
.coverage h3 { margin-top: 20px; }
.coverage p { font-size: 15px; margin: 12px 0 20px; color: var(--ink-3); }
.coverage a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.security-principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.security-principles > div { padding: 32px; }
.security-principles > div + div { border-left: 1px solid var(--line); }
.security-principles h3 { margin: 24px 0 12px; font-size: 19px; }
.security-principles p { margin: 0; font-size: 15px; color: var(--ink-3); }
.enterprise-band { background: var(--bg-2); }
.enterprise-band .claim { padding: 0; }
.product-capture { margin: 0; }
.product-capture img { display: block; width: 100%; height: auto; }
.product-capture figcaption { padding: 14px 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-3); }
.final .eyebrow { margin-bottom: 20px; }
.final__cli { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; margin-top: 24px; }
@media (max-width: 1050px) {
  .access-hero__intro { gap: 32px; }
  .access-demo__flow { gap: 8px; padding: 24px; grid-template-columns: 1fr 16px 1.1fr 16px 1fr; }
  .access-demo__node, .access-demo__gate { padding: 18px; }
}
@media (max-width: 760px) {
  .access-hero { padding-top: 56px; }
  .access-hero__intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .access-hero h1 { font-size: clamp(40px, 8vw, 60px); }
  .access-demo__head { padding: 16px; flex-direction: column; align-items: stretch; gap: 16px; }
  .access-demo__head > div:first-child { justify-content: space-between; gap: 12px; }
  .access-demo__switch { display: flex; }
  .access-demo__switch button { flex: 1; min-height: 44px; }
  .access-demo__flow { grid-template-columns: 1fr; padding: 16px; gap: 12px; }
  .access-demo__arrow { display: none; }
  .access-demo__identity, .access-demo__brand { margin-top: 16px; }
  .access-demo__node p { margin-top: 12px; }
  .access-demo__record { padding: 16px; font-size: 11px; align-items: flex-start; }
  .access-demo__record-label { display: none; }
  .coverage, .security-principles { grid-template-columns: 1fr; }
  .coverage > div, .security-principles > div { padding: 24px; }
  .coverage > div + div, .security-principles > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .activity-preview__row { gap: 8px; padding: 18px 16px; flex-wrap: wrap; }
  .policy-preview > div { padding: 18px 16px; }
}

/* --------------------------------------------------------------- frames */
.frame { position: relative; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); overflow: hidden; box-shadow: var(--shadow); }
.frame__bar { display: flex; align-items: center; gap: 10px; height: 38px; padding: 0 14px; border-bottom: 1px solid var(--line); font: 500 12px/1 var(--mono); color: var(--ink-3); letter-spacing: 0.02em; }
.frame__bar b { color: var(--ink-2); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.frame__bar .glyph { width: 14px; height: 14px; color: var(--ink-3); }
.frame__bar .end { margin-left: auto; display: inline-flex; gap: 6px; align-items: center; }
.frame__body { padding: 16px; }
.frame--flush .frame__body { padding: 0; }

/* Terminal pane */
.term { font: 400 13px/1.75 var(--mono); color: var(--ink-2); padding: 16px 18px; min-height: 100%; }
.term .ln { display: block; white-space: pre-wrap; }
.term .p { color: var(--signal-text); }
.term .ok { color: var(--ok); }
.term .dim { color: var(--ink-4); }
.term .k { color: var(--ink); }
.term .cursor { display: inline-block; width: 8px; height: 15px; background: var(--ink-2); vertical-align: -3px; margin-left: 2px;  }

/* List pane (apps / tools) */
.ui-list { display: grid; }
.ui-row { min-height: 76px; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); min-width: 0; }
.ui-row:last-child { border-bottom: 0; }
.ui-row .meta { min-width: 0; flex: 1; }
.ui-row .meta b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-row .meta span { display: block; font-size: 12.5px; color: var(--ink-3); line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ui-row .meta code { font-size: 12px; }
.ui-row .end { margin-left: auto; flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; }
.ui-tab { display: inline-flex; gap: 2px; padding: 3px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-3); }
.ui-tab span { padding: 5px 10px; border-radius: 6px; font: 500 12px/1 var(--sans); color: var(--ink-3); }
.ui-tab span.on { background: var(--bg-2); color: var(--ink); box-shadow: 0 1px 0 rgba(0,0,0,.2); }
.pill { display: inline-flex; align-items: center; gap: 6px; height: 22px; padding: 0 8px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font: 500 11px/1 var(--mono); letter-spacing: 0.04em; color: var(--ink-3); background: transparent; white-space: nowrap; text-transform: uppercase; }
.pill--ok { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 40%, transparent); background: var(--ok-wash); }
.pill--bad { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, transparent); background: var(--bad-wash); }
.pill--warn { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 40%, transparent); background: var(--warn-wash); }
.pill--signal { color: var(--signal-text); border-color: color-mix(in srgb, var(--signal) 45%, transparent); background: var(--signal-wash); }
.pill--vendor { color: var(--ok); border-color: color-mix(in srgb, var(--ok) 40%, transparent); background: var(--ok-wash); }
.pill--verified { color: var(--ink); border-color: var(--line-2); background: var(--bg-3); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-4); flex-shrink: 0; }
.dot--ok { background: var(--ok); }
.dot--bad { background: var(--bad); }
.dot--warn { background: var(--warn); }
.dot--signal { background: var(--signal); }

.avatar { width: 20px; height: 20px; border-radius: 50%; display: inline-grid; place-items: center; font: 600 9px/1 var(--mono); color: var(--ink); background: var(--bg-3); border: 1px solid var(--line-2); flex-shrink: 0; }

/* ------------------------------------------------------------ logo strips */
.works { border-bottom: 0; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 12px; padding: 48px 0; }
.works .eyebrow { width: 100%; justify-content: center; margin-bottom: 14px; }
.tile-inline { display: inline-flex; align-items: center; gap: 9px; height: 40px; padding: 0 14px 0 10px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-2); color: var(--ink-2); font: 500 13.5px/1 var(--sans); text-decoration: none !important; transition: border-color 0.14s, color 0.14s; }
.tile-inline:hover { border-color: var(--ink-3); color: var(--ink); }
.tile-inline .mark { width: 22px; height: 22px; border-radius: 5px; }

.mark { display: inline-grid; place-items: center; border-radius: var(--r-2); background: var(--bg-3); border: 1px solid var(--line); color: var(--ink-2); flex-shrink: 0; font: 600 12px/1 var(--mono); overflow: hidden; }
.mark img, .mark svg { display: block; }
.mark--dark { background: #111111; border-color: #292929; }
.mark--light { background: #ffffff; border-color: #e6e6e6; }

.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.tile { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); color: var(--ink); text-decoration: none !important; min-width: 0; transition: border-color 0.14s, background 0.14s; }
.tile:hover { border-color: var(--ink-3); background: var(--bg-3); }
.tile .mark { width: 36px; height: 36px; }
.tile b { display: block; font-size: 14px; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile span { display: block; font-size: 12.5px; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile--more { justify-content: center; border-style: dashed; color: var(--ink-2); font: 500 14px/1 var(--sans); }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ------------------------------------------------------------- claim rows */
.claim { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 48px 72px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line); }
.claim:first-of-type { border-top: 0; }
.claim--flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.claim--flip .claim__copy { order: 2; }
.claim__copy h3 { font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -0.025em; line-height: 1.15; margin-top: 16px; }
.claim__copy p { margin: 16px 0 0; color: var(--ink-2); font-size: 16.5px; max-width: 460px; }
.claim__copy .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font: 500 14px/1 var(--sans); color: var(--ink); }
.claim__copy .more svg { width: 14px; height: 14px; transition: transform 0.14s; }
.claim__copy .more:hover svg { transform: translateX(2px); }
.claim__art { position: relative; min-width: 0; }
@media (max-width: 900px) {
  .claim { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .claim--flip .claim__copy { order: 0; }
}

/* ----------------------------------------------------------------- bento */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.bento > * { padding: 24px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); min-width: 0; }
.bento .glyph { width: 36px; height: 36px; border-radius: var(--r-2); background: var(--bg-3); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); margin-bottom: 20px; }
.bento .glyph svg { width: 17px; height: 17px; }
.bento h3 { font-size: 17px; letter-spacing: -0.01em; }
.bento p { margin: 8px 0 0; font-size: 14.5px; color: var(--ink-3); }
.bento .wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; }
.bento .term { min-height: 0; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg); font-size: 12.5px; line-height: 1.7; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .bento .wide { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 600px) { .bento { grid-template-columns: 1fr; } }

/* ----------------------------------------------------------------- cards */
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-3); padding: 22px; color: var(--ink-2); }
.card h3 { font-size: 16px; margin: 0 0 6px; }
.card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); margin: 0; }
.list { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-3); overflow: hidden; }
.row { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); color: inherit; min-width: 0; }
.row:last-child { border-bottom: 0; }
a.row { text-decoration: none !important; }
a.row:hover { background: var(--bg-3); }
.row > span { min-width: 0; }
.row > .dot, .row > .mark, .row > .end, .row > a { flex-shrink: 0; }
.row > a:not(.btn) { margin-left: auto; font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.row b { font-size: 14.5px; font-weight: 500; color: var(--ink); display: block; line-height: 1.35; }
.row .sub { font-size: 13px; display: block; color: var(--ink-3); line-height: 1.5; margin-top: 2px; }
.row .end { margin-left: auto; display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.connect-doc .cat, .cat-group > .cat { display: flex; margin: 36px 0 12px; }
.connect-doc .cat:first-child { margin-top: 0; }
.connect-doc p.sub { font-size: 15px; line-height: 1.6; }
.connect-doc .list .sub { font-size: 13.5px; }
.cat-chev { margin-left: auto; flex-shrink: 0; color: var(--ink-4); font-size: 15px; transition: color 0.12s, transform 0.12s; }
a.row:hover .cat-chev { color: var(--ink); transform: translateX(2px); }
.trust-content .row .sub a, .trust-content .card .sub a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.kv { display: grid; grid-template-columns: 160px 1fr; gap: 10px 16px; font-size: 14px; padding: 18px; }
.kv dt { color: var(--ink-3); font-family: var(--mono); font-size: 12.5px; padding-top: 2px; }
.kv dd { margin: 0; font-weight: 500; color: var(--ink); overflow-wrap: break-word; min-width: 0; }
@media (max-width: 600px) { .kv { grid-template-columns: 1fr; } }
.crumb { font: 500 12.5px/1 var(--mono); color: var(--ink-3); margin: 32px 0 16px; letter-spacing: 0.02em; }
.crumb a { color: var(--ink-3); }
.banner { padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--bad) 35%, transparent); border-radius: var(--r-2); background: var(--bad-wash); color: var(--bad); font-size: 14px; font-weight: 500; margin: 16px 0; }
.note { padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-2); color: var(--ink-3); font-size: 14px; }
.note b { color: var(--ink); }

/* ------------------------------------------------------------- spec table */
.spec { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--r-3); overflow-x: auto; background: var(--bg-2); display: block; }
.spec table { width: 100%; border-collapse: collapse; }
.spec th { text-align: left; padding: 12px 18px; font: 500 11px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); border-bottom: 1px solid var(--line); }
.spec td { padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 14.5px; color: var(--ink-2); }
.spec tr:last-child td { border-bottom: 0; }
.spec td:first-child { color: var(--ink); font-weight: 500; width: 34%; }
.spec td.st { font-family: var(--mono); font-size: 12.5px; white-space: nowrap; width: 18%; }
.spec .st--ok { color: var(--ok); }
.spec .st--gap { color: var(--warn); }
.spec .st--no { color: var(--ink-3); }
@media (max-width: 700px) {
  /* Keep plan headers paired with each value on narrow screens. The
     comparison has four columns, so a compact card layout loses context
     (and leaves one plan spanning the whole row). Let the table scroll as a
     unit instead. */
  .spec table { min-width: 620px; }
  .spec thead { display: table-header-group; }
  .spec tr { display: table-row; padding: 0; }
  .spec th,
  .spec td { padding: 12px 14px; }
  .spec td:nth-child(3) { grid-column: auto; }
}

/* --------------------------------------------------------------- pricing */
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: stretch; }
.plan { position: relative; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-3); padding: 26px; display: flex; flex-direction: column; }
.plan--hot { border-color: var(--ink-3); background: var(--bg-3); }
.plan--hot::before { content: "For growing teams"; position: absolute; top: -11px; left: 22px; padding: 4px 8px; border-radius: var(--r-1); background: var(--signal); color: var(--signal-ink); font: 600 10.5px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.plan h2 { font-size: 20px; letter-spacing: -0.015em; margin: 14px 0 0; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 6px; font: 600 40px/1 var(--sans); letter-spacing: -0.03em; color: var(--ink); }
.plan .price span { font: 400 13px/1.2 var(--mono); color: var(--ink-3); letter-spacing: 0; }
.plan > p.sub { font-size: 14px; margin: 0 0 4px; min-height: 42px; }
.plan ul { list-style: none; margin: 18px 0 24px; padding: 0; font-size: 14px; color: var(--ink-2); display: grid; gap: 9px; }
.plan li { position: relative; padding-left: 24px; line-height: 1.45; }
.plan li::before { content: ""; position: absolute; left: 0; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--ok-wash); }
.plan li::after { content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 3px; border-left: 1.5px solid var(--ok); border-bottom: 1.5px solid var(--ok); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; }
.plan .fine { margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3); text-align: center; }
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; } }
.compare { margin-top: 64px; }
.compare .spec td:first-child { width: 40%; }
.compare .spec td { text-align: center; }
.compare .spec td:first-child { text-align: left; }
.compare .spec th:not(:first-child) { text-align: center; }
.compare .yes { color: var(--ok); }
.compare .no { color: var(--ink-4); }

/* ----------------------------------------------------------------- faq */
.faq-list { display: grid; gap: 8px; }
.disclosure { border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); overflow: hidden; }
.disclosure summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; color: var(--ink); font-size: 15px; font-weight: 500; cursor: pointer; list-style: none; }
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after { content: "+"; color: var(--ink-3); font: 400 20px/1 var(--mono); }
.disclosure[open] summary::after { content: "–"; }
.disclosure__body { padding: 0 18px 18px; color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.disclosure__body p:last-child { margin: 0; }

/* -------------------------------------------------------------- catalog */
.catalog-controls { position: sticky; z-index: 20; top: 64px; display: flex; gap: 10px; align-items: center; margin: 24px 0 16px; padding: 10px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.searchbar { display: flex; gap: 10px; flex: 1; min-width: 200px; margin: 0; }
input, select, textarea { font: inherit; font-size: 15px; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: var(--r-2); background: var(--bg-2); outline: none; width: 100%; color: var(--ink); }
input::placeholder { color: var(--ink-4); }
input:focus, select:focus { border-color: var(--ink-3); box-shadow: 0 0 0 3px var(--signal-wash); }
label { display: block; font: 500 13px/1 var(--mono); color: var(--ink-3); margin: 16px 0 8px; letter-spacing: 0.02em; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { display: inline-flex; align-items: center; height: 30px; padding: 0 12px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: transparent; color: var(--ink-2); font: 500 13px/1 var(--sans); cursor: pointer; }
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cat-group { margin-top: 40px; }
.cat-group > .cat { margin-bottom: 14px; }
.cat-group .cat .n { color: var(--ink-4); }
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.cat-card { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); color: var(--ink); text-decoration: none !important; min-width: 0; transition: border-color 0.14s, background 0.14s; }
.cat-card:hover { border-color: var(--ink-3); background: var(--bg-3); }
.cat-card .mark { width: 40px; height: 40px; }
.cat-card b { display: block; font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.3; }
.cat-card span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.45; color: var(--ink-3); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } .catalog-controls { position: static; flex-wrap: wrap; } .catalog-controls .searchbar { min-width: 0; flex-basis: 100%; } }
.cat-tools { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin: 6px 0 4px; }
.connector-hero { display: flex; align-items: center; gap: 18px; margin: 8px 0 12px; }
.connector-hero .mark { width: 56px; height: 56px; border-radius: var(--r-3); }
.connector-hero h1 { font-size: clamp(32px, 4.2vw, 52px); }
.connector-usecases { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.connector-usecases li { position: relative; padding-left: 22px; color: var(--ink-2); font-size: 14.5px; }
.connector-usecases li::before { content: ""; position: absolute; left: 2px; top: 7px; width: 7px; height: 4px; border-left: 1.5px solid var(--ok); border-bottom: 1.5px solid var(--ok); transform: rotate(-45deg); }
.capability-list { display: grid; gap: 8px; margin-top: 14px; }
.capability { display: flex; gap: 12px; align-items: start; padding: 12px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-3); }
.capability b { display: block; color: var(--ink); font-size: 13.5px; font-weight: 500; }
.capability p { margin: 2px 0 0; font-size: 12.5px; color: var(--ink-3); }
.risk { flex-shrink: 0; padding: 3px 7px; border-radius: var(--r-1); background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink-2); font: 600 10px/1 var(--mono); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.risk--write { color: var(--warn); border-color: color-mix(in srgb, var(--warn) 40%, transparent); background: var(--warn-wash); }
.risk--destructive { color: var(--bad); border-color: color-mix(in srgb, var(--bad) 40%, transparent); background: var(--bad-wash); }

/* ------------------------------------------------- legacy shared blocks */
.proof-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); }
.proof-row > * { padding: 20px 22px; }
.proof-row > * + * { border-left: 1px solid var(--line); }
.proof-row b { display: block; color: var(--ink); font-size: 15px; font-weight: 500; }
.proof-row > * > span { display: block; margin-top: 4px; color: var(--ink-3); font-size: 13.5px; line-height: 1.45; }
@media (max-width: 760px) { .proof-row { grid-template-columns: 1fr; } .proof-row > * + * { border-left: 0; border-top: 1px solid var(--line); } }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.feature-card { padding: 26px; }
.feature-card__n { display: inline-block; margin-bottom: 22px; font: 500 12px/1 var(--mono); color: var(--signal-text); letter-spacing: 0.08em; }
.feature-card h3 { font-size: 18px; letter-spacing: -0.015em; color: var(--ink); }
.feature-card p { margin-top: 8px; font-size: 14.5px; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.security-outcomes { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 16px 0 32px; }
.security-outcomes .card { padding: 18px; }
.security-outcomes b { display: block; color: var(--ink); font-size: 14px; }
.security-outcomes span { display: block; margin-top: 6px; color: var(--ink-3); font-size: 13px; line-height: 1.45; }
@media (max-width: 900px) { .security-outcomes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .security-outcomes { grid-template-columns: 1fr; } }
.security-flow { display: grid; grid-template-columns: 1fr auto 1.2fr auto 1fr; gap: 12px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); }
.security-flow__node { padding: 16px; border: 1px solid var(--line); border-radius: var(--r-2); background: var(--bg-3); text-align: center; }
.security-flow__node--passport { border-color: var(--signal); background: var(--signal-wash); }
.security-flow__node b { display: block; color: var(--ink); font-size: 14px; font-weight: 500; }
.security-flow__node span { display: block; margin-top: 4px; color: var(--ink-3); font-size: 12px; line-height: 1.4; }
.security-flow__arrow { color: var(--ink-4); font-family: var(--mono); }
@media (max-width: 760px) { .security-flow { grid-template-columns: 1fr; } .security-flow__arrow { transform: rotate(90deg); text-align: center; } }
.assurance-gap { margin-top: 24px; padding: 18px 20px; border: 1px solid color-mix(in srgb, var(--warn) 40%, transparent); border-radius: var(--r-3); background: var(--warn-wash); }
.assurance-gap b { color: var(--ink); }
.assurance-gap p { margin: 6px 0 0; color: var(--ink-2); font-size: 14px; }
.enterprise-hero-card { padding: 26px; border-radius: var(--r-3); border: 1px solid var(--line); background: var(--bg-2); color: var(--ink-2); }
.enterprise-hero-card b { display: block; color: var(--ink); font-size: 16px; }
.enterprise-hero-card p { margin: 8px 0 20px; color: var(--ink-3); font-size: 14px; }
.trust-status { display: inline-block; margin-left: 8px; padding: 3px 8px; border: 1px solid var(--line-2); border-radius: var(--r-pill); background: var(--bg-3); color: var(--ink-3); font: 500 10.5px/1 var(--mono); letter-spacing: 0.04em; white-space: nowrap; vertical-align: middle; }
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink-3); font: 500 11.5px/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.tbl td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--bg-2); }
.log { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--line); }
.log:last-child { border-bottom: 1px solid var(--line); }
.log__date { font: 400 12.5px/1.6 var(--mono); color: var(--ink-3); padding-top: 3px; white-space: nowrap; }
.log__title { font-size: 17px; letter-spacing: -0.015em; margin: 0; }
.log__body p { margin: 8px 0 0; color: var(--ink-3); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 600px) { .log { grid-template-columns: 1fr; gap: 6px; } }
.prose { color: var(--ink-2); font-size: 16px; line-height: 1.65; }
.prose h2 { font-size: 24px; margin: 48px 0 12px; }
.prose h3 { font-size: 18px; margin: 32px 0 8px; }
.prose p, .prose ul, .prose ol { margin: 0 0 16px; }
.prose li { margin: 4px 0; }
.prose a { text-decoration: underline; text-decoration-color: var(--ink-4); }
.legal-meta { font: 400 13px/1.5 var(--mono); color: var(--ink-3); }

/* ------------------------------------------------------------- final CTA */
.final { position: relative; text-align: center; padding: var(--sec) 0; }
.final h2 { font-size: clamp(32px, 4.4vw, 56px); margin: 0 auto; max-width: 16ch; }
.final .lede { margin: 20px auto 0; }
.final .cta-row { justify-content: center; margin-top: 30px; }
.final .cmd { margin-top: 20px; }

/* ------------------------------------------------------------------ footer */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 28px; color: var(--ink-3); font-size: 14px; }
.site-footer__main { display: grid; grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(120px, 1fr)); gap: 32px; }
.site-footer__intro p { max-width: 280px; margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: var(--ink-3); }
.site-footer__intro .social { display: flex; gap: 8px; margin-top: 18px; }
.site-footer__intro .social a, .site-footer__intro .social .theme-toggle { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line-2); color: var(--ink-2); }
.site-footer__intro .social a:hover { color: var(--ink); background: var(--bg-2); text-decoration: none; }
.site-footer__intro .social svg { width: 15px; height: 15px; }
.site-footer__col { display: grid; align-content: start; gap: 10px; }
.site-footer__col b { margin-bottom: 4px; color: var(--ink-4); font: 500 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer__col a { color: var(--ink-2); font-size: 14px; }
.site-footer__col a:hover { color: var(--ink); }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); font: 400 12px/1.5 var(--mono); color: var(--ink-4); }
.site-footer__bottom a { color: var(--ink-3); }
.status-dot { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 900px) { .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); } .site-footer__intro { grid-column: 1 / -1; } }
@media (max-width: 520px) { .site-footer__main { grid-template-columns: 1fr 1fr; gap: 28px 20px; } .site-footer__bottom { display: grid; } }

/* -------------------------------------------------------- misc legacy hooks */
.lp-access-formwrap { width: min(100%, 520px); margin: 0 auto; }
.lp-access-form { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.lp-access-form input[type="email"] { flex: 1 1 240px; min-width: 0; height: 46px; }
.lp-access-form .btn { flex: 0 0 auto; }
.lp-access-error { margin-top: 8px; color: var(--bad); font-size: 13px; text-align: left; }
.lp-access-success { padding: 12px 16px; border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent); border-radius: var(--r-2); background: var(--ok-wash); color: var(--ok); font-weight: 500; }
.demo-mono { font: 500 13px var(--mono); color: var(--ink); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mt-6 { margin-top: 48px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.max-read { max-width: 760px; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.links-row { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 500; }
.links-row a { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); }

/* Comfortable touch targets and native text sizing on smaller screens. */
@media (max-width: 900px) {
  .nav__end .btn, .nav__burger, .theme-toggle, .cmd__copy, .site-footer__intro .social a, .site-footer__intro .social .theme-toggle { min-width: 44px; height: 44px; }
  .btn, .chip, .tile-inline { min-height: 44px; }
  input, select, textarea { font-size: 16px; }
  .site-footer__col a { min-height: 32px; display: inline-flex; align-items: center; }
}
