/* ADAM brand layer — the product's brand identity, layered on @telicx/design-core.
 * Canonical source: products/adam/brand/adam.css → synced to public/styles/adam.css.
 *
 * The dashboard wears the ADAM brand board palette: Deep Navy / Electric Blue / Signal
 * Gold. --accent = Electric Blue (#2563FF), the ground (--ink, the FAB/avatar tile) =
 * Deep Navy, highlight (--gold) = Signal Gold. The legacy TelicX cobalt vars remain
 * defined for any straggler reference. (The ADAM mark glyph in /assets/adam is still a
 * placeholder pending the real artwork — swap those SVGs when it lands.) See
 * design/brand/adam/brand.md. */
:root {
  /* ADAM brand board palette */
  --adam-navy: #0b1d3a;
  --adam-blue: #2563ff;
  --adam-blue-2: #3b73ff;
  --adam-gold: #ffc107;
  --adam-soft: #eef2f8;

  /* legacy TelicX cobalt (kept defined; no longer the accent) */
  --cobalt: #0a33cc;
  --cobalt-600: #1740d6;
  --cobalt-300: #5b8cff;
  --gold-700: #c9971a;

  /* live brand tokens → ADAM board */
  --ink: var(--adam-navy);
  --gold: var(--adam-gold);
  --accent: var(--adam-blue);
  --accent-tint: rgba(37, 99, 255, 0.08);
  --accent-tint-2: rgba(37, 99, 255, 0.14);
}

:root[data-theme='dark'] {
  --accent: #5b8cff; /* brightened electric blue for contrast on dark */
  --accent-tint: rgba(91, 140, 255, 0.16);
  --accent-tint-2: rgba(91, 140, 255, 0.24);
}
