/* HAXOR — Signal / Instrument (warm build)
   Direction: precision-instrument spine (C) fused with quiet-luxury material (B).
   Drop-in token layer for v3. Replaces the legacy #00D4AA turquoise system.
   Light = warm bone ground · Dark = cold carbon ground. */

:root {
  /* ---- core palette ---- */
  --carbon:      #0C0D0F;   /* cold near-black — instrument ground */
  --bone:        #ECEAE3;   /* warm paper — borrowed from Quiet Luxury */
  --signal:      #E85D34;   /* burnt signal accent (was neon teal) */
  --signal-deep: #D24E27;   /* signal on light grounds */
  --emerald:     #1C5245;   /* secondary / positive semantic */
  --pewter:      #8A8A82;   /* material warm-steel neutral */
  --graphite:    #22242A;   /* panels / grid lines */

  /* ---- semantic tokens: LIGHT (warm bone) ---- */
  --bg:        var(--bone);
  --panel:     #F4F2EB;
  --ink:       #16171A;
  --muted:     #6A6B64;
  --faint:     #97968D;
  --line:      #DAD7CC;
  --accent:    var(--signal-deep);
  --positive:  var(--emerald);

  /* ---- type ---- */
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif:"DM Serif Display", "Iowan Old Style", Palatino, Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:      var(--carbon);
    --panel:   #131519;
    --ink:     var(--bone);
    --muted:   #8E8E86;
    --faint:   #5C5E62;
    --line:    var(--graphite);
    --accent:  var(--signal);
    --positive:#2E7A64;
  }
}

:root[data-theme="light"] {
  --bg: var(--bone); --panel:#F4F2EB; --ink:#16171A; --muted:#6A6B64;
  --faint:#97968D; --line:#DAD7CC; --accent:var(--signal-deep); --positive:var(--emerald);
}
:root[data-theme="dark"] {
  --bg: var(--carbon); --panel:#131519; --ink:var(--bone); --muted:#8E8E86;
  --faint:#5C5E62; --line:var(--graphite); --accent:var(--signal); --positive:#2E7A64;
}
