/* Atelier — marketing site (calm-paper tier).
   Tokens + type taken verbatim from the brand book (docs/brand.html) so the site
   is the same shop as the console: gesso paper, ONE cinnabar accent, Fraunces
   display (weight 560/400, optical sizing), Schibsted body, diffuse "light falls"
   shadow, the 4/7/10/14 radius family, hairline dividers. The fourteen laws
   (brand.md §10) govern every choice — above all Law 1 (one pigment, one place:
   cinnabar only on the primary action + links + a single rule) and Law 4 (light
   falls, nothing glows). */

:root {
  /* Light palette mirrors the docs (Fumadocs) tokens in docs-src/src/app/global.css
     so the marketing site and /docs read as one brighter warm-paper surface. */
  --paper:#FDFCFA; --card:#FFFFFF; --paper-2:#F4F1EC;
  --ink:#191714; --muted:#6B655B;
  --line:#E8E3DA; --line-strong:rgba(25,23,20,.16);
  --cinnabar:#B94430; --cinnabar-deep:#A83825;
  --on-accent:#FBF9F5;
  --mint:#0E8A5F; --coral:#C4432F; --amber:#B87400;
  --shadow: 0 1px 1px rgba(25,23,20,.04), 0 10px 28px -16px rgba(25,23,20,.28);
  --shadow-lift: 0 2px 3px rgba(25,23,20,.06), 0 16px 40px -18px rgba(25,23,20,.32);
  --r1:4px; --r2:7px; --r3:10px; --r4:14px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Schibsted Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 960px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:#191714; --card:#211E19; --paper-2:#26221C;
    --ink:#EAE7E2; --muted:#A29B91;
    --line:rgba(234,231,226,.13); --line-strong:rgba(234,231,226,.22);
    --cinnabar:#E0694E; --cinnabar-deep:#E0694E;
    --on-accent:#191714;
    --mint:#3FCF9B; --coral:#F0715C; --amber:#E0A23C;
    --shadow: 0 1px 2px rgba(0,0,0,.35), 0 12px 32px -16px rgba(0,0,0,.65);
    --shadow-lift: 0 2px 4px rgba(0,0,0,.4), 0 18px 46px -18px rgba(0,0,0,.72);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-optical-sizing: auto;
  line-height: 1.08;
  letter-spacing: -.01em;
  text-wrap: balance;
  margin: 0;
}
h3 { font-weight: 540; }
p { margin: 0; max-width: 66ch; }

a { color: var(--cinnabar); text-decoration: none; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--cinnabar-deep); }
img { max-width: 100%; height: auto; display: block; }
code { font-family: var(--mono); }
strong { font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 28px; }

/* one editorial accent device: a short cinnabar rule (the ONLY decorative cinnabar) */
.rule { display: inline-block; width: 26px; height: 2px; background: var(--cinnabar); border-radius: 2px; vertical-align: middle; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cinnabar); color: var(--on-accent);
  padding: 10px 16px; border-radius: 0 0 var(--r2) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--cinnabar); outline-offset: 2px; border-radius: 3px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 62px; }
/* Brand lockup: the master logo+wordmark lockup (theme-swapped light/dark) with
   a small-caps maker line "by AIncient Labs" set on the same line, to its right,
   separated by a hairline rule. */
.brand { display: inline-flex; flex-direction: row; align-items: center; gap: 13px; }
.brand-lockup { display: block; height: 30px; width: auto; }
.brand-lockup--dark { display: none; }
@media (prefers-color-scheme: dark) {
  .brand-lockup--light { display: none; }
  .brand-lockup--dark { display: block; }
}
.brand-name-sub {
  padding-left: 13px; border-left: 1px solid var(--line-strong);
  font-family: var(--sans); font-weight: 500; font-size: 11px;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); font-size: 15px; }
.nav a:hover { color: var(--cinnabar); }
.nav .nav-cta {
  color: var(--ink); font-size: 14px;
  border: 1px solid var(--line-strong);
  padding: 7px 14px; border-radius: var(--r2);
  background: var(--card); box-shadow: var(--shadow);
}
.nav .nav-cta:hover { border-color: var(--muted); color: var(--ink); }
@media (max-width: 560px) { .nav a:not(.nav-cta) { display: none; } }

/* ---------- hero ---------- */
.hero { padding: clamp(64px, 11vw, 108px) 0 clamp(48px, 7vw, 76px); border-bottom: 1px solid var(--line); }
.hero-inner { max-width: 760px; }
.hero-title { font-size: clamp(40px, 7.4vw, 68px); letter-spacing: -.02em; margin-bottom: 26px; }
.hero-lede {
  font-family: var(--serif); font-weight: 400; font-optical-sizing: auto;
  font-size: clamp(20px, 2.6vw, 27px); line-height: 1.38; color: var(--ink);
  max-width: 34ch; margin-bottom: 20px; text-wrap: pretty;
}
.hero-sub { color: var(--muted); font-size: 17px; max-width: 56ch; margin-bottom: 36px; }

/* command block — a quiet terminal, not a glowing box */
.cmd {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r3);
  padding: 14px 14px 14px 18px;
  box-shadow: var(--shadow);
  max-width: 700px;
  overflow: hidden;
}
.cmd--mt { margin-top: 34px; }
.cmd-prompt { color: var(--muted); font-family: var(--mono); user-select: none; }
.cmd code {
  flex: 1; min-width: 0;
  font-size: 14.5px; color: var(--ink); line-height: 1.45;
  /* Wrap at spaces instead of scrolling — no horizontal scrollbar. Fits on one
     line at the box's desktop width; wraps cleanly on narrow viewports. */
  white-space: normal; overflow-wrap: break-word; word-break: normal;
}
.cmd-copy {
  display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--muted); background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r1);
  padding: 6px 11px; cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.cmd-copy:hover { border-color: var(--muted); color: var(--ink); }
.cmd-copy.is-copied { color: var(--cinnabar); border-color: var(--cinnabar); }
.cmd-copy.is-copied svg { display: none; }

.cmd-note { margin-top: 15px; font-size: 14px; color: var(--muted); }
.cmd-note .dot { opacity: .5; margin: 0 8px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-actions--mt-sm { margin-top: 22px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 11px 22px; border-radius: var(--r2);
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }
/* the ONE cinnabar action (Law 7/8: one primary per view) */
.btn-primary { background: var(--cinnabar); color: var(--on-accent); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--cinnabar-deep); color: var(--on-accent); }
.btn-ghost { background: var(--card); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--shadow); }
.btn-ghost:hover { border-color: var(--muted); }

/* ---------- sections ---------- */
.section { padding: clamp(60px, 8vw, 84px) 0; border-bottom: 1px solid var(--line); }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-title { font-size: clamp(27px, 4.2vw, 38px); margin-bottom: 16px; }
.section-lede { font-size: 19px; color: var(--muted); max-width: 60ch; }

/* Demo — a single framed video, calm surround (Law 4: light falls, nothing glows). */
.demo-figure { margin: 0; }
.demo-video {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r4);
  box-shadow: var(--shadow-lift);
}
.demo-caption {
  margin-top: 16px; color: var(--muted);
  font-size: 15px; text-align: center; max-width: 60ch; margin-inline: auto;
}

/* feature cards — flat, hairline, mono tag instead of an icon chip */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r4);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .2s ease;
}
.card:hover { border-color: var(--line-strong); }
.card .tag {
  display: block;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.card h3 { font-size: 21px; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* install steps — Fraunces numeral (ink, not cinnabar), flat card */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 22px; align-items: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r4); padding: 26px 28px; box-shadow: var(--shadow);
}
/* let the flexible content column shrink below its content min-content, so the
   step card never forces horizontal scroll on narrow viewports (grid min-width:auto) */
.step > div { min-width: 0; }
.step-n {
  font-family: var(--serif); font-weight: 500; font-optical-sizing: auto;
  font-size: 40px; line-height: 1; color: var(--ink);
  opacity: .32;
}
.step h3 { font-size: 20px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step code {
  background: var(--paper-2); padding: 1px 6px; border-radius: var(--r1);
  font-size: .88em; color: var(--ink); border: 1px solid var(--line);
}
/* OS chooser — get Docker per platform. Hairline ghost pills (Law 1: no cinnabar
   here; the mark + label are ink, external-arrow is muted). */
.os-links {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.os-links a {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 500; font-size: 14px;
  color: var(--ink); background: var(--card);
  border: 1px solid var(--line-strong); border-radius: var(--r2);
  padding: 8px 14px; box-shadow: var(--shadow);
  transition: border-color .15s ease, color .15s ease;
}
.os-links a:hover { border-color: var(--muted); color: var(--ink); }
.os-links a svg { flex-shrink: 0; }
.os-links a .ext { color: var(--muted); margin-left: 1px; }

.cmd-inline { margin-top: 16px; max-width: 640px; }
.cmd-inline code { background: none; border: none; padding: 0 0 2px; }

/* install paths — three ways in, one appliance. Stacked hairline blocks; no
   cinnabar here (Law 1 in this section), mono tag echoes the feature cards. */
.install-paths { display: grid; gap: 14px; margin-top: 18px; }
.install-path {
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: var(--r3); padding: 18px 20px;
}
.install-path .tag {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.install-path h4 { font-size: 16.5px; margin-bottom: 5px; }
.install-path > p { color: var(--muted); font-size: 15px; }
.install-path .cmd-inline { margin-top: 12px; }
.install-path .os-links { margin-top: 12px; }

/* recommended path — the GUI app leads. Elevated white card + ink-toned tag so it
   reads as the default choice (Law 1: no cinnabar accent in this section). */
.install-path--primary {
  background: var(--card); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lift);
}
.install-path--primary h4 { font-size: 18px; }
.tag--rec { color: var(--ink); font-weight: 600; }
.os-links--lg a { padding: 11px 16px; font-size: 14.5px; }

/* the platforms that AREN'T yours. app.js promotes the detected OS in each
   os-links list and moves the others in here, so one system is offered and the
   rest stay one click away. Without JS this stays empty + hidden and every
   platform remains listed inline. */
.os-other { margin-top: 4px; }
.os-other > summary { padding: 10px 2px; }
.os-other .os-links { margin-top: 6px; }

/* the resolved version + builder-published checksum. The hash is 64 chars with
   no break opportunities, so it must be allowed to break anywhere or it pushes
   the card wider than the viewport on mobile. */
[data-dl-verify] { overflow-wrap: anywhere; }

/* a link app.js retargeted at a versioned installer file rather than a page —
   the external-navigation arrow would misdescribe it. */
.os-links a.is-direct .ext { display: none; }

/* terminal options, collapsed by default — a GUI-first visitor never meets `curl`
   unless they ask. Summary reads as a quiet toggle, not a wall of commands. */
.install-more { margin-top: 2px; }
.install-more > summary {
  cursor: pointer; list-style: none; user-select: none;
  font-family: var(--sans); font-size: 14.5px; color: var(--muted);
  padding: 12px 2px; display: flex; align-items: center; gap: 9px;
}
.install-more > summary::-webkit-details-marker { display: none; }
.install-more > summary span { color: var(--ink); font-weight: 600; }
.install-more > summary::before {
  content: ""; flex-shrink: 0; width: 7px; height: 7px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg); transition: transform .15s ease;
}
.install-more[open] > summary::before { transform: rotate(45deg); }
.install-more .install-paths { margin-top: 4px; }

/* mobile: stack the command block so the command keeps the full row width and
   wraps at spaces — otherwise the non-shrinking Copy button (plus the step's
   numeral gutter + nested card padding) squeezes the code into a tall, thin
   single-character column. Copy drops to its own line, right-aligned. */
@media (max-width: 560px) {
  .cmd { flex-wrap: wrap; row-gap: 12px; }
  .cmd-prompt { display: none; }          /* decorative ($), reclaim its width */
  /* `anywhere` (not `break-word`) so the long install URL's intrinsic width
     collapses — otherwise its min-content keeps the card wider than the phone
     viewport and the page scrolls sideways. */
  .cmd code { flex-basis: 100%; overflow-wrap: anywhere; }
  .cmd-copy { margin-left: auto; }
  /* reclaim horizontal space the install steps spend on the big numeral */
  .step { grid-template-columns: 34px 1fr; gap: 14px; padding: 22px 20px; }
  .step-n { font-size: 30px; }
  .install-path { padding: 16px; }
}

.fine { margin-top: 11px; font-size: 13.5px; color: var(--muted); }
/* Inline qualifier variant — cancels the block caption's top margin without an
   inline `style=` attribute (which the strict `style-src 'self'` CSP blocks). */
.fine--inline { margin: 0; }
.fine a { color: var(--cinnabar); text-decoration: underline; text-decoration-color: var(--line-strong); }
.fine a:hover { text-decoration-color: currentColor; }

/* license note — a calm hairline note, no tinted box (Law 1/2) */
.note {
  display: flex; align-items: baseline; gap: 12px;
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14.5px; line-height: 1.55;
}
.note .rule { position: relative; top: -3px; flex-shrink: 0; }
.note strong { color: var(--ink); }

/* commercial-support funnel — one calm card, the sole cinnabar the CTA (Law 1) */
.support-card {
  max-width: 720px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r4);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 42px);
}
.factorial-logo { display: block; height: 24px; width: auto; color: var(--ink); margin-bottom: 22px; }
.support-body { font-size: 17px; line-height: 1.6; color: var(--ink); }
.support-body strong { color: var(--ink); }
.support-card .btn { margin-top: 26px; }
.support-card .btn svg { margin-left: 2px; }
.support-ack {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14.5px; line-height: 1.55;
}

/* thesis — a single Fraunces pull-quote, one cinnabar rule above it */
.thesis { padding: clamp(72px, 10vw, 104px) 0; border-bottom: 1px solid var(--line); }
.thesis-inner { max-width: 720px; }
.thesis .rule { margin-bottom: 26px; width: 34px; }
.thesis-line { font-family: var(--serif); font-weight: 500; font-optical-sizing: auto; font-size: clamp(28px, 4.8vw, 44px); line-height: 1.14; letter-spacing: -.015em; color: var(--ink); }
.thesis-sub { margin-top: 18px; color: var(--muted); font-size: 16px; }

/* ---------- features page ---------- */
/* prompt-first capability cards: a mono "You ask" kicker, the spoken request in
   Fraunces (the visitor's own voice), then what Atelier does with it. No cinnabar
   on the cards — Law 1 keeps the pigment on the primary action + links + one rule. */
.cap-group { margin-top: clamp(42px, 6vw, 60px); }
.cap-group:first-of-type { margin-top: 0; }
.cap-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.cap-group-title { font-size: clamp(23px, 3.2vw, 29px); }
.cap-group-note { color: var(--muted); font-size: 15px; }

.caps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 680px) { .caps { grid-template-columns: 1fr; } }
.cap {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r4); padding: 26px 28px; box-shadow: var(--shadow);
  transition: border-color .2s ease;
}
.cap:hover { border-color: var(--line-strong); }
.cap-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 15px;
}
.cap-kicker svg { flex-shrink: 0; opacity: .8; }
.cap-say {
  font-family: var(--serif); font-weight: 400; font-optical-sizing: auto;
  font-size: 20px; line-height: 1.34; color: var(--ink);
  margin-bottom: 12px; max-width: none; text-wrap: pretty;
}
.cap-do { color: var(--muted); font-size: 15px; margin-bottom: 20px; max-width: none; }
.cap-more {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
}
.cap-more svg { transition: transform .15s ease; }
.cap-more:hover svg { transform: translateX(2px); }

/* assurances — the "a human approves" band: compact hairline rows, no card fills */
.assurances { display: grid; grid-template-columns: 1fr 1fr; column-gap: 44px; }
@media (max-width: 680px) { .assurances { grid-template-columns: 1fr; } }
.assurance { padding: 22px 0; border-top: 1px solid var(--line); }
.assurance h3 {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  letter-spacing: 0; line-height: 1.3; color: var(--ink); margin-bottom: 6px;
}
.assurance p { color: var(--muted); font-size: 15px; max-width: none; }
.assurance a { text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.assurance a:hover { text-decoration-color: currentColor; }

/* closing — "what you're not signing up for": a calm hairline-tick list */
.closing { border-bottom: none; }
.negs { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; max-width: 60ch; }
.negs li { position: relative; padding-left: 26px; color: var(--muted); font-size: 16.5px; }
.negs li::before {
  content: ''; position: absolute; left: 0; top: .66em;
  width: 12px; height: 2px; background: var(--line-strong); border-radius: 2px;
}

/* homepage "see everything" link, in the positioning grid's footer */
.section-more { margin-top: 32px; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 16px; }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(2px); }

/* ---------- footer ---------- */
.site-footer { padding: 54px 0 42px; }
.footer-inner { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; align-items: flex-start; }
.footer-tag { margin-top: 13px; color: var(--muted); font-size: 14.5px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--ink); font-size: 15px; }
.footer-links a:hover { color: var(--cinnabar); }
.footer-legal {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}

/* ---------- legal pages (imprint, privacy) ---------- */
/* Long-form editorial prose for the legal notices. One column, generous
   measure, hairline dividers between sections — same calm-paper system, no new
   pigment (Law 1). */
.legal { padding: 68px 0 40px; }
.legal-inner { max-width: 720px; }
.legal h1 { font-size: clamp(30px, 5vw, 44px); margin-bottom: 14px; }
.legal .legal-lede { color: var(--muted); font-size: 18px; margin-bottom: 8px; }
.legal .legal-updated { color: var(--muted); font-size: 13px; font-family: var(--mono); }
.legal section { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.legal h2 { font-size: 23px; margin-bottom: 16px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p { color: var(--ink); margin-bottom: 14px; }
.legal p.muted { color: var(--muted); font-size: 15px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; color: var(--ink); }
.legal li { margin-bottom: 8px; max-width: 62ch; }
.legal address { font-style: normal; line-height: 1.7; }
.legal a { text-decoration: underline; }

/* A "fill this in" marker for the placeholder legal fields — visible until the
   real details are entered, so nothing incomplete ships silently. Removable
   once every [ ] is replaced. */
.legal .fillme {
  display: inline-block; background: color-mix(in srgb, var(--amber) 16%, transparent);
  color: var(--ink); padding: 1px 6px; border-radius: var(--r1);
  font-family: var(--mono); font-size: .88em;
}
.legal .legal-callout {
  margin: 28px 0; padding: 16px 18px; border: 1px solid var(--line-strong);
  border-radius: var(--r3); background: var(--paper-2); font-size: 15px; color: var(--muted);
}
