/* =========================================================
   DECISION SPEED CONSULTING — Design Tokens
   Palette: Deep Navy (primary), Teal (accent), Orange (highlight)
   ========================================================= */

:root,
[data-theme='light'] {
  /* ── Type Scale ────────────────────────────────────────── */
  --text-xs:   0.8125rem;
  --text-sm:   0.9375rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.875rem;
  --text-2xl:  3rem;
  --text-3xl:  4rem;
  --text-hero: 5.5rem;

  /* ── Spacing (4px base) ───────────────────────────────── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ── Surfaces ─────────────────────────────────────────── */
  --color-bg:             #ffffff;
  --color-surface:        #f8f8f6;
  --color-surface-2:      #f0f1ef;
  --color-surface-offset: #e8e9e6;
  --color-divider:        #e2e3df;
  --color-border:         #cdd1ce;

  /* ── Text ─────────────────────────────────────────────── */
  --color-text:         #101820;
  --color-text-muted:   #56616b;
  --color-text-faint:   #879199;
  --color-text-inverse: #ffffff;

  /* ── Brand: Deep Navy ─────────────────────────────────── */
  --color-navy:           #0d2b4e;
  --color-navy-deep:      #071828;
  --color-navy-mid:       #1a3f6b;
  --color-navy-light:     #2a527e;

  /* ── Brand: Teal (primary accent) ────────────────────── */
  --color-primary:           #1a7f8e;
  --color-primary-hover:     #14616e;
  --color-primary-active:    #0e4550;
  --color-primary-highlight: #d0e8ec;

  /* ── Brand: Orange (secondary, sparingly) ────────────── */
  --color-orange:           #e87b1e;
  --color-orange-hover:     #c9660e;
  --color-orange-active:    #a34e07;
  --color-orange-highlight: #fdecd8;

  /* ── Radius ────────────────────────────────────────────── */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.5rem;
  --radius-xl:   0.5rem;
  --radius-2xl:  0.5rem;
  --radius-full: 9999px;

  /* ── Shadows ───────────────────────────────────────────── */
  --shadow-xs: 0 1px 2px rgba(13, 27, 46, 0.04);
  --shadow-sm: 0 2px 8px rgba(13, 27, 46, 0.06);
  --shadow-md: 0 4px 16px rgba(13, 27, 46, 0.09);
  --shadow-lg: 0 12px 40px rgba(13, 27, 46, 0.12);
  --shadow-xl: 0 24px 64px rgba(13, 27, 46, 0.14);

  /* ── Transitions ───────────────────────────────────────── */
  --ease-out:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:           cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   120ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:   350ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Content widths ────────────────────────────────────── */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
  --content-full:    100%;

  /* ── Fonts ─────────────────────────────────────────────── */
  --font-display: 'Bricolage Grotesque', 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', 'Consolas', monospace;
}

/* Dark mode intentionally disabled — light only */

@media (max-width: 768px) {
  :root,
  [data-theme='light'] {
    --text-xl: 1.625rem;
    --text-2xl: 2.25rem;
    --text-3xl: 2.75rem;
    --text-hero: 2.75rem;
  }
}
