/* ==========================================================================
   DESIGN TOKENS & CSS VARIABLES
   VORTEX GROWTH - Modern Light Marketing Agency Design System
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --color-navy: #0A2A4E;
  --color-navy-dark: #051A33;
  --color-navy-light: #163B66;
  --color-navy-rgb: 10, 42, 78;

  --color-teal: #0FBFA0;
  --color-teal-hover: #0DA88D;
  --color-teal-dark: #0A8F78;
  --color-teal-light: #E6F9F5;
  --color-teal-tint: #F0FDF9;
  --color-teal-rgb: 15, 191, 160;

  --color-coral: #FF6B6B;
  --color-gold: #F59E0B;
  --color-gold-light: #FEF3C7;

  /* Neutrals & Surfaces (Clean Light Aesthetic) */
  --color-bg: #F8FAFC;
  --color-bg-alt: #F1F5F9;
  --color-surface: #FFFFFF;
  --color-surface-hover: #FCFDFD;
  --color-border: #E2E8F0;
  --color-border-subtle: rgba(10, 42, 78, 0.08);
  --color-border-hover: rgba(15, 191, 160, 0.35);

  /* Typography Colors */
  --color-text-headline: #0A2A4E;
  --color-text-body: #475569;
  --color-text-muted: #64748B;
  --color-text-subtle: #94A3B8;
  --color-text-white: #FFFFFF;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Weights */
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Shadows (Soft Layered Depth, No Harsh Glows) */
  --shadow-xs: 0 1px 2px rgba(10, 42, 78, 0.04);
  --shadow-sm: 0 2px 8px rgba(10, 42, 78, 0.04), 0 1px 2px rgba(10, 42, 78, 0.02);
  --shadow-md: 0 8px 24px -4px rgba(10, 42, 78, 0.06), 0 2px 6px -1px rgba(10, 42, 78, 0.02);
  --shadow-lg: 0 16px 36px -6px rgba(10, 42, 78, 0.08), 0 4px 12px -2px rgba(10, 42, 78, 0.03);
  --shadow-xl: 0 24px 48px -8px rgba(10, 42, 78, 0.12), 0 8px 20px -4px rgba(10, 42, 78, 0.04);
  --shadow-teal-sm: 0 4px 14px rgba(15, 191, 160, 0.25);
  --shadow-teal-md: 0 8px 25px rgba(15, 191, 160, 0.35);

  /* Border Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 450ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 840px;
  --header-height: 80px;
  --section-spacing: 110px;
  --section-spacing-sm: 70px;
}
