/* ============================================================================
   justgeo.co -- design tokens
   CSS custom properties only. No selectors except :root. Layout/components
   live in site.css and consume these.
   ============================================================================ */

:root {
  /* ---------- color: page surfaces (dark+stark) ------------------------ */
  --page-bg:    #0a0a0a;
  --page-fg:    #e8e8e8;
  --page-fg-2:  #9a9a9a;
  --page-fg-3:  #555;
  --rule:        #1c1c1c;
  --rule-strong: #2a2a2a;

  /* ---------- color: brand accent ------------------------------------- */
  --ink-accent: #15a79f;

  /* ---------- color: semantic (dataset confidence dots) --------------- */
  --ok:   #10b981;
  --warn: #f59e0b;
  --err:  #ef4444;

  /* ---------- type families ------------------------------------------- */
  /* --font-sans / --font-mono live in fonts.css now (the single font source,
     loaded before this file). change the typeface there, not here. */

  /* ---------- layout --------------------------------------------------- */
  --measure: 68ch;
}
