/* AltaSec website v1 — one stylesheet, no external requests.
   Tokens follow docs/brand/README.md "Website v1 decisions" (navy neutrals, Signal accent). */

/* ---------- Fonts (self-hosted, SIL OFL 1.1 — see /fonts/OFL-*.txt) ---------- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  src: url("/fonts/archivo-latin-wdth-normal.woff2") format("woff2-variations"),
       url("/fonts/archivo-latin-wdth-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  src: url("/fonts/archivo-latin-ext-wdth-normal.woff2") format("woff2-variations"),
       url("/fonts/archivo-latin-ext-wdth-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 100 800;
  src: url("/fonts/jetbrains-mono-latin-wght-normal.woff2") format("woff2-variations"),
       url("/fonts/jetbrains-mono-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 100 800;
  src: url("/fonts/jetbrains-mono-latin-ext-wght-normal.woff2") format("woff2-variations"),
       url("/fonts/jetbrains-mono-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --accent: #F26B1D;      /* Signal — graphics, and fills behind ink text only (3.05:1 on white) */
  --ember: #A94B14;       /* Signal 30% toward black — accent text on light, white-text buttons */
  --tint: #FDEDE4;        /* Signal 88% toward white */
  --glow: #FCE1D2;        /* Signal 80% toward white */
  --glow-dark-soft: rgba(140, 67, 31, 0.5); /* Signal→ink glow at half strength: keeps muted text >= 5:1 */
  --ink: #0F1222;
  --ink-2: #3A3F52;
  --ink-3: #2A2E40;
  --muted: #5B6072;
  --on-ink-muted: #A3A7B7;
  --surface: #FFFFFF;
  --surface-2: #F7F7F9;
  --surface-3: #ECECEF;
  --border: #E6E7EC;
  --rule: #EEEEF2;
  --border-strong: #DCDDE3;

  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 12px 32px rgba(15, 18, 34, 0.06);
  --shadow-hero: 0 30px 80px rgba(15, 18, 34, 0.10);

  /* Layout: 20px gutters on phones, up to 80px on desktop; content up to 1320px wide. */
  --gutter: clamp(20px, 5vw, 80px);
  --maxw: 1320px;
  --section-y: clamp(72px, 8.5vw, 128px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body { font-size: 18px; }
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul, ol, figure, dl, dd { margin: 0; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; }
a { color: inherit; }
code, .mono { font-family: var(--font-mono); }
[id] { scroll-margin-top: 88px; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-ink :focus-visible { outline-color: var(--accent); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: calc(var(--maxw) + 2 * var(--gutter));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.wordmark {
  font-family: var(--font-sans);
  font-stretch: 125%;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn-lg { min-height: 54px; padding: 0 28px; font-size: 17px; }
.btn-primary { background: var(--ember); color: #FFFFFF; }
.btn-primary:hover { background: #8F3F10; }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-signal { background: var(--accent); color: var(--ink); }
.btn-signal:hover { background: #FF7A2F; }
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* ---------- Labels, pills ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
}
.on-ink .eyebrow { color: var(--accent); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.5;
}
.pill-violation { background: var(--ink); color: #FFFFFF; }
.pill-verified { background: var(--tint); color: var(--ember); }
.pill-unverified { background: var(--surface); color: var(--ink-2); border: 1px solid var(--border-strong); }
.pill-unassessed { background: var(--surface-3); color: var(--ink-2); border: 1px dashed #9A9EAD; }
.pill-signal { background: var(--accent); color: var(--ink); }
.pill-neutral { background: var(--surface-3); color: var(--ink-2); }
.pill-now { background: var(--ink); color: #FFFFFF; }
.pill-next { background: var(--tint); color: var(--ember); }
.pill-later { background: var(--surface-3); color: var(--ink-2); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--rule);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(8px); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.nav-toggle { display: none; }
.site-nav { display: flex; align-items: center; gap: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a { text-decoration: none; padding: 6px 0; }
.nav-links a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 879px) {
  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--surface);
    color: var(--ink);
    font: 600 14px/1 var(--font-sans);
    cursor: pointer;
  }
  .nav-toggle svg { width: 18px; height: 18px; }
  .nav-toggle .icon-close { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .nav-toggle[aria-expanded="true"] .icon-close { display: block; }

  .header-inner { flex-wrap: wrap; min-height: 68px; }
  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 0 0 20px;
  }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--rule);
    font-size: 17px;
  }
  .site-nav .btn { width: 100%; }
}

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--surface-2); }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.025em; text-wrap: balance; }
h2 { font-size: clamp(34px, 3.8vw, 52px); line-height: 1.06; }
h3 { font-size: clamp(26px, 2.6vw, 38px); line-height: 1.12; letter-spacing: -0.02em; }

/* Section heads are left-aligned, like the wireframe's product rows. */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 900px;
  margin: 0 0 clamp(40px, 4.5vw, 64px);
}
.section-head p { font-size: clamp(17px, 1.35vw, 20px); color: var(--muted); max-width: 62ch; }
/* Split head: eyebrow + H2 on the left, lead paragraph on the right (desktop). */
@media (min-width: 1024px) {
  .section-head-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    column-gap: clamp(40px, 5vw, 96px);
    row-gap: 16px;
    align-items: end;
  }
  .section-head-split .eyebrow { grid-column: 1; }
  .section-head-split h2 { grid-column: 1; }
  .section-head-split p { grid-column: 2; grid-row: 2; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 7vw, 112px) 0 clamp(64px, 8vw, 128px);
  background-color: var(--surface);
  background-image:
    radial-gradient(ellipse 60% 55% at 72% 45%, var(--glow), transparent 70%),
    radial-gradient(#E9E9EE 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); }
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero-eyebrow svg { width: 22px; height: 22px; }
.hero h1 {
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-sub {
  max-width: 34em;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.55;
  color: var(--muted);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { max-width: 36em; font-size: 15px; color: var(--muted); }

/* Report excerpt card (hero visual) */
.excerpt {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
  text-align: left;
  min-width: 0;
  container: excerpt / inline-size;
}
.excerpt-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.excerpt-title { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px; }
.excerpt-title svg { width: 18px; height: 18px; }
.excerpt-meta { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.excerpt-body { padding: 4px 22px 8px; }
.outcome-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.outcome-table caption { text-align: left; }
.outcome-table th {
  padding: 14px 12px 10px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.outcome-table td {
  padding: 15px 12px 15px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.outcome-table td:last-child { padding-right: 0; }
.outcome-table tr:last-child td { border-bottom: 0; }
.outcome-table td:first-child { width: 1%; white-space: nowrap; padding-right: 18px; }
.outcome-table .rule-text { display: block; font-weight: 600; font-size: 16px; line-height: 1.35; }
.outcome-table .evidence { display: block; margin-top: 4px; font-family: var(--font-mono); font-size: 13px; line-height: 1.5; color: var(--muted); }
.excerpt-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  background: var(--surface-2);
  font-size: 14px;
  color: var(--muted);
}
.never-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.never-green::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
/* Stack the rows when the card itself is narrow (phone, or the 1024–1199 hero column). */
@container excerpt (max-width: 479px) {
  .outcome-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .outcome-table, .outcome-table tbody, .outcome-table tr, .outcome-table td { display: block; width: 100%; }
  .outcome-table tr { padding: 16px 0; border-bottom: 1px solid var(--rule); }
  .outcome-table tr:last-child { border-bottom: 0; }
  .outcome-table td, .outcome-table td:first-child { padding: 0; border: 0; width: 100%; }
  .outcome-table td:first-child { margin-bottom: 8px; }
  .excerpt-bar, .excerpt-body, .excerpt-foot { padding-left: 18px; padding-right: 18px; }
}

/* ---------- Cards and grids ---------- */
.grid-3, .grid-4 { display: grid; gap: 24px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 > :last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-3 > :last-child:nth-child(odd) { grid-column: auto; }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}
.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--rule);
}
.card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; }
.card p { font-size: 16px; line-height: 1.6; color: var(--muted); }
.problem-card { min-height: 240px; }
.icon-tile {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 4px;
}
.icon-tile svg { width: 24px; height: 24px; }

/* ---------- Feature rows (What we test) ---------- */
.features { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 120px); }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
@media (min-width: 900px) {
  .feature { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .feature.reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .feature.reverse .feature-copy { order: 2; }
  .feature.reverse .feature-visual { order: 1; }
}
.feature-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.feature-copy p { color: var(--muted); }
.feature-label { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.62em;
  border-radius: 2px;
  background: var(--accent);
}
.feature-note { font-size: 15px; color: var(--muted); border-left: 3px solid var(--border-strong); padding-left: 14px; }

.feature-visual {
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--rule);
  padding: clamp(20px, 4vw, 56px);
  min-height: clamp(0px, 30vw, 440px);
  display: flex;
  align-items: center;
}
.feature-visual > * { width: 100%; }
.mock {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
}
.mock-head strong { font-weight: 700; }
.mock-head .mono { font-size: 12px; color: var(--muted); }
.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #F2F2F5;
  font-size: 15px;
}
.mock-row:last-child { border-bottom: 0; }
.mock-row .mono { font-size: 14px; }

/* chat transcript mock */
.chat { display: flex; flex-direction: column; gap: 16px; padding: 22px; }
.chat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}
.bubble { max-width: 82%; padding: 12px 16px; font-size: 15px; line-height: 1.5; }
.bubble-role {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bubble-attack {
  align-self: flex-end;
  border-radius: 16px 16px 4px 16px;
  background: var(--ink);
  color: #FFFFFF;
}
.bubble-attack .bubble-role { color: var(--on-ink-muted); }
.bubble-reply {
  align-self: flex-start;
  border-radius: 16px 16px 16px 4px;
  background: #F1F1F4;
  border: 2px solid var(--accent);
}
.bubble-reply .bubble-role { color: var(--muted); }
.finding-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--tint);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
}
.finding-box strong { color: var(--ember); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Report section: copy + deliverables left, evidence visual right ---------- */
.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 80px);
  align-items: start;
}
@media (min-width: 1024px) {
  .report-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 6fr); }
  .evidence-panel { position: sticky; top: 108px; }
}
.report-copy .section-head { margin-bottom: 36px; }
.deliverables { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
@media (min-width: 640px) {
  .deliverables { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.deliverables .card { padding: 22px 24px; gap: 8px; }
.deliverables .card h3 { font-size: 19px; }
.deliverables .card p { font-size: 15px; }

.evidence-panel {
  border-radius: var(--radius-xl);
  background-color: var(--ink);
  background-image: radial-gradient(ellipse 420px 220px at 90% 110%, var(--glow-dark-soft), transparent 70%);
  color: #FFFFFF;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.evidence-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--on-ink-muted);
}
.evidence-panel .file-name { color: #FFFFFF; font-weight: 600; font-size: 14px; }
.code {
  margin: 0;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.75;
  color: #E6E7EC;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.code .k { color: var(--on-ink-muted); }
.code .s { color: #FFFFFF; }
.code .hl { color: #FF8A45; } /* Signal lifted for >= 4.5:1 on the code block */
.evidence-panel p { font-size: 16px; color: var(--on-ink-muted); }

/* ---------- Steps ---------- */
.step { gap: 12px; padding: clamp(24px, 2.2vw, 30px); }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  margin-bottom: 4px;
}
.step:last-child .step-num { background: var(--accent); color: var(--ink); }
.step h3 { font-size: 21px; }
.step p { font-size: 16px; }
.step .pill { align-self: flex-start; margin-top: auto; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
@media (min-width: 760px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.why-item { flex-direction: row; gap: 20px; align-items: flex-start; }
.why-item > div { display: flex; flex-direction: column; gap: 8px; }
.fine-print {
  margin-top: 32px;
  max-width: 62ch;
  font-size: 16px;
  color: var(--muted);
}

/* ---------- Roadmap ---------- */
.roadmap { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
@media (min-width: 900px) {
  .roadmap { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.roadmap-col { gap: 16px; }
.roadmap-col .pill { align-self: flex-start; }
.roadmap-col.now { border: 2px solid var(--accent); box-shadow: 0 20px 50px rgba(15, 18, 34, 0.08); }
.roadmap-col h3 { font-size: 24px; }
.roadmap-col ul { display: flex; flex-direction: column; gap: 12px; padding: 0; list-style: none; font-size: 16px; }
.roadmap-col li {
  display: flex;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--ink-2);
}
.roadmap-col li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.62em;
  border-radius: 2px;
  background: var(--border-strong);
}
.roadmap-col.now li::before { background: var(--accent); }
.roadmap-note { margin-top: 28px; font-size: 16px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-panel {
  border-radius: var(--radius-xl);
  background-color: var(--ink);
  background-image: radial-gradient(ellipse 620px 300px at 85% 120%, var(--glow-dark-soft), transparent 70%);
  color: #FFFFFF;
  padding: clamp(36px, 6vw, 88px) clamp(24px, 5.5vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .contact-panel { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 64px; }
}
.contact-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.contact-copy h2 { font-size: clamp(36px, 4.4vw, 60px); }
.contact-copy p { max-width: 38em; font-size: clamp(17px, 1.35vw, 20px); color: var(--on-ink-muted); }
.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 2.5vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid #2E3246;
  background: rgba(255, 255, 255, 0.03);
}
.contact-label { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-ink-muted); }
.contact-address {
  font-family: var(--font-mono);
  font-size: clamp(18px, 1.8vw, 24px);
  color: #FFFFFF;
  overflow-wrap: anywhere;
  text-underline-offset: 4px;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--rule); padding: 48px 0 40px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand svg { width: 26px; height: 26px; }
.footer-brand .wordmark { font-size: 15px; }
.footer-tag { font-size: 15px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 32px; font-size: 15px; color: var(--ink-2); }
.footer-links a { text-underline-offset: 3px; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Prose pages (privacy, 404) ---------- */
.prose { max-width: 760px; padding: clamp(48px, 8vw, 112px) 0; }
.prose h1 { font-size: clamp(38px, 4.6vw, 64px); line-height: 1.04; margin-bottom: 14px; }
.prose h2 { font-size: 26px; letter-spacing: -0.01em; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--ink-2); }
.prose p + p { margin-top: 14px; }
.prose ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.prose .lead { font-size: clamp(18px, 1.45vw, 21px); color: var(--muted); }
.prose .updated { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.prose a:not(.btn) { color: var(--ember); text-underline-offset: 3px; }
.notfound { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.notfound .cta-row { margin-top: 12px; }
