:root {
  /* Brand Colors */
  --color-primary: #2b88ff;
  --color-primary-dark: #1a6fd4;
  --color-primary-light: #5aa3ff;
  --color-primary-bg: #eef5ff;
  --color-hero-blue: #2b88ff;

  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-bg-muted: #f0f2f5;
  --color-bg-dark: #111111;
  --color-bg-card: #ffffff;

  --color-text: #111111;
  --color-text-muted: #555555;
  --color-text-light: #888888;
  --color-text-inverse: #ffffff;

  --color-border: #e5e7eb;
  --color-border-dark: #d1d5db;
  --color-promo-bar: #000000;

  --color-success: #22c55e;
  --color-error: #ef4444;
  --color-sale: #e53935;

  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", Consolas, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --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;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 64px;
  --promo-height: 36px;

  /* Effects */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  --transition: 0.2s ease;
}
