/* v8-sections shared tokens — lifted from v7-the-record (source of truth: v7 index.html :root) */
:root{
  --white:#ffffff;
  --paper:#faf9f7;
  --teal:#1d5261;
  --sage:#41a488;      /* fails body-text contrast (3.05:1) — accents/large type only, never body copy */
  --hair:#e9e7e4;
  --dark:#10181c;
  --dark-warm:#f6f4ef;
  --dark-soft:#d5dddd;
  --dark-hair:#2b383e;
  --ink:#1c1f21;
  --ink-soft:#5b6368;
  --ink-faint:#8b9296;
  --radius:6px;        /* rounded-rect only — never fully-round pills */
  --edge:clamp(22px,6vw,80px);
  --serif:Charter,"Bitstream Charter",Bitter,Cambria,Georgia,serif;
  --sans:Figtree,system-ui,sans-serif;
  --mono:ui-monospace,SFMono-Regular,"SF Mono",Menlo,monospace;
  --hl:rgba(65,164,136,.22);
  --wash:rgba(187,247,208,.4);
  --shadow-sm:0 1px 2px 0 rgba(16,24,28,.06); /* product-replica UI only, never decorative cards */
}
*{box-sizing:border-box;}
body{
  margin:0;background:var(--white);color:var(--ink);
  font-family:var(--sans);font-size:17px;line-height:1.6;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;letter-spacing:-.02em;margin:0;}
p{margin:0;}
a{color:inherit;}
ul{margin:0;padding:0;list-style:none;}
:focus-visible{outline:2px solid var(--teal);outline-offset:3px;border-radius:2px;}
