/* ============================================================================
   Lead Agents Studio — Design System
   Investment-bank editorial: black-on-white, single cobalt accent.
   Ported from the aifashionartists house style.
   Load order: this file, then page-specific overrides if any.
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------- */
/* Instrument Serif (display) · Inter (body) · JetBrains Mono (labels)        */

:root {
  /* Surfaces */
  --paper:        #f7f7f5;   /* warm near-white page */
  --paper-cool:   #eeeef0;   /* recessed panels */
  --paper-pure:   #fdfdfc;   /* cards, raised surfaces */
  --paper-deep:   #e7e7e9;   /* skeletons / dividers fill */

  /* Ink */
  --ink:          #14141a;   /* near-black text */
  --ink-soft:     rgba(20, 20, 26, 0.70);
  --ink-muted:    rgba(20, 20, 26, 0.45);
  --ink-faint:    rgba(20, 20, 26, 0.28);
  --ink-ghost:    rgba(20, 20, 26, 0.06);

  /* Strokes */
  --stroke:       rgba(20, 20, 26, 0.12);
  --stroke-strong:rgba(20, 20, 26, 0.22);

  /* Single accent — used sparingly */
  --accent:       #1f2eaa;
  --accent-deep:  #131c75;
  --accent-wash:  rgba(31, 46, 170, 0.06);

  /* Type */
  --font-display: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Rhythm */
  --container:    1200px;
  --measure:      72ch;
  --radius:       4px;
  --radius-lg:    8px;
  --radius-xl:    14px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --dur:          0.2s;
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(31, 46, 170, 0.18); }

/* Editorial grain — fixed, multiply, very low opacity */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

/* ---- Typography ----------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.012em; }
.display      { font-size: clamp(2.6rem, 5vw + 1rem, 5rem); }
h1, .h1       { font-size: clamp(2.4rem, 4.5vw + 1rem, 4.25rem); }
h2, .h2       { font-size: clamp(1.9rem, 3vw + 1rem, 3.1rem); }
h3, .h3       { font-size: clamp(1.3rem, 1.2vw + 1rem, 1.75rem); letter-spacing: -0.006em; }
h4, .h4       { font-size: clamp(1.1rem, 0.6vw + 1rem, 1.3rem); letter-spacing: -0.004em; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 0.5vw + 1rem, 1.35rem); line-height: 1.5; color: var(--ink-soft); }
strong { font-weight: 600; color: var(--ink); }

/* Mono label / eyebrow */
.eyebrow, .label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow--accent { color: var(--accent); }
.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.accent { color: var(--accent); }
.serif  { font-family: var(--font-display); font-weight: 400; }

/* ---- Layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.measure   { max-width: var(--measure); }
.center    { text-align: center; }

section { position: relative; z-index: 2; padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.rule { border: 0; border-top: 1px solid var(--stroke); }
.rule--strong { border-top-color: var(--stroke-strong); }

.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.eyebrow-row::after { content: ""; flex: 1; height: 1px; background: var(--stroke); }

.grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
/* media sample rows: 2-up on phones, 3-up on desktop (never a single full-width block) */
.grid--samples { grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 860px) { .grid--samples { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* ---- Navigation ----------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--stroke);
  transition: transform 0.35s var(--ease), background 0.3s ease;
}
.nav--hidden { transform: translateY(-100%); }
.nav-brand {
  font-family: var(--font-display);
  font-size: 21px; letter-spacing: -0.01em; color: var(--ink);
  display: flex; align-items: baseline; gap: 7px;
}
.nav-brand .mark { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); transform: translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); transition: color var(--dur) ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); }
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--stroke); padding: 8px 28px 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: 0.25s var(--ease); }
  .nav-links a { width: 100%; padding: 14px 0; border-top: 1px solid var(--stroke); font-size: 13px; }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 26px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur) ease, color var(--dur) ease, border-color var(--dur) ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--stroke-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { height: 42px; padding: 0 18px; }
.btn-arrow::after { content: "→"; font-family: var(--font-sans); transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink { color: var(--accent); font-weight: 500; border-bottom: 1px solid var(--accent-wash); transition: border-color var(--dur) ease; }
.textlink:hover { border-bottom-color: var(--accent); }

/* ---- Cards ---------------------------------------------------------------- */
.card {
  background: var(--paper-pure);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.28s var(--ease), border-color var(--dur) ease, box-shadow 0.28s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); border-color: var(--stroke-strong); box-shadow: 0 20px 50px -24px rgba(20,20,26,0.25); }
.card__index { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--ink-faint); }
.card__title { margin: 14px 0 8px; }
.card p { font-size: 15px; }

/* ---- Hero ----------------------------------------------------------------- */
.hero { padding-top: clamp(120px, 16vh, 200px); padding-bottom: clamp(56px, 8vw, 112px); }
.hero h1 { max-width: 18ch; margin: 18px 0; }
.hero .lead { max-width: 46ch; margin-bottom: 34px; }
.proof-line { margin-top: 30px; font-size: 13px; color: var(--ink-muted); display: flex; align-items: center; gap: 10px; }
.proof-line::before { content: ""; width: 22px; height: 1px; background: var(--stroke-strong); }

/* ---- Two-path pricing module (signature component) ------------------------ */
.paths { display: grid; gap: 22px; }
@media (min-width: 880px) { .paths { grid-template-columns: 1fr 1fr; } }
.path {
  border: 1px solid var(--stroke); border-radius: var(--radius-xl);
  padding: 36px; background: var(--paper-pure);
  display: flex; flex-direction: column;
}
.path--feature { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.path--feature p, .path--feature .path__kicker { color: rgba(247,247,245,0.7); }
.path--feature .path__price { color: var(--paper); }
.path--feature .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.path--feature .btn-primary:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.path--feature .feature-list li::before { color: #9aa6ff; }
.path__kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.path__title { margin: 12px 0 6px; }
.path__price { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1; margin: 18px 0 4px; }
.path__price small { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-muted); }
.path__note { font-size: 13px; color: var(--ink-muted); margin-bottom: 22px; }
.path .btn { margin-top: auto; }

/* Feature lists */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.feature-list li { position: relative; padding-left: 26px; font-size: 15px; color: var(--ink-soft); }
.feature-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-family: var(--font-sans); }

/* Pricing tier row (inline) */
.tiers { display: grid; gap: 1px; background: var(--stroke); border: 1px solid var(--stroke); border-radius: var(--radius-lg); overflow: hidden; }
@media (min-width: 720px) { .tiers--3 { grid-template-columns: repeat(3, 1fr); } }
.tier { background: var(--paper-pure); padding: 26px; }
.tier__name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.tier__price { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; margin: 10px 0 4px; }
.tier__price small { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.04em; }
.tier__line { font-size: 13px; color: var(--ink-soft); margin-top: 8px; }

/* ---- Steps / process ------------------------------------------------------ */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--stroke); border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); }
@media (min-width: 860px) { .steps--row { grid-auto-flow: column; grid-auto-columns: 1fr; } }
.step { background: var(--paper); padding: 32px 26px; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--accent); }
.step h4 { margin: 16px 0 8px; }
.step p { font-size: 14px; }

/* ---- Stat / metric -------------------------------------------------------- */
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; }
.stat__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-top: 10px; }

/* ---- Gallery (graceful when empty) --------------------------------------- */
.gallery { columns: 2; column-gap: 16px; }
@media (min-width: 760px) { .gallery { columns: 3; } }
.gallery img { width: 100%; margin-bottom: 16px; border-radius: var(--radius-lg); border: 1px solid var(--stroke); }
.gallery:empty { display: none; }
.gallery-empty {
  border: 1px dashed var(--stroke-strong); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; color: var(--ink-muted);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
}

/* ---- Step-by-step demonstration ------------------------------------------- */
.demo-step { margin: 0; }
.demo-frame {
  position: relative; overflow: hidden;
  border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  background: var(--paper-cool);
}
.demo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-frame--wide { aspect-ratio: 1 / 1; }
.demo-frame--tall { aspect-ratio: 3 / 4; }
.demo-step figcaption {
  margin-top: 14px; font-size: 14px; line-height: 1.45; color: var(--ink-soft);
  display: flex; gap: 10px; align-items: baseline;
}
.demo-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent); flex: none; }
.demo-arrow { display: flex; align-items: center; justify-content: center; color: var(--ink-faint); font-size: 22px; }

/* ---- Site preview (browser frame, scroll-through on hover) ---------------- */
.site-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .site-grid--2 { grid-template-columns: 1fr 1fr; } }
.site-preview {
  border: 1px solid var(--stroke); border-radius: var(--radius-xl); overflow: hidden;
  background: var(--paper-pure); box-shadow: 0 30px 70px -42px rgba(20,20,26,0.42);
  display: flex; flex-direction: column;
}
.site-preview__bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--stroke); background: var(--paper-cool); }
.site-preview__dots { display: flex; gap: 6px; }
.site-preview__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--stroke-strong); }
.site-preview__url { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-muted); }
.site-preview__viewport { position: relative; height: 460px; overflow: hidden; background: var(--paper-cool); }
@media (max-width: 640px) { .site-preview__viewport { height: 360px; } }
.site-preview__shot { width: 100%; display: block; will-change: transform; animation: sl-site-scroll 26s ease-in-out infinite; }
@keyframes sl-site-scroll {
  0%, 7%   { transform: translateY(0); }
  50%, 57% { transform: translateY(-66%); }
  100%     { transform: translateY(0); }
}
.site-preview:hover .site-preview__shot { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .site-preview__shot { animation: none; } }
.site-preview__hint {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper); background: rgba(20,20,26,0.62); padding: 6px 10px; border-radius: 100px;
  backdrop-filter: blur(6px); transition: opacity var(--dur) ease; pointer-events: none;
}
.site-preview:hover .site-preview__hint { opacity: 0; }
.site-preview__cta {
  position: absolute; right: 14px; bottom: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--paper); background: var(--ink); padding: 9px 16px; border-radius: var(--radius);
  transition: background var(--dur) ease;
}
.site-preview__cta:hover { background: var(--accent); }
.site-preview__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 16px 18px; border-top: 1px solid var(--stroke); }
.site-preview__name { font-family: var(--font-display); font-size: 1.25rem; }
.site-preview__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
/* graceful state until the screenshot asset is added */
.site-preview__viewport.is-empty .site-preview__shot { display: none; }
.site-preview__viewport.is-empty::after {
  content: "Add a full-page screenshot to /assets/offers/maison/"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 32px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted);
}

/* ---- FAQ ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--stroke); }
.faq details { border-bottom: 1px solid var(--stroke); padding: 6px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--font-display); font-size: clamp(1.15rem, 1vw + 1rem, 1.5rem); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-sans); color: var(--accent); transition: transform var(--dur) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; max-width: 64ch; }

/* ---- CTA panel ------------------------------------------------------------ */
.cta-panel { background: var(--ink); color: var(--paper); border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-panel h2 { color: var(--paper); max-width: 20ch; margin: 0 auto 16px; }
.cta-panel p { color: rgba(247,247,245,0.72); max-width: 48ch; margin: 0 auto 30px; }
.cta-panel .btn-row { justify-content: center; }
.cta-panel .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-panel .btn-primary:hover { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.cta-panel .btn-ghost { color: var(--paper); border-color: rgba(247,247,245,0.3); }
.cta-panel .btn-ghost:hover { border-color: var(--paper); color: var(--paper); }

/* ---- Footer --------------------------------------------------------------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--stroke); padding: 64px 0 48px; }
.footer-grid { display: grid; gap: 32px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 26px; letter-spacing: -0.01em; }
.footer p { font-size: 14px; max-width: 38ch; margin-top: 12px; }
.footer h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-soft); padding: 5px 0; transition: color var(--dur) ease; }
.footer-col a:hover { color: var(--accent); }
.footer-base { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--stroke); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink-muted); }

/* ---- Scroll reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.06s; }
.reveal[data-delay="2"] { transition-delay: 0.12s; }
.reveal[data-delay="3"] { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Legal / long-form prose ---------------------------------------------- */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(100px, 14vh, 150px) 28px 96px; position: relative; z-index: 2; }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 10px; }
.legal .last-updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-muted); margin-bottom: 40px; }
.legal h2 { font-size: clamp(1.3rem, 1.4vw + 1rem, 1.7rem); margin: 44px 0 14px; }
.legal h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-bottom: 1rem; }
.legal ul, .legal ol { margin: 0 0 1.2rem 1.3rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--accent); border-bottom: 1px solid var(--accent-wash); }
.legal a:hover { border-bottom-color: var(--accent); }
.legal strong { color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.6rem; font-size: 0.95rem; }
.legal th, .legal td { text-align: left; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--stroke); }
.legal th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--paper-cool); }
.legal td { color: var(--ink-soft); }
.legal .highlight { background: var(--accent-wash); border-left: 3px solid var(--accent); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.legal .highlight p { margin: 0; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--stroke); }
.legal-nav a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); border: 0; }
.legal-nav a:hover { color: var(--accent); }
.legal-nav .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---- Utilities ------------------------------------------------------------ */
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:40px}
.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:40px}
.muted{color:var(--ink-muted)}.soft{color:var(--ink-soft)}
.maxw-sm{max-width:44ch}.maxw-md{max-width:60ch}
.flow > * + * { margin-top: 1.1em; }
