:root {
  --ink: #0b2e26;
  --ink-2: #3b4f49;
  --mut: #6b7280;
  --mut-2: #9aa1ab;
  --line: #e1ddd3;
  --line-2: #eeeae2;
  --line-3: #cfc9bd;
  --pap: #f7f5f0;
  --srf: #ffffff;
  --acc: #145a43;
  --acc-soft: #e8f0ec;
  --accent-light: #7fd1a8;
  --ai: #4b3fae;
  --ai-soft: #eeebfb;
  --pass: #177a55;
  --pass-bg: #e6f3ec;
  --fail: #b3401f;
  --fail-bg: #fbe9e3;
  --warn: #8a5a00;
  --warn-bg: #fbf0d9;
  --side: #0b2e26;
  --brand: #f0632a;
  --r-sm: 10px;
  --r-lg: 14px;
  --max-w: 1240px;
  --font-ui: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", Georgia, serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;
  --shadow-card: 0 12px 32px rgb(11 46 38 / 0.08);
  --shadow-float: 0 12px 32px rgb(11 46 38 / 0.12);
  --shadow-float-dark: 0 16px 40px rgb(0 0 0 / 0.45);
  color-scheme: light;
}

.accent-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--acc);
}
.band-dark .accent-em, .band-teal .accent-em, .ai-visual .accent-em, .final-cta-v2 .accent-em { color: var(--accent-light); }

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

body {
  margin: 0;
  background: var(--pap);
  color: var(--ink-2);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--acc); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.9em;
}
.eyebrow.ai { color: var(--ai); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }
@media (max-width: 640px) { section { padding: 56px 0; } }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head p { color: var(--mut); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #262b32; box-shadow: 0 6px 16px rgb(21 24 28 / 0.25); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-on-dark:hover { background: #e9e7e2; }
.btn-secondary-on-dark { background: transparent; color: #fff; border-color: rgb(255 255 255 / 0.3); }
.btn-secondary-on-dark:hover { border-color: #fff; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.btn-sm { padding: 8px 16px; font-size: 0.88rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.cta-note { color: var(--mut); font-size: 0.88rem; margin-top: 14px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}
.site-header.scrolled {
  background: rgb(247 246 243 / 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-2);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { height: 26px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 24px; margin-right: auto; }
.header-nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 8px 0;
}
.header-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a.signin { color: var(--ink-2); text-decoration: none; font-size: 0.94rem; font-weight: 500; }
.has-dropdown { position: relative; }
.dropdown-trigger {
  background: none; border: none; cursor: pointer; font: inherit; color: var(--ink-2);
  font-size: 0.94rem; font-weight: 500; padding: 8px 0; display: flex; align-items: center; gap: 4px;
}
.dropdown-trigger:hover { color: var(--ink); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 8px;
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-card);
  padding: 8px;
  min-width: 240px;
  display: none;
  flex-direction: column;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--pap); color: var(--ink); }
.dropdown-menu a small { display: block; color: var(--mut); font-size: 0.78rem; margin-top: 2px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-sheet {
  position: fixed;
  inset: 0;
  background: var(--pap);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  overflow-y: auto;
}
.mobile-sheet.open { display: flex; }
.mobile-sheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-sheet nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-sheet a.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.mobile-sheet .sub-link { font-size: 1rem; font-weight: 500; color: var(--ink-2); padding: 10px 0 10px 16px; border-bottom: none; }
.mobile-sheet-actions { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 900px) {
  .header-nav, .header-actions .signin { display: none; }
  .header-actions .btn-primary, .header-actions .btn-secondary { display: none; }
  .menu-toggle { display: flex; }
}

/* Footer */
.site-footer { background: var(--side); color: rgb(255 255 255 / 0.72); }
.footer-main { padding: 64px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand-mark { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark img { height: 28px; width: 28px; }
.footer-brand-mark span { color: #fff; font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; }
.footer-brand p { color: rgb(255 255 255 / 0.55); font-size: 0.92rem; max-width: 26ch; }
.footer-badges { display: flex; gap: 8px; font-family: var(--font-mono); font-size: 0.7rem; color: rgb(255 255 255 / 0.55); margin-top: 14px; flex-wrap: wrap; }
.footer-badges span { padding: 4px 8px; border: 1px solid rgb(255 255 255 / 0.16); border-radius: 6px; }
.footer-col h4 {
  color: rgb(255 255 255 / 0.4);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgb(255 255 255 / 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 0.82rem;
  color: rgb(255 255 255 / 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Dark band */
.band-dark {
  background: var(--side);
  color: rgb(255 255 255 / 0.78);
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .eyebrow { color: #7fd0c9; }
.band-dark .section-head p { color: rgb(255 255 255 / 0.55); }

/* Cards */
.card {
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card-title { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.card p { color: var(--mut); margin: 0; }

/* Browser frame */
.browser-frame {
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.browser-frame .bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-2);
}
.browser-frame .bar span {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line);
}
.browser-frame img { width: 100%; height: auto; display: block; }

/* Animated asset */
.asset-anim {
  display: inline-block;
  max-width: 100%;
  filter: drop-shadow(var(--shadow-float));
}
.band-dark .asset-anim { filter: drop-shadow(var(--shadow-float-dark)); }
.asset-anim img { width: 100%; height: auto; }
.asset-anim .asset-still { display: none; }
@media (prefers-reduced-motion: reduce) {
  .asset-anim .asset-motion { display: none; }
  .asset-anim .asset-still { display: block; }
}

/* Animation preview card: no browser chrome, just a rounded card that lifts on hover */
.anim-card {
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.anim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgb(21 24 28 / 0.16);
  border-color: var(--acc);
}
.anim-card .asset-anim { filter: none; max-width: 100%; }
.anim-card .asset-anim img { width: auto; max-width: 100%; height: auto; }
.band-dark .anim-card { background: rgb(255 255 255 / 0.04); border-color: rgb(255 255 255 / 0.14); }
.band-dark .anim-card:hover { border-color: rgb(255 255 255 / 0.35); box-shadow: 0 20px 44px rgb(0 0 0 / 0.5); }
@media (max-width: 640px) { .anim-card { padding: 20px; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(6px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Hero v3 */
.hero { padding: clamp(56px, 9vw, 104px) 0 0; position: relative; overflow: hidden; }
.hero-dotgrid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgb(11 46 38 / 0.06) 1px, transparent 1px), linear-gradient(90deg, rgb(11 46 38 / 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(at 50% 10%, #000 20%, transparent 70%);
  mask-image: radial-gradient(at 50% 10%, #000 20%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; left: 50%; top: -220px; width: 1100px; max-width: 160vw; height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(rgb(20 90 67 / 0.14), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 1040px; margin: 0 auto; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acc); font-weight: 600; margin-bottom: 26px;
  padding: 8px 14px; border: 1px solid rgb(20 90 67 / 0.35); border-radius: 999px; background: rgb(255 255 255 / 0.6);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); }
.hero h1 { max-width: 1040px; margin: 0 auto 24px; font-weight: 300; font-size: clamp(2.4rem, 6.6vw, 5.5rem); line-height: 1; }
.hero p.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); max-width: 640px; margin: 0 auto 32px; }
.hero .cta-row { justify-content: center; }
.hero .trust-row { justify-content: center; margin-top: 16px; color: var(--mut-2); }
.hero .trust-row span { display: inline; }
.hero .trust-row .sep { color: var(--line-3); }
@media (max-width: 640px) { .hero h1 { line-height: 1.02; } }

/* Hero product mockup */
.hero-app-wrap { position: relative; max-width: var(--max-w); margin: 64px auto 0; padding: 0 24px; }
.hero-app-glow {
  position: absolute; left: 8%; right: 8%; bottom: -32px; height: 110px;
  background: radial-gradient(rgb(11 46 38 / 0.35), transparent 70%); filter: blur(20px); pointer-events: none;
}
.hero-app-card {
  position: relative; background: var(--srf);
  border: 1px solid var(--line-3); border-bottom: none;
  border-radius: 16px 16px 0 0; box-shadow: 0 40px 100px -40px rgb(11 46 38 / 0.4);
  overflow: hidden;
}
.hero-app-topbar {
  display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  border-bottom: 1px solid var(--line-2); background: #faf9f6; font-size: 0.76rem; color: var(--mut);
}
.hero-app-topbar .dots { display: flex; gap: 6px; flex-shrink: 0; }
.hero-app-topbar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.hero-app-topbar .path { flex: 1; text-align: center; font-family: var(--font-mono); }
.hero-app-card .frame { aspect-ratio: 16 / 9; width: 100%; }
.hero-app-card .frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.hero-chain-chip {
  position: absolute; right: 24px; top: -22px;
  background: var(--ink); color: var(--pap);
  font-size: 0.76rem; font-family: var(--font-mono);
  padding: 10px 14px; border-radius: 8px; box-shadow: 0 12px 32px rgb(11 46 38 / 0.3);
  display: flex; align-items: center; gap: 10px;
}
.hero-chain-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-light); }
@media (max-width: 640px) { .hero-chain-chip { position: static; margin: 14px auto 0; width: max-content; } }

/* Marquee ticker */
.marquee-band { background: var(--ink); color: var(--pap); overflow: hidden; padding: 16px 0; }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 40s linear infinite;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgb(247 245 240 / 0.75);
}
.marquee-group { display: flex; gap: 48px; padding-right: 48px; white-space: nowrap; }
.marquee-group .sep { color: var(--accent-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Compliance strip */
.compliance-strip { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; justify-content: center; }
.compliance-strip .label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--mut); }
.compliance-strip span.std { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }

/* Demo video card */
.demo-head { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 48px; align-items: end; margin-bottom: 44px; }
.demo-video-card { position: relative; background: var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 40px 100px -40px rgb(11 46 38 / 0.5); aspect-ratio: 16 / 9; }
.demo-video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-video-card .scrim { position: absolute; inset: 0; background: linear-gradient(rgb(11 46 38 / 0) 40%, rgb(11 46 38 / 0.55)); pointer-events: none; }
.demo-play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%; border: 0; background: var(--pap); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; box-shadow: 0 20px 50px -10px rgb(0 0 0 / 0.5);
  transition: transform 0.2s ease;
}
.demo-play-btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.demo-play-btn .tri { width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent var(--ink); margin-left: 5px; }
.demo-video-meta { position: absolute; left: 24px; bottom: 20px; display: flex; align-items: center; gap: 14px; color: var(--pap); font-size: 0.82rem; pointer-events: none; }
.demo-video-meta .dur { font-family: var(--font-mono); padding: 4px 8px; border: 1px solid rgb(247 245 240 / 0.4); border-radius: 4px; }
.demo-foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 18px; font-size: 0.82rem; color: var(--mut); }
.demo-foot .timeline { font-family: var(--font-mono); }
.demo-foot a { font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-3); padding-bottom: 2px; }

/* Old way grid */
.oldway-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 760px) { .oldway-grid { grid-template-columns: 1fr; } }
.oldway-cell { background: var(--srf); padding: 36px 30px; display: flex; flex-direction: column; gap: 44px; }
.oldway-visual { min-height: 44px; }
.oldway-stat { font-family: var(--font-serif); font-size: 3.2rem; line-height: 1; font-weight: 300; }
.oldway-stat span.unit { font-size: 1.3rem; color: var(--mut-2); }
.oldway-stat .cap { font-size: 0.76rem; font-family: var(--font-ui); color: var(--mut); margin-top: 8px; letter-spacing: 0.02em; }
.oldway-files { font-family: var(--font-mono); font-size: 0.82rem; color: var(--fail); line-height: 2; }
.oldway-files .struck { text-decoration: line-through; text-decoration-color: rgb(179 64 31 / 0.5); }
.oldway-thread { font-family: var(--font-mono); font-size: 0.82rem; color: var(--fail); line-height: 2; }
.oldway-thread .sub { color: var(--mut-2); }
.oldway-cell h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.oldway-cell p { font-size: 0.92rem; line-height: 1.55; color: var(--mut); margin: 0; }

/* Sample-follow scrollytelling */
.follow-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; border-bottom: 1px solid var(--ink); padding-bottom: 18px; padding-top: 4px; margin-bottom: 0; position: sticky; top: 74px; z-index: 20; background: var(--pap); isolation: isolate; }
.follow-head .ref { font-family: var(--font-mono); font-size: 0.78rem; color: var(--mut); }
@media (max-width: 900px) { .follow-head { position: static; } }
.follow-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 0; align-items: stretch; }
@media (max-width: 900px) { .follow-grid { grid-template-columns: 1fr; } }
.follow-media-col { border-right: 1px solid var(--line); min-width: 0; padding-right: clamp(16px, 3vw, 48px); }
@media (max-width: 900px) { .follow-media-col { display: none; } }
.follow-sticky { position: sticky; top: 200px; padding: 40px 0; }
@media (max-width: 900px) { .follow-sticky { position: static; padding: 24px 0; } }
.follow-panel { position: relative; height: 420px; transition: height 0.4s ease; }
.follow-frames { position: relative; padding: 0; height: 100%; }
.follow-frame { position: absolute; inset: 0; padding: 0; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.follow-frame.active { opacity: 1; pointer-events: auto; }
.follow-frame .box { width: 100%; height: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.follow-frame img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.follow-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px 20px; padding-top: 20px; font-size: 0.78rem; color: var(--ink-2); }
.follow-legend span.row { display: flex; gap: 10px; align-items: center; }
.follow-legend .mk { font-family: var(--font-serif); font-size: 1.25rem; color: var(--pass); line-height: 1; }
.follow-legend .mk.fail { color: var(--fail); }
.follow-legend .mk.mono { font-family: var(--font-mono); font-size: 0.85rem; }
.follow-steps-col { position: relative; z-index: 1; padding-left: clamp(16px, 3vw, 48px); min-width: 0; }
@media (max-width: 900px) { .follow-steps-col { padding-left: 0; margin-top: 32px; } }
.follow-step { min-height: 72vh; padding: 56px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 900px) { .follow-step { min-height: 0; padding: 0 0 36px; margin-bottom: 36px; } }
.follow-step:last-child { border-bottom: none; }
.follow-step .ref-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--mut); letter-spacing: 0.06em; margin-bottom: 14px; }
.follow-step.is-exception .ref-label { color: var(--fail); }
.follow-step.is-final .ref-label { color: var(--pass); }
.follow-step h3 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 14px; }
.follow-step p { font-size: 1rem; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 480px; }
@media (max-width: 900px) { .follow-step-mobile-img { display: block; margin-bottom: 20px; border: 1px solid var(--line-2); overflow: hidden; background: var(--pap); } }
@media (min-width: 901px) { .follow-step-mobile-img { display: none; } }
.follow-step-mobile-img img { width: 100%; height: auto; display: block; }

/* AI band v3 */
.ai-band-v3 { margin-top: 0; background: var(--ink); color: var(--pap); position: relative; overflow: hidden; }
.ai-band-v3 .hero-dotgrid { background-image: linear-gradient(rgb(247 245 240 / 0.05) 1px, transparent 1px), linear-gradient(90deg, rgb(247 245 240 / 0.05) 1px, transparent 1px); -webkit-mask-image: radial-gradient(at 80% 50%, #000 20%, transparent 70%); mask-image: radial-gradient(at 80% 50%, #000 20%, transparent 70%); }
.ai-band-v3-inner { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 72px; align-items: center; }
.ai-band-v3 p.lead { color: rgb(185 203 196); }
.ai-numbered { display: grid; border-top: 1px solid rgb(247 245 240 / 0.12); margin-top: 8px; }
.ai-numbered-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgb(247 245 240 / 0.12); }
.ai-numbered-row .n { font-family: var(--font-serif); font-size: 1.3rem; color: var(--accent-light); }
.ai-numbered-row .t { font-weight: 600; font-size: 0.95rem; }
.ai-numbered-row .d { font-size: 0.86rem; color: rgb(185 203 196); margin-top: 3px; }
.ai-band-v3 .more-link { display: inline-block; margin-top: 28px; color: var(--pap); font-weight: 600; font-size: 0.94rem; border-bottom: 1px solid rgb(247 245 240 / 0.4); padding-bottom: 3px; }
.ai-band-v3-media { border: 1px solid rgb(255 255 255 / 0.12); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 80px -30px rgb(0 0 0 / 0.6); background: rgb(255 255 255 / 0.03); }
.ai-band-v3-media img { width: 100%; height: auto; display: block; }

/* Deficiency + Audit two-card row */
.two-card-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr)); gap: 28px; }
.info-card { background: var(--srf); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 28px; }
.info-card .eyebrow { color: var(--mut); }
.info-card h2 { font-weight: 300; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin: 0 0 14px; }
.info-card p { font-size: 0.95rem; line-height: 1.6; color: var(--ink-2); margin: 0; }
.info-card .shot { margin-top: auto; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; background: var(--pap); }
.info-card .shot img { width: 100%; height: auto; display: block; }

/* Access: single wide image */
.wide-shot { background: var(--pap); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.wide-shot img { width: 100%; height: auto; display: block; }

/* At a glance */
.glance-shot { background: var(--pap); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 80px -40px rgb(11 46 38 / 0.3); }
.glance-shot img { width: 100%; height: auto; display: block; }
.glance-caption { font-size: 0.72rem; color: var(--mut-2); margin-top: 10px; text-align: right; }

/* Blog v2 */
.blog-v2-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 900px) { .blog-v2-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-v2-grid { grid-template-columns: 1fr; } }
.blog-v2-card {
  display: flex; flex-direction: column; gap: 14px; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--pap);
  color: var(--ink); text-decoration: none; min-height: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-v2-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-v2-card .bar { height: 6px; width: 48px; border-radius: 3px; }
.blog-v2-card h3 { font-size: 1.35rem; margin: 0; line-height: 1.2; }
.blog-v2-card p { margin: 0; color: var(--ink-2); font-size: 0.92rem; }
.blog-v2-card .meta { margin-top: auto; font-size: 0.8rem; color: var(--mut); }

/* Final CTA v2 */
.final-cta-v2 {
  background: var(--ink); border-radius: 18px; padding: clamp(56px, 8vw, 112px) clamp(28px, 6vw, 96px);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-v2 .cta-dotgrid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgb(247 245 240 / 0.05) 1px, transparent 1px), linear-gradient(90deg, rgb(247 245 240 / 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(at 50% 100%, #000 10%, transparent 70%);
  mask-image: radial-gradient(at 50% 100%, #000 10%, transparent 70%);
  pointer-events: none;
}
.final-cta-v2 .blob { position: absolute; left: 50%; bottom: -300px; width: 900px; max-width: 220vw; height: 600px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgb(127 209 168 / 0.22), transparent 60%); pointer-events: none; }
.final-cta-v2-copy { max-width: 800px; margin: 0 auto; position: relative; }
.final-cta-v2-copy h2 { color: #fff; font-weight: 300; margin: 0 auto 18px; font-size: clamp(2rem, 5.6vw, 4.75rem); line-height: 1; }
.final-cta-v2-copy p { margin: 0 auto 36px; max-width: 520px; color: rgb(185 203 196); font-size: 1.1rem; }
.final-cta-v2-actions { position: relative; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Feature list */
.feature-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); }
.feature-list svg { flex-shrink: 0; color: var(--acc); margin-top: 3px; }

/* Split section (alternating image/copy) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split.reverse .split-visual { order: 1; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-copy, .split.reverse .split-visual { order: initial; }
}

/* Product page in-page nav */
.product-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgb(247 246 243 / 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-2);
  overflow-x: auto;
}
.product-nav .wrap { display: flex; gap: 4px; padding-top: 0; padding-bottom: 0; }
.product-nav a {
  white-space: nowrap;
  padding: 14px 16px;
  color: var(--mut);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}
.product-nav a.active, .product-nav a:hover { color: var(--ink); border-bottom-color: var(--acc); }

.product-section { padding: 72px 0; border-bottom: 1px solid var(--line-2); }
.product-section:last-of-type { border-bottom: none; }

/* Badges / pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
}
.pill-ai { background: var(--ai-soft); color: var(--ai); }
.pill-acc { background: var(--acc-soft); color: var(--acc); }
.pill-pass { background: var(--pass-bg); color: var(--pass); }
.pill-fail { background: var(--fail-bg); color: var(--fail); }
.pill-warn { background: var(--warn-bg); color: var(--warn); }

/* Quote callout */
.quote-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.quote-block .ai-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ai-soft);
  color: var(--ai);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.quote-block p {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* Illustrative caption */
.illustrative { text-align: center; color: var(--mut); font-size: 0.85rem; margin-top: 16px; font-family: var(--font-mono); }

/* Social proof placeholder */
.social-proof-placeholder { display: none; }
.social-proof-placeholder.active {
  display: block;
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
  color: var(--mut);
}

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.post-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.post-card .cover { aspect-ratio: 16/10; background: var(--pap); border-bottom: 1px solid var(--line-2); }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.08rem; margin: 0; }
.post-card p.excerpt { color: var(--mut); font-size: 0.92rem; margin: 0; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 8px; color: var(--mut); font-size: 0.8rem; font-family: var(--font-mono); }
.category-chip {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--acc-soft);
  color: var(--acc);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 40px;
}
.featured-post .cover { background: var(--pap); border-right: 1px solid var(--line-2); }
.featured-post .cover img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.featured-post-body h2 { font-size: 1.7rem; }
@media (max-width: 800px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .cover { border-right: none; border-bottom: 1px solid var(--line-2); aspect-ratio: 16/10; }
}

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-chip {
  border: 1px solid var(--line);
  background: var(--srf);
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  cursor: pointer;
  font-weight: 500;
}
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.search-row { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.search-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  background: var(--srf);
}
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination button {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--srf);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.pagination button.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Post page */
.post-header { padding: 56px 0 32px; border-bottom: 1px solid var(--line-2); }
.post-header .post-meta { margin-bottom: 18px; }
.post-header h1 { max-width: 820px; }
.post-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; padding: 48px 0 88px; align-items: start; }
.post-toc { position: sticky; top: 96px; }
.post-toc-title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mut); margin-bottom: 12px; }
.post-toc a {
  display: block;
  font-size: 0.86rem;
  color: var(--mut);
  text-decoration: none;
  padding: 6px 0 6px 12px;
  border-left: 2px solid var(--line-2);
}
.post-toc a.active { color: var(--acc); border-left-color: var(--acc); font-weight: 600; }
.post-toc a.sub { padding-left: 24px; font-size: 0.82rem; }
.post-body { max-width: 720px; }
.post-body h2 { margin-top: 2em; scroll-margin-top: 96px; }
.post-body h3 { margin-top: 1.6em; scroll-margin-top: 96px; }
.post-body p, .post-body li { color: var(--ink-2); }
.post-body table.content-table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.92rem; }
.post-body table.content-table th, .post-body table.content-table td {
  border: 1px solid var(--line); padding: 10px 14px; text-align: left;
}
.post-body table.content-table th { background: var(--pap); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.post-body .callout {
  border: 1px solid var(--line);
  border-left: 4px solid var(--acc);
  background: var(--acc-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 20px;
  margin: 1.6em 0;
}
.post-body .callout-warning { border-left-color: var(--warn); background: var(--warn-bg); }
.post-body .callout-tip { border-left-color: var(--pass); background: var(--pass-bg); }
.post-body .callout p:last-child { margin-bottom: 0; }
.post-body .callout-title { font-weight: 700; color: var(--ink); margin-bottom: 6px !important; }
.post-body .key-takeaways {
  background: var(--srf);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  margin: 2em 0;
}
.post-body .kt-title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc); margin-bottom: 12px !important; font-weight: 700; }
.post-body .key-takeaways ul { margin: 0; padding-left: 1.2em; }
.post-body .content-figure { margin: 1.8em 0; }
.post-body .content-figure img { border: 1px solid var(--line); border-radius: var(--r-sm); }
.post-body .content-figure figcaption { color: var(--mut); font-size: 0.85rem; margin-top: 10px; text-align: center; }
.post-cta-inline {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 30px;
  margin: 2.5em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.post-cta-inline p { color: rgb(255 255 255 / 0.7); margin: 4px 0 0; }
.post-cta-inline h4 { color: #fff; margin: 0; }
.author-box { display: flex; align-items: center; gap: 12px; margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--line-2); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--acc-soft); display: flex; align-items: center; justify-content: center; }
.author-avatar img { width: 24px; height: 24px; }
.share-row { display: flex; gap: 10px; margin-top: 2em; }
.share-row a, .share-row button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--srf);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
}
.related-posts { margin-top: 3em; }
.post-nav-links { display: flex; justify-content: space-between; gap: 20px; margin-top: 3em; padding-top: 2em; border-top: 1px solid var(--line-2); }
.post-nav-links a { text-decoration: none; color: var(--ink); font-weight: 600; max-width: 45%; }
.post-nav-links span { display: block; color: var(--mut); font-size: 0.78rem; font-family: var(--font-mono); margin-bottom: 4px; }
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-toc { display: none; }
}

/* Pricing */
.billing-toggle { display: inline-flex; align-items: center; gap: 10px; background: var(--srf); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin: 0 auto 40px; }
.billing-toggle button {
  border: none; background: none; padding: 10px 20px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-ui); font-size: 0.92rem; font-weight: 600; color: var(--mut); position: relative;
}
.billing-toggle button.active { background: var(--ink); color: #fff; }
.save-badge { background: var(--pass-bg); color: var(--pass); font-size: 0.68rem; padding: 2px 7px; border-radius: 999px; margin-left: 6px; font-family: var(--font-mono); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--srf); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display: flex; flex-direction: column; }
.price-card.highlight { border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc); position: relative; }
.price-card.highlight::before {
  content: "Most popular";
  position: absolute; top: -12px; left: 28px;
  background: var(--acc); color: #fff; font-size: 0.7rem; font-family: var(--font-mono);
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.price-amount { font-size: 2.4rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; margin: 16px 0 4px; }
.price-amount span { font-size: 1rem; color: var(--mut); font-weight: 500; }
.price-card .btn { margin-top: 20px; }
.price-card .feature-list { margin-top: 24px; flex: 1; }
.trial-banner {
  text-align: center;
  background: var(--acc-soft);
  color: var(--acc);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 40px;
}
.plan-note { font-size: 0.85rem; color: var(--acc); background: var(--acc-soft); padding: 10px 14px; border-radius: 8px; margin-bottom: 20px; display: none; }
.plan-note.show { display: block; }

.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 20px; }
.compare-table th, .compare-table td { padding: 14px 16px; box-shadow: inset 0 -1px 0 var(--line-2); text-align: left; font-size: 0.92rem; }
.compare-table thead th { position: sticky; top: 64px; background: var(--pap); font-family: var(--font-mono); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; z-index: 5; box-shadow: inset 0 -1px 0 var(--line-2); }
.compare-table td.center, .compare-table th.center { text-align: center; }
.compare-table svg.yes { color: var(--pass); }
.compare-table svg.no { color: var(--line); }
@media (max-width: 760px) {
  .compare-table-wrap { overflow-x: auto; }
  .compare-table { min-width: 640px; }
}

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--line-2); }
.accordion-item summary {
  cursor: pointer; padding: 20px 0; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .chev { transition: transform 0.2s ease; flex-shrink: 0; color: var(--mut); }
.accordion-item[open] summary .chev { transform: rotate(180deg); }
.accordion-item .accordion-body { padding: 0 0 20px; color: var(--mut); max-width: 68ch; }

/* Forms */
.form-card { background: var(--srf); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field .req { color: var(--fail); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: var(--font-ui); font-size: 0.95rem; background: var(--srf); color: var(--ink-2);
}
.field input:invalid[data-touched="true"], .field.error input, .field.error select, .field.error textarea { border-color: var(--fail); }
.field-error { color: var(--fail); font-size: 0.8rem; margin-top: 6px; display: none; }
.field.error .field-error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: auto; margin-top: 3px; }
.checkbox-field label { font-weight: 400; font-size: 0.88rem; color: var(--mut); }
.form-status { margin-top: 16px; font-size: 0.9rem; }
.form-status.success { color: var(--pass); }
.form-status.error { color: var(--fail); }
.form-success-panel { text-align: center; padding: 40px 20px; }
.form-success-panel .check-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--pass-bg); color: var(--pass); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.two-col-page { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .two-col-page { grid-template-columns: 1fr; } }
.trial-side .feature-list { margin-bottom: 32px; }

/* Roles matrix */
.roles-matrix { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.roles-matrix th, .roles-matrix td { border: 1px solid var(--line-2); padding: 10px; text-align: center; }
.roles-matrix th:first-child, .roles-matrix td:first-child { text-align: left; font-weight: 600; }
.roles-matrix thead th { background: var(--pap); }

/* TODO / legal banner */
.owner-todo {
  border: 1px dashed var(--warn);
  background: var(--warn-bg);
  color: #6b4708;
  border-radius: var(--r-sm);
  padding: 16px 18px;
  font-size: 0.88rem;
  margin: 20px 0;
}
.owner-todo strong { font-family: var(--font-mono); }
.legal-banner {
  background: var(--warn-bg);
  color: #6b4708;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.legal-body { max-width: 760px; margin: 0 auto; }
.legal-body h2 { margin-top: 2em; }

/* 404 */
.not-found { text-align: center; padding: 120px 0; }
.not-found .code { font-family: var(--font-mono); color: var(--acc); font-size: 1rem; margin-bottom: 12px; }

/* Utility */
.text-center { text-align: center; }
.mut { color: var(--mut); }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; z-index: 300; text-decoration: none; transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
