/* ===========================================
   OPTIMA OVERNIGHT — Design Tokens
   =========================================== */

:root {
  /* Colors — Primary Blue Scale */
  --color-navy: #126FAD;       /* brand blue / blue-700 */
  --color-navy-mid: #0e5190;   /* blue-800 */
  --color-navy-dark: #0a3d6b;  /* deep navy / blue-900 */
  --color-navy-light: #1a85cc; /* blue-600 */
  --color-blue-200: #b8d9f2;
  --color-blue-100: #daedf9;
  --color-blue-50:  #f0f8fe;

  /* Colors — Accent */
  --color-teal: #126FAD;
  --color-teal-hover: #0e5190;
  --color-teal-light: #f0f8fe;

  /* Colors — Amber (CTA) */
  --color-amber: #f0a500;
  --color-amber-hover: #f5ba30;

  /* Colors — Secondary */
  --color-green: #94BF36;
  --color-green-hover: #7DA62E;

  /* Colors — CTA */
  --color-cta-orange: #f0a500;
  --color-cta-orange-hover: #f5ba30;
  --color-star-gold: #f0a500;

  /* Colors — Feedback */
  --color-error: #DC2626;
  --color-error-light: rgba(220, 38, 38, 0.1);

  /* Colors — Neutral */
  --color-white: #FFFFFF;
  --color-warm-white: #fafaf8;
  --color-warm-100: #f4f3ef;
  --color-light-gray: #e8edf2;
  --color-border: #e2e8f0;

  /* Colors — Text */
  --color-text-dark: #1a2332;
  --color-text-medium: #4a5568;
  --color-text-light: #718096;
  --color-text-white: #FFFFFF;
  --color-text-on-navy: rgba(255, 255, 255, 0.85);

  /* Typography */
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-heading: 'DM Serif Display', Georgia, serif;

  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-md: 1.125rem;   /* 18px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 2rem;      /* 32px */
  --font-size-3xl: 2.25rem;   /* 36px */
  --font-size-4xl: 2.5rem;    /* 40px */
  --font-size-5xl: 3rem;      /* 48px */
  --font-size-6xl: 4rem;      /* 64px */
  --font-size-stat: 3.5rem;   /* 56px */

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.1;
  --line-height-snug: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 5rem;     /* 80px */
  --space-5xl: 6rem;     /* 96px */
  --space-6xl: 7.5rem;   /* 120px */

  /* Layout */
  --max-width: 1200px;
  --grid-columns: 12;
  --grid-gap: 2rem;
  --container-padding: 1.5rem;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(33, 39, 44, 0.06);
  --shadow-md: 0 4px 12px rgba(33, 39, 44, 0.08);
  --shadow-lg: 0 8px 24px rgba(33, 39, 44, 0.12);
  --shadow-xl: 0 16px 48px rgba(33, 39, 44, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}
