/* workmachine.space · site.css · deploy build · 2026-04-25 (merged)
   Dark mode only · Inter + JetBrains Mono · WCAG AA
   Baseline: Claude Design deploy/ V3 · with v1 form-contract additions
   (consent-row, form-fallback, cockpit-disclaimer, field-pair, prose, not-found) */

:root {
  /* surfaces */
  --bg:           #0b0f1a;
  --surface:      #0f172a;
  --surface-2:    #1e293b;
  --surface-3:    rgba(30,41,59,0.6);

  /* text */
  --ink:          #f1f5f9;
  --ink-2:        #94a3b8;
  --ink-3:        #64748b;

  /* borders */
  --rule:         rgba(51,65,85,0.7);
  --rule-2:       rgba(71,85,105,0.9);

  /* accent */
  --blue:         #3b82f6;
  --blue-2:       #2563eb;
  --green:        #10b981;
  --amber:        #f59e0b;
  --red:          #f43f5e;

  /* type */
  --font-head:    'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --max:          1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(148,163,184,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

/* ── SKIP LINK ── */
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 200;
  padding: 10px 14px; background: var(--blue); color: white;
  font-family: var(--font-mono); font-size: 12px; border-radius: 4px;
  transform: translateY(-140%); transition: transform .15s;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid rgba(59,130,246,0.6); outline-offset: 3px; }

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 48px;
  border-bottom: 1px solid var(--rule);
  background: rgba(11,15,26,0.85); backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  letter-spacing: 0.04em;
}
.brand img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.brand span span { color: var(--blue); }

.site-nav {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-2);
}
.site-nav a { border-bottom: 2px solid transparent; padding: 6px 0; }
.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--ink); border-bottom-color: var(--ink); }
.site-nav .nav-cta { color: var(--blue); border-bottom-color: var(--blue); }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--rule); background: transparent; padding: 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

/* ── HERO ── */
.hero { min-height: calc(100vh - 64px); border-bottom: 1px solid var(--rule); }

.hero-status {
  display: grid; grid-template-columns: 1.2fr 1fr 0.8fr 1fr;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);
}
.hero-status div { padding: 14px 48px; border-right: 1px solid var(--rule); }
.hero-status div:last-child { border-right: 0; }

.live-dot, .state-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  margin-right: 8px; background: var(--green);
  box-shadow: 0 0 8px rgba(16,185,129,0.6); vertical-align: middle;
}

.hero-grid {
  max-width: var(--max); margin: 0 auto; padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(640px, 1.18fr);
  gap: 56px; align-items: center;
}

.eyebrow, .section-kicker {
  margin: 0 0 18px; font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--blue);
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.02em; }

.hero h1 {
  margin: 0; font-size: 72px; line-height: 0.95;
  font-weight: 800; max-width: 720px; letter-spacing: -0.04em;
}

.hero-lede {
  margin: 24px 0 0; max-width: 600px;
  color: var(--ink-2); font-size: 18px; line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.btn {
  min-height: 46px; display: inline-flex; align-items: center;
  justify-content: center; padding: 0 20px;
  border: 1px solid var(--rule-2); font-weight: 500; border-radius: 4px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background .12s ease, border-color .12s ease;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: var(--blue); border-color: var(--blue); color: white; }
.btn-primary:hover:not(:disabled) { background: var(--blue-2); border-color: var(--blue-2); }
.btn-secondary { background: transparent; color: var(--ink); }
.btn-secondary:hover:not(:disabled) { background: var(--surface-2); }

.access-note {
  margin: 16px 0 0; color: var(--ink-3);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
}

/* ── COCKPIT FRAME ── */
.cockpit-frame {
  background: var(--surface);
  border: 1px solid var(--rule-2);
  box-shadow: 0 32px 80px rgba(2,6,23,0.55);
  min-width: 0; border-radius: 6px; overflow: hidden;
}

.cockpit-topbar {
  height: 40px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 16px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3);
  background: rgba(15,23,42,0.8);
}
.topbar-dots { font-size: 10px; letter-spacing: 0.05em; color: var(--ink-3); opacity: 0.7; }

.cockpit-body {
  display: grid;
  grid-template-columns: 148px minmax(320px, 1fr) 148px;
  min-height: 500px;
}

.matter-rail, .provenance-panel {
  border-right: 1px solid var(--rule);
  background: rgba(15,23,42,0.6);
}
.provenance-panel { border-right: 0; border-left: 1px solid var(--rule); }

.rail-title, .panel-label {
  margin: 0; font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-3);
}
.rail-title { padding: 16px 12px 10px; }

.matter-row {
  width: 100%; display: block; text-align: left;
  background: transparent; border: 0;
  border-top: 1px solid var(--rule);
  padding: 13px 12px; color: var(--ink);
}
.matter-row span { display: block; font-weight: 700; font-size: 13px; }
.matter-row small { display: block; margin-top: 4px; color: var(--ink-3); font-size: 11px; }
.matter-row.active { background: rgba(59,130,246,0.08); box-shadow: inset 3px 0 0 var(--blue); }
.matter-row:hover { background: rgba(59,130,246,0.06); }

.command-brief { min-width: 0; padding: 14px; }

.delta-banner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 12px 14px;
  border: 1px solid rgba(59,130,246,0.28);
  background: rgba(59,130,246,0.08);
  color: var(--ink-2); font-size: 12px;
  font-family: var(--font-mono); letter-spacing: 0.06em;
}
.delta-banner button, .mini-link {
  border: 0; background: transparent; color: var(--blue);
  font-family: var(--font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.18em; padding: 4px 0;
}

.brief-header {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 18px 0 14px;
}
.brief-header h2 { margin: 4px 0 0; font-size: 24px; line-height: 1.2; font-family: var(--font-head); }

.level-pill {
  height: 26px; padding: 4px 9px; border: 1px solid var(--rule);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
}

.metric-grid, .pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule); background: var(--surface-2);
}
.metric-grid div, .pipeline div { padding: 12px; border-right: 1px solid var(--rule); }
.metric-grid div:last-child, .pipeline div:last-child { border-right: 0; }
.metric-grid span, .pipeline span {
  display: block; font-family: var(--font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-3);
}
.metric-grid strong, .pipeline strong {
  display: block; margin-top: 5px; font-size: 22px; font-weight: 600; color: var(--ink);
}
.pipeline { margin-top: 14px; }
.pipeline div:first-child { box-shadow: inset 0 -3px 0 var(--blue); }

.work-queue {
  margin-top: 14px; border: 1px solid var(--rule);
  background: var(--surface-2); font-size: 11px;
}
.work-queue > div {
  display: grid;
  grid-template-columns: 74px minmax(120px, 1fr) 70px 48px;
  gap: 8px; padding: 10px; border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
}
.work-queue .queue-head {
  border-top: 0; text-transform: uppercase;
  color: var(--ink-3); font-size: 9px; letter-spacing: 0.16em;
}

.provenance-panel { padding: 0 0 16px; }
.provenance-panel dl { margin: 0; padding: 0 12px; }
.provenance-panel dl div { border-top: 1px solid var(--rule); padding: 12px 0; }
.provenance-panel dt {
  font-family: var(--font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3);
}
.provenance-panel dd { margin: 5px 0 0; font-size: 12px; color: var(--ink-2); }
.mini-link { margin: 10px 12px 0; }

/* Cockpit illustrative disclaimer (honesty marker) */
.cockpit-disclaimer {
  margin: 0;
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid var(--rule);
}
.cockpit-disclaimer small { font-size: inherit; opacity: 0.85; }

/* ── PROOF STRIP ── */
.proof-strip {
  max-width: var(--max); margin: 0 auto;
  padding: 28px 48px 44px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.proof-strip div { padding: 0 24px; border-right: 1px solid var(--rule); }
.proof-strip div:first-child { padding-left: 0; }
.proof-strip div:last-child { border-right: 0; padding-right: 0; }
.proof-strip span {
  display: block; font-family: var(--font-mono); color: var(--blue);
  font-size: 11px; letter-spacing: 0.18em; margin-bottom: 12px;
}
.proof-strip strong { display: block; font-family: var(--font-head); font-size: 18px; margin-bottom: 6px; }
.proof-strip p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.6; }

/* ── SECTIONS ── */
.section, .product-hero, .contact-hero {
  max-width: var(--max); margin: 0 auto;
  padding: 88px 48px; border-bottom: 1px solid var(--rule);
}
.section-grid, .split-section, .access-section, .product-hero, .contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr);
  gap: 64px; align-items: start;
}
.section h2, .product-hero h1, .contact-hero h1 {
  margin: 0; font-size: 44px; line-height: 1.05; font-weight: 700;
}
.wide-heading { max-width: 960px; }
.section p, .product-hero p, .contact-hero p {
  color: var(--ink-2); font-size: 17px; line-height: 1.65;
}

.workflow-list, .proof-grid, .module-grid {
  display: grid; gap: 1px;
  background: var(--rule); border: 1px solid var(--rule);
}
.workflow-list { grid-template-columns: repeat(2, 1fr); }
.workflow-list article, .proof-grid article, .module-grid article {
  background: var(--surface); padding: 26px;
}
.workflow-list h3, .proof-grid h3, .module-grid h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.workflow-list p, .proof-grid p, .module-grid p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.6; }
.workflow-list span, .module-grid span, .proof-strip span,
.capability-row span {
  display: block; font-family: var(--font-mono); color: var(--blue);
  font-size: 11px; letter-spacing: 0.18em; margin-bottom: 12px;
}

.split-section { grid-template-columns: 0.92fr 1fr; }
.statement-stack { border-left: 2px solid var(--blue); padding-left: 28px; }
.statement-stack p:first-child { margin-top: 0; }

.proof-grid { grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
.state-dot { width: 10px; height: 10px; margin-bottom: 24px; }
.state-green { background: var(--green); box-shadow: 0 0 8px rgba(16,185,129,0.5); }
.state-amber { background: var(--amber); box-shadow: 0 0 8px rgba(245,158,11,0.5); }
.state-red { background: var(--red); box-shadow: 0 0 8px rgba(244,63,94,0.5); }

/* ── ACCESS / CONTACT FORM ── */
.access-section { align-items: center; }
.access-form {
  display: grid; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--rule); padding: 28px; border-radius: 6px;
}
.access-form.large { padding: 32px; }
.access-form label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-2);
}
.access-form input, .access-form textarea, .access-form select {
  width: 100%; border: 1px solid var(--rule-2);
  background: var(--surface-2); color: var(--ink);
  padding: 12px 14px; border-radius: 4px;
}
.access-form input:focus, .access-form textarea:focus, .access-form select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.18);
}
.access-form textarea { resize: vertical; min-height: 96px; }
.access-form a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-pair > div { display: grid; gap: 6px; }

.consent-row {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: none; letter-spacing: 0;
  color: var(--ink-2); line-height: 1.5; cursor: pointer;
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0; width: 16px; height: 16px;
  margin-top: 2px; width: auto;
  accent-color: var(--blue); cursor: pointer;
}
.consent-row span { flex: 1; }

.form-fallback {
  margin: 0; font-size: 12px; color: var(--ink-3);
  font-family: var(--font-mono);
}

.form-feedback {
  margin: 0; padding: 0;
  font-family: var(--font-mono); font-size: 12px;
  min-height: 18px;
}
.form-feedback.success {
  display: block; padding: 12px 14px; border-radius: 4px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3); color: var(--green);
}
.form-feedback.error {
  display: block; padding: 12px 14px; border-radius: 4px;
  background: rgba(244,63,94,0.1);
  border: 1px solid rgba(244,63,94,0.3); color: var(--red);
}
.form-feedback.warning {
  display: block; padding: 12px 14px; border-radius: 4px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3); color: var(--amber);
}

/* ── PRODUCT PAGE ── */
.product-hero, .contact-hero { min-height: calc(100vh - 140px); align-items: center; }
.product-hero h1, .contact-hero h1 { font-size: 52px; max-width: 780px; }

.terminal-panel {
  background: #080d16; color: #e2e8f0;
  border: 1px solid rgba(148,163,184,0.18);
  padding: 0; border-radius: 6px;
  box-shadow: 0 24px 60px rgba(2,6,23,0.5);
  overflow: hidden;
}
.terminal-title {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 12px 20px; border-bottom: 1px solid rgba(148,163,184,0.14);
  background: rgba(15,23,42,0.8);
}
.terminal-title::before {
  content: "● ● ●"; font-size: 9px; letter-spacing: 5px;
  color: var(--ink-3); margin-right: 12px;
}
.terminal-panel pre {
  margin: 0; padding: 22px; white-space: pre-wrap;
  font-family: var(--font-mono); font-size: 14px; line-height: 1.9;
}
.terminal-panel span { color: #78a6ff; }

.module-grid { grid-template-columns: repeat(3, 1fr); margin-top: 32px; }

.capability-table { padding-top: 64px; }
.capability-row {
  display: grid;
  grid-template-columns: 84px minmax(160px, 0.55fr) minmax(300px, 1fr) 80px;
  gap: 24px; align-items: baseline;
  padding: 20px 0; border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
}
.capability-row strong { font-family: var(--font-head); font-size: 18px; font-weight: 600; }
.capability-row p { margin: 0; font-size: 14px; color: var(--ink-2); }
.capability-row em {
  justify-self: end; font-family: var(--font-mono); font-size: 11px;
  color: var(--blue); font-style: normal;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.capability-row em.live { color: var(--green); }
.capability-row em.gated { color: var(--amber); }

/* ── CONTACT PAGE ── */
.contact-fit { padding-top: 64px; }
.contact-hero { grid-template-columns: minmax(340px, 0.85fr) minmax(380px, 1fr); }

/* ── PRIVACY POLICY (prose) ── */
.prose { max-width: 760px; margin: 0 auto; padding: 88px 48px; }
.prose h1 { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; margin: 0 0 12px; }
.prose .prose-date {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-3); letter-spacing: 0.14em; margin-bottom: 48px;
}
.prose h2 {
  font-size: 22px; font-weight: 700; margin: 40px 0 12px;
  border-top: 1px solid var(--rule); padding-top: 28px; letter-spacing: -0.01em;
}
.prose p, .prose li { font-size: 16px; line-height: 1.75; color: var(--ink-2); margin: 0 0 14px; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }

/* ── 404 PAGE ── */
.not-found {
  min-height: calc(100vh - 64px - 80px);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; max-width: 760px;
  margin: 0 auto; padding: 0 48px;
}
.not-found-code {
  font-family: var(--font-mono); font-size: 96px; font-weight: 500;
  color: var(--ink-3); line-height: 1;
  margin: 0 0 24px; letter-spacing: -0.04em;
}
.not-found h1 {
  font-size: 36px; font-weight: 700;
  margin: 0 0 14px; letter-spacing: -0.02em;
}
.not-found p {
  font-size: 17px; color: var(--ink-2);
  line-height: 1.65; max-width: 520px; margin: 0 0 32px;
}

/* ── FOOTER ── */
.site-footer {
  max-width: var(--max); margin: 0 auto;
  min-height: 80px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 48px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.08em;
  border-top: 1px solid var(--rule);
}
.site-footer div { display: flex; gap: 16px; align-items: center; }
.site-footer strong { color: var(--ink); }
.site-footer nav { display: flex; gap: 16px; }
.site-footer a:hover { color: var(--ink); }

/* ── UTILITIES ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .hero-grid, .section-grid, .split-section, .access-section,
  .product-hero, .contact-hero { grid-template-columns: 1fr; }
  .hero h1 { font-size: 56px; }
  .cockpit-body { grid-template-columns: 152px minmax(360px, 1fr); }
  .provenance-panel { display: none; }
  .proof-strip, .proof-grid, .module-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-status { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .site-header { height: auto; min-height: 60px; padding: 0 18px; }
  .brand { font-size: 16px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 60px; display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 18px 16px; background: var(--bg);
    border-bottom: 1px solid var(--rule); z-index: 90;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid var(--rule); border-bottom-color: var(--rule); }
  .site-nav a:hover, .site-nav a[aria-current='page'] { border-bottom-color: var(--blue); }
  .hero-status { grid-template-columns: 1fr; }
  .hero-status div { padding: 11px 18px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero-grid, .section, .product-hero, .contact-hero { padding-left: 18px; padding-right: 18px; }
  .hero-grid { padding-top: 36px; gap: 32px; }
  .hero h1, .section h2, .product-hero h1, .contact-hero h1 { font-size: 36px; }
  .hero-lede, .section p, .product-hero p, .contact-hero p { font-size: 15px; }
  .hero-actions, .site-footer, .site-footer div { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .cockpit-body { min-width: 0; min-height: 0; grid-template-columns: 1fr; }
  .matter-rail {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-right: 0; border-bottom: 1px solid var(--rule);
  }
  .matter-rail .rail-title { grid-column: 1 / -1; border-bottom: 1px solid var(--rule); }
  .matter-row { border-top: 0; border-right: 1px solid var(--rule); }
  .matter-row:last-child { border-right: 0; }
  .brief-header h2 { font-size: 22px; }
  .metric-grid, .pipeline { grid-template-columns: repeat(2, 1fr); }
  .metric-grid div:nth-child(2), .pipeline div:nth-child(2) { border-right: 0; }
  .metric-grid div:nth-child(-n+2), .pipeline div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .delta-banner, .brief-header { align-items: flex-start; }
  .delta-banner { flex-direction: column; }
  .work-queue .queue-head { display: none; }
  .work-queue > div { grid-template-columns: 64px 1fr 60px; }
  .work-queue > div span:nth-child(4) { display: none; }
  .proof-strip { grid-template-columns: 1fr 1fr; padding: 22px 18px; }
  .site-footer { padding: 20px 18px; flex-direction: column; align-items: flex-start; min-height: 0; }
  .capability-row { grid-template-columns: 64px 1fr; gap: 8px; }
  .capability-row p, .capability-row em { grid-column: 2; }
  .field-pair { grid-template-columns: 1fr; }
  .prose { padding: 48px 18px; }
  .not-found { padding: 0 18px; }
  .not-found-code { font-size: 64px; }
}
