:root {
  /* Colors */
  --ocean-blue: #0A5C91;
  --deep-navy: #061E2D;
  --turquoise: #27C6C6;
  --sky-blue: #27C6C6;
  --fresh-green: #43C463;
  --forest-green: #1D5D2D;
  --light-sand: #F4F1E8;
  --pure-white: #FFFFFF;
  --dark-charcoal: #1A1A2E;
  --text-primary: #0D1B2A;
  --text-secondary: #4A6079;
  --text-muted: #8FA3B1;
  --border-color: rgba(10, 92, 145, 0.12);
  --card-bg: rgba(255, 255, 255, 0.85);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0A5C91 0%, #43C463 100%);
  --gradient-dark: linear-gradient(135deg, #061E2D 0%, #0A5C91 100%);
  --gradient-hero: linear-gradient(180deg, rgba(6, 30, 45,0.7) 0%, rgba(10, 92, 145,0.4) 60%, rgba(67, 196, 99,0.3) 100%);
  --gradient-card: linear-gradient(135deg, rgba(39, 198, 198,0.08) 0%, rgba(67, 196, 99,0.08) 100%);
  --gradient-text: linear-gradient(135deg, #0A5C91, #43C463);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 92, 145,0.08);
  --shadow-md: 0 8px 32px rgba(10, 92, 145,0.12);
  --shadow-lg: 0 20px 60px rgba(10, 92, 145,0.16);
  --shadow-xl: 0 32px 80px rgba(6, 30, 45,0.2);
  --shadow-card: 0 4px 24px rgba(10, 92, 145,0.1), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 16px 48px rgba(10, 92, 145,0.2), 0 4px 12px rgba(0,0,0,0.08);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  /* Spacing (8pt system) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-16: 128px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1200px;
  --max-width-text: 700px;
  --header-height: 72px;
}
