/*
 * PROVENANCE
 *   source repo:   /Users/ethanabot/Downloads/Projects -of-claude/Projects/fluidUI  (fluidUI, MIT)
 *   source path:   packages/ui/src/styles/tokens.css
 *   source commit: 4549c7f   (read via `git show 4549c7f:<path>` — the fluidUI repo
 *                             is READ-ONLY and was never written to)
 *   vendor date:   2026-07-29
 *   ruling:        T10 §1 — vendor the CSS, never the package; no npm in v0.1.
 *                  PIN, DO NOT FOLLOW: fluidUI is still developing, and
 *                  live-tracking it would import someone else's in-flight state
 *                  into our fixture. Re-pin deliberately, never automatically.
 *   edits:         ONE, the only edit T10 §1 permits: the donor's shadow-root
 *                  selector is retargeted to :root, because rig is the whole page
 *                  and not a mounted overlay. No other byte differs from the pin.
 *   read-only donor — never edited from here. Overrides live in ../styles.css.
 *   The information system itself: teal = yours-at-rest, amber = intelligence-at-work,
 *   red = honesty only (taint, refusal, real failure). Nothing else may be red.
 */
/*
 * Tokens ported verbatim from not.rest DESIGN.md (owner-directed 2026-07-20)
 * and design/the-surface.html. One deliberate change, per the plan: the dark
 * void becomes a translucent film so the live page reads through the glass.
 * Everything else — the teal/amber information system, the mono type scale,
 * line-height 1.6 — is unchanged.
 */
:root {
  --void: #0a0a0a;
  --void-2: #0e0e0d;
  --ink: #e8e6e1;
  --dim: #8a877f;
  --faint: #4a4844;

  --estate: #14b8a6; /* teal — YOURS: at rest, settled, receipts */
  --estate-dim: #0e6f66;
  --mind: #f59e0b; /* amber — INTELLIGENCE AT WORK */
  --mind-dim: #8a5e0e;
  --flag: #ef4444; /* honesty only: taint, refusal, failure */

  --edge: #1c1b19;
  --edge-2: #262523;
  --glow: rgba(20, 184, 166, 0.1);
  --mind-glow: rgba(245, 158, 11, 0.1);

  /* glass — the one swap from DESIGN.md's single-theme dark void */
  --glass-void: color-mix(in srgb, var(--void) 55%, transparent);
  --glass-blur: 12px;
  --glass-saturate: 1.1;
  --glass-edge: color-mix(in srgb, var(--ink) 14%, transparent);
  --glass-radius: 12px;

  /* type — mono everywhere, no webfont fetches (CSP-clean fallback chain) */
  --font: 'Space Mono', 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --t-stage: 22px;
  --t-title: 17px;
  --t-body: 15px;
  --t-panel: 13px;
  --t-label: 11px;
  --lh: 1.6;
  --measure: 68ch;
  --sp: clamp(14px, 2.2vw, 22px);
}
