/* NOW (ServiceNow, Inc.) Equity Research Dashboard, per-dashboard theme (color/font tokens).
   Loaded AFTER /assets/css/01..07. Edit NOW's palette and typeface here only.
   Brand accent: "ServiceNow green." The iconic bright spring-green (#62D84E) is too
   light for white button text, so --accent is a deeper ServiceNow green (#2E9E57)
   carrying a near-black --on-accent for legible button/pill text (the light-accent
   pattern, like GOOGL/NVDA/AMZN); --accent-bright keeps the iconic #62D84E for
   highlights. --teal (#1B7A9E) is the secondary brand mark, used as chart-secondary
   so the workflow families read distinctly against the green primary. */
:root{
  color-scheme:light;
  --bg:#F6F3E9; --panel:#FFFFFF; --ink:#2E3018; --muted:#5A5A50; --line:#E4DFCF; --chip:#EFEBDC;
  --accent:#2E9E57; --on-accent:#15171a; --accent-soft:#DCF0E2; --accent-deep:#1C7A41; --accent-bright:#62D84E;
  --green:#1f6e3a;  --green-soft:#e3f1e8;
  --red:#a82323;    --red-soft:#fae3e3;
  --amber:#a86b00;  --amber-soft:#fbeed3;
  --blue:#1B7A9E;   --teal:#1B7A9E;
  --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 = ServiceNow green; secondary = ServiceNow teal (#1B7A9E)
     so the platform / workflow families read distinctly. Single source of colour
     truth: editing a token re-colours the matching series. */
  --chart-primary:#2E9E57;
  --chart-secondary:#1B7A9E;
  --chart-warm:#a86b00;
  --chart-cool:#2c7873;
  --chart-positive:#1f6e3a;
  --chart-negative:#a82323;
  --chart-neutral:#5b6470;
  --chart-fill-alpha:0.12;
}
/* Dark-mode accents: lift to the iconic bright ServiceNow green against warm-charcoal
   panels; near-black button text passes contrast via the shared --on-accent. */
body.dark{
  --bg:#16130E; --panel:#211C15; --ink:#F2EFE3; --muted:#A8A192; --line:#322B20; --chip:#2A241B;
  --accent:#3FD06E;
  --accent-soft:#0c2418;
  --accent-deep:#2E9E57;
  --accent-bright:#62D84E;
}
