/* ─── DESIGN TOKENS ──────────────────────────────────────────
   Extends the palette already validated on the FYF homepage
   (marketing blue / deep navy / teal accent) into a full token
   system so every page pulls from one source of truth. */
:root {
  /* Brand colors */
  --navy-950: #0b1530;
  --navy-900: #0f1f5c;
  --blue-900: #172d6e;
  --blue: #1E3A8A;
  --indigo: #4F46E5;
  --teal: #14B8A6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;

  /* Neutrals */
  --bg: #F8FAFC;
  --surface: #ffffff;
  --text: #111827;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;

  /* Semantic */
  --success: #16a34a;
  --warning: #ca8a04;
  --danger: #dc2626;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.14);

  /* Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1180px;
  --container-narrow: 720px;
  --header-height: 72px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.18s;
  --duration: 0.32s;

  /* Font */
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
