/* PLTR (Palantir Technologies) Equity Research Dashboard, per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit PLTR's palette and typeface here only.
   Brand accent: a "Palantir petrol-cyan", the technical, intelligence-console teal that reads
   distinctly against the library's blues (CRWV royal-blue, AI/CRDO). It is a deep, dark cyan, so it
   takes WHITE button/pill text in BOTH modes (--on-accent pinned to #fff); --accent stays dark enough
   to clear 4.5:1 white-on-cyan (light #0E6E85 ~5.9:1, dark #0E7C99 ~4.8:1). --accent-bright is a
   brighter cyan used only as TEXT on the dark hero/header. --amber (#B8761F) is the chart secondary so
   the US-Commercial / US-Government segment series read distinctly against the cyan primary. */
:root{
  color-scheme:light;
  --bg:#F6F3E9; --panel:#FFFFFF; --ink:#2E3018; --muted:#5A5A50; --line:#E4DFCF; --chip:#EFEBDC;
  --accent:#0E6E85; --on-accent:#ffffff; --accent-soft:#DBEDF2; --accent-deep:#0A4F61; --accent-bright:#1593B0;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --blue:#2C6FB6;   --teal:#0E6E85;
  --font-serif:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;
  --font-sans:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  /* Chart palette, primary = Palantir petrol-cyan; secondary = a warm amber (#B8761F) so the
     commercial vs government segment mixes read distinctly. Single source of colour truth. */
  --chart-primary:#0E6E85;
  --chart-secondary:#B8761F;
  --chart-warm:#a86b00;
  --chart-cool:#2C6FB6;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accents: a marginally brighter cyan to pop on warm-charcoal panels, kept dark enough
   that the pinned white --on-accent still clears 4.5:1 on buttons/pills. */
body.dark{
  --bg:#16130E; --panel:#211C15; --ink:#F2EFE3; --muted:#A8A192; --line:#322B20; --chip:#2A241B;
  --accent:#0E7C99;
  --on-accent:#ffffff;
  --accent-soft:#0B2D37;
  --accent-deep:#0E6E85;
  --accent-bright:#46C2DE;
}
