/* ENGINPILOT.COM — signal hues, per theme.
   EPDS ships one set of signal hues for both themes, which fails WCAG AA at the
   sizes this site uses them: 9–11px standalone mono text and figure labels.
   Dark needs them brightened against --surface-page (#05070A); light needs them
   darkened against #F6F7F9. Both sets match the blueprint-plate palette recorded
   in CLAUDE.md, so status text, screen figures and the print PDFs all agree.

   Loaded on every page immediately after the EPDS styles.css. */

[data-theme="dark"] {
  --status-operational: #3fcf7e;
  --status-warning:     #e0a326;
  --status-critical:    #ef5a4d;

  --physics-validated:  #3fcf7e;
  --physics-calculated: #6aa0ea;
  --physics-estimated:  #c9a227;
  --physics-violated:   #ef5a4d;
}

/* Light = the knowledge/document mode. Contrast on --surface-page (#F6F7F9):
   #146b3b 6.11 · #8a6206 5.07 · #b02419 5.94 · #1552b8 6.55 — all pass AA at
   11px. The shipped EPDS values land at 3.86–4.48 and must not be used here. */
[data-theme="light"] {
  --status-operational: #146b3b;
  --status-warning:     #8a6206;
  --status-critical:    #b02419;

  --physics-validated:  #146b3b;
  --physics-calculated: #1552b8;
  --physics-estimated:  #8a6206;
  --physics-violated:   #b02419;
}
