/* CSS Custom Properties */

:root {
  /* Colors */
  --color-bg: #fafaf9;
  --color-text: #1a1a1a;
  --color-accent: #7c3aed;
  --color-accent-hover: #6d28d9;
  --color-muted: #737373;
  --color-border: #e5e5e5;
  --color-code-bg: #f5f5f4;
  --color-card-bg: #ffffff;
  
  /* Severity colors for demo page */
  --color-high: #dc2626;
  --color-medium: #ea580c;
  --color-low: #ca8a04;
  
  /* Typography */
  --font-serif: 'Fraunces', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  
  /* Font sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 2rem;        /* 32px */
  --text-4xl: 2.5rem;      /* 40px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Spacing scale (8px base) */
  --space-xs: 0.5rem;      /* 8px */
  --space-sm: 1rem;        /* 16px */
  --space-md: 1.5rem;      /* 24px */
  --space-lg: 2rem;        /* 32px */
  --space-xl: 3rem;        /* 48px */
  --space-2xl: 4rem;       /* 64px */
  --space-3xl: 6rem;       /* 96px */
  --space-4xl: 8rem;       /* 128px */
  
  /* Layout */
  --max-width-text: 720px;
  --max-width-wide: 1200px;
  --border-radius: 8px;
  --border-radius-sm: 4px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Responsive font sizes */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.5rem;    /* 40px on mobile */
    --text-4xl: 2rem;      /* 32px on mobile */
    --text-3xl: 1.75rem;   /* 28px on mobile */
  }
}

/* Made with Bob */
