:root {
  /* Colors */
  --color-primary: rgb(0, 48, 135);
  --color-accent: rgb(0, 153, 255);
  --color-dark: rgb(15, 23, 42);
  --color-text: rgb(87, 87, 87);
  --color-text-dark: rgb(0, 0, 0);
  --color-border: rgb(216, 216, 216);
  --color-muted: rgb(197, 197, 197);
  --color-bg: rgb(244, 245, 243);
  --color-white: rgb(255, 255, 255);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fragment Mono', monospace;

  /* Font sizes */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 56px;
  --text-6xl: 72px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 120px;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1440px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  /* Transitions */
  --ease: 0.3s ease;
  --ease-fast: 0.2s ease;
}
