:root {
  --color-primary: #4f46e5;
  --color-primary-dark: #1a1363;
  --color-primary-mid: #2d2baa;
  --color-secondary: #7c3aed;
  --color-brand-light: #818cf8;
  --color-accent: #0ea5e9;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-info: #06b6d4;
  --color-bg: #f8f7ff;
  --color-surface: #ffffff;
  --color-surface-muted: #f5f3ff;
  --color-surface-info: #f0f9ff;
  --color-surface-success: #ecfdf5;
  --color-surface-warning: #fffbeb;
  --color-surface-danger: #fee2e2;
  --color-text: #111827;
  --color-text-secondary: #4b5563;
  --color-text-muted: #6b7280;
  --color-text-subtle: #9ca3af;
  --color-border: #e5e7eb;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(17, 24, 39, 0.12);
  --shadow-md: 0 4px 16px rgba(79, 70, 229, 0.12);
  --shadow-lg: 0 12px 30px rgba(79, 70, 229, 0.18);
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
}