/*
 * Bright Minds — canonical brand design tokens (SINGLE SOURCE OF TRUTH).
 * ---------------------------------------------------------------------------
 * Change a brand value HERE and nowhere else. Consumed by:
 *   • the static marketing site (root *.html + assets/site.css)
 *   • the archived manuals (archive/thebook, archive/portal-manual-web)
 *   • the future bml-portal app (imported via @brightminds/brand — see brand/README.md)
 *
 * Plain CSS custom properties → usable with ZERO build (static HTML via <link>),
 * and by Tailwind (see brand/tailwind-preset.js). Both a hex value and an
 * "R G B" triple are provided per color: the triple powers Tailwind's
 * `rgb(var(--x-rgb) / <alpha-value>)` pattern so opacity modifiers keep working.
 */
:root {
  /* ── Brand · teal ───────────────────────────────────────────── */
  --bml-teal: #0E7490;            --bml-teal-rgb: 14 116 144;
  --bml-teal-dark: #155E75;       --bml-teal-dark-rgb: 21 94 117;
  --bml-teal-light: #CFFAFE;      --bml-teal-light-rgb: 207 250 254;

  /* ── Brand · amber ──────────────────────────────────────────── */
  --bml-amber: #D97706;           --bml-amber-rgb: 217 119 6;
  --bml-amber-light: #FEF3C7;     --bml-amber-light-rgb: 254 243 199;

  /* ── Leslie Nichols / college accent ────────────────────────── */
  --ln-ink: #0F172A;              --ln-ink-rgb: 15 23 42;
  --ln-accent: #3730A3;           --ln-accent-rgb: 55 48 163;
  --ln-accent-light: #E0E7FF;     --ln-accent-light-rgb: 224 231 255;

  /* ── Typography ─────────────────────────────────────────────── */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}

/*
 * Per-pack COURSE accent (biology green, chemistry blue, …) is intentionally
 * NOT a global brand token — each course page sets its own on :root:
 *   --course, --course-dark, --course-light
 * The tokens above are the tenant-agnostic Bright Minds brand shared everywhere.
 */
