/* ============================================================
   MODUM – Design Tokens & CSS Variables
   ============================================================ */

:root {
  /* Brand Colors */
  --primary:   #003D7A;
  --secondary: #0099CC;
  --accent:    #00B4E6;
  --accent-warm: #00D4FF;

  /* Neutrals */
  --white:     #ffffff;
  --bg:        #f8fafc;
  --muted:     #6b7280;
  --border:    #e2e8f0;
  --text:      #0f172a;
  --text-soft: #334155;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:    5.5rem;
  --container-max: 1280px;
  --container-px:  1.5rem;

  /* Misc */
  --radius:    0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 1px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(0,180,230,0.25);

  /* Transitions */
  --ease:       0.25s cubic-bezier(0.4,0,0.2,1);
  --ease-spring:0.4s cubic-bezier(0.34,1.56,0.64,1);
}
