/* ==========================================================================
   01. DESIGN TOKENS
   Every value the rest of the stylesheets build on. Nothing here emits
   styles on its own, so this file must always load first.
   ========================================================================== */
:root {
  /* Color: Navy (primary text / depth) */
  --navy-900: #0a1930;
  --navy-800: #10274a;
  --navy-700: #14315c;
  --navy-600: #1d4270;

  /* Color: Mavakash Blue (brand / interactive) */
  --blue-600: #1e5fbf;
  --blue-500: #2f72d6;
  --blue-400: #4a85d6;
  --blue-100: #eaf1fd;
  --blue-50:  #f4f8fe;

  /* Color: Accent (from logo — warm orange/yellow) */
  --accent-500: #f5a623;
  --accent-600: #d9820f;
  --accent-100: #fef2df;

  /* Neutrals */
  --white: #ffffff;
  --bg-soft: #f7f9fc;
  --border: #e3e8f1;
  --border-strong: #cdd7e6;
  --text-body: #33425c;
  --text-muted: #5b6b85;
  --text-faint: #5f6d87;

  /* Feedback */
  --danger: #b3261e;

  /* Typography */
  --font-display: 'Outfit', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing (8px system) */
  --sp-1: 0.5rem;   /* 8px  */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-5: 3rem;     /* 48px */
  --sp-6: 4rem;     /* 64px */
  --sp-7: 6rem;     /* 96px */
  --sp-8: 8rem;     /* 128px */

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  /* Shadows (navy-tinted, soft) */
  --shadow-sm: 0 2px 8px rgba(10, 25, 48, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 25, 48, 0.10);
  --shadow-lg: 0 24px 64px rgba(10, 25, 48, 0.14);

  /* Layout */
  --container-max: 1240px;
  --nav-height: 76px;
  --announce-height: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 720ms;
}
