/* Organeuron web tokens — the ONE place the palette and reset live.
   v3 pasted the reset verbatim into 4 of 5 files and spelled hex
   literals inline (#6b7280 ×28). Pages link this first, then their own
   styles. No build step (ratified): plain CSS custom properties. */
*{box-sizing:border-box}
:root{
  --ink:#1d2129;          /* primary text */
  --dim:#6b7280;          /* secondary text */
  --accent:#1d4ed8;       /* links, headings, hero */
  --accent-btn:#2563eb;   /* primary action buttons */
  --bg:#f7f8fa;           /* page ground */
  --panel:#fff;           /* cards, navbar */
  --line:#e3e6ea;         /* borders */
  --line-soft:#eef0f3;    /* hairlines */
  --code-bg:#f1f3f7;
  --warn-bg:#fff8e1; --warn-line:#e6c956; --warn-ink:#7a5d00;
}
body{font-family:system-ui,sans-serif;margin:0;background:var(--bg);color:var(--ink)}
a{color:var(--accent)}
