/* ============================================================
   START NOTE — encoded alternates (token overrides only)
   Flip a toggle → the whole document re-renders down that path.
   Winners fold into tokens.css at lock; losers get deleted.
   ============================================================ */

/* A/B №1 — the accent: live green (v2's pulse, default) vs brand
   amber (the launcher mark + v1 identity). Both are real extracted
   colors; the question is which one LEADS. */
:root[data-alt-accent='amber'] {
  --accent: var(--amber);
  --border-live: var(--border-w-live) solid var(--accent);
}

/* A/B №2 — the surface: v2 black console (default) vs the v1
   heritage light — amber scaffold, white cards, black ink.
   This toggle IS the v1-vs-v2 conflict, encoded. Channel colors
   remap to the v1 palette so state stays legible on light ground. */
:root[data-alt-surface='heritage'] {
  --bg:    var(--v1-amber);
  --panel: var(--v1-paper-warm);
  --card:  var(--v1-paper);
  --chip:  var(--v1-paper-warm);
  --line:  var(--v1-bar);
  --ink:   var(--v1-ink);
  --soft:  var(--v1-dim);
  --dim:   var(--v1-dim);
  --faint: var(--v1-faint);
  --ch-live:       var(--v1-spring);
  --ch-pause:      var(--v1-pause-deep);
  --ch-transcript: var(--v1-viridian);
  --ch-record:     var(--v1-rose);
  --accent:        var(--v1-spring);
  --border-live: var(--border-w-live) solid var(--accent);
}
