/**
 * Design Tokens
 * Centralized design system variables for consistency across the SafetyCentral marketing site
 */

:root {
  /* ===== Color Palette ===== */
  /* Primary Navy */
  --color-navy-light: #96a0b1;
  --color-navy: #0c2852;
  --color-navy-dark: #081c3b;
  --color-navy-darker: #051229;
  
  /* Accent Colors */
  --color-primary: #3ac28d;
  --color-primary-dark: #2da876;
  --color-orange: #3ac28d;
  --color-orange-dark: #2da876;
  --color-cream: #f0faf6;
  --color-white: #ffffff;
  
  /* Neutral Grays */
  --color-slate: #7b8aa1;
  --color-slate-dark: #5c6d87;
  
  /* Status Colors */
  --color-green: #3ac28d;
  --color-green-light: #5dd9a7;
  --color-yellow: #ffc659;
  
  /* Enhanced Text Colors for WCAG AA compliance */
  --text-primary: #F2F6FA;        /* Near-white for headlines */
  --text-secondary: #C6D3E0;      /* Lighter for body text on dark */
  --text-tertiary: rgba(255, 245, 233, 0.8);
  --text-muted: rgba(255, 245, 233, 0.6);
  
  /* ===== Typography Scale ===== */
  /* Font Families */
  --font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Font Sizes */
  --font-size-h1: clamp(3rem, 5vw, 3.5rem);      /* 48-56px */
  --font-size-h2: clamp(2.25rem, 4vw, 2.5rem);   /* 36-40px */
  --font-size-h3: clamp(1.0625rem, 2vw, 1.125rem); /* 17-18px */
  --font-size-body: 0.9375rem;                    /* 15px */
  --font-size-body-sm: 0.875rem;                  /* 14px */
  --font-size-eyebrow: 0.75rem;                   /* 12px */
  --font-size-eyebrow-alt: 0.8125rem;             /* 13px */
  
  /* Font Weights */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Line Heights */
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  
  /* ===== Spacing Rhythm ===== */
  --space-xs: 0.5rem;    /* 8px */
  --space-sm: 0.75rem;   /* 12px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */
  --space-4xl: 6rem;     /* 96px */
  
  /* ===== Border Radius ===== */
  --radius-sm: 0.5rem;      /* 8px */
  --radius-md: 0.75rem;     /* 12px */
  --radius-lg: 1.125rem;    /* 18px */
  --radius-xl: 1.25rem;     /* 20px */
  --radius-2xl: 1.5rem;     /* 24px */
  --radius-3xl: 2.25rem;    /* 36px */
  --radius-full: 999px;
  
  /* ===== Elevation (Shadows) ===== */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow-orange: 0 10px 24px rgba(58, 194, 141, 0.3);
  --shadow-glow-orange-hover: 0 16px 28px rgba(58, 194, 141, 0.4);
  --shadow-glow-primary: 0 10px 24px rgba(58, 194, 141, 0.3);
  --shadow-glow-primary-hover: 0 16px 28px rgba(58, 194, 141, 0.4);
  
  /* ===== Transitions ===== */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  
  /* ===== Layout ===== */
  --max-width: 1120px;
  --max-width-narrow: 720px;
  --max-width-form: 480px;
  
  /* ===== Backdrop & Glass Effects ===== */
  --backdrop-glass: rgba(255, 255, 255, 0.06);
  --backdrop-blur: blur(12px);
  --backdrop-overlay: rgba(12, 40, 82, 0.9);
}
