:root {
  /* Brand Color Palette */
  --color-primary-dark: #060b18;
  --color-navy-dark: #0a1128;
  --color-navy-card: #0f1a36;
  --color-navy-card-hover: #152347;
  --color-navy-light: #1b284f;
  
  --color-brand-pink: #ff0055;
  --color-brand-pink-hover: #e0004c;
  --color-brand-pink-light: rgba(255, 0, 85, 0.12);
  --color-brand-pink-glow: rgba(255, 0, 85, 0.35);

  --color-brand-orange: #f37021;
  --color-brand-green: #8dc63f;
  --color-brand-purple: #2e3192;
  --color-brand-cyan: #00aeef;
  --color-brand-red: #ed1c24;

  /* Neutrals */
  --color-bg-white: #ffffff;
  --color-bg-light: #f8f9fc;
  --color-bg-subtle: #f1f4f9;
  --color-border-light: #e2e8f0;
  --color-border-subtle: #cbd5e1;
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --color-border-dark-hover: rgba(255, 255, 255, 0.22);

  /* Typography Colors */
  --text-dark-primary: #ffffff;
  --text-dark-secondary: #cbd5e1;
  --text-dark-muted: #94a3b8;

  --text-light-primary: #0a1128;
  --text-light-secondary: #334155;
  --text-light-muted: #64748b;

  /* Typography Families */
  --font-display: 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.18);
  --shadow-pink: 0 8px 25px rgba(255, 0, 85, 0.35);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --container-max-width: 1240px;
  --header-height: 80px;
}
