:root {
  /* Primary Colors */
  --color-primary: #B21B27;
  --color-primary-dark: #8B121C;
  --color-primary-light: #FCEAEB;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #B21B27 0%, #E63946 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  --gradient-overlay: linear-gradient(to right, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.4) 100%);

  /* Secondary & Accent Colors */
  --color-secondary: #454545;
  --color-accent: #D11D2B;
  --color-accent-light: #FCEAEB;

  /* Neutrals */
  --color-dark: #1A1A1A;
  --color-dark-soft: #2C2C2C;
  --color-white: #ffffff;
  --color-background: #F8F9FA;
  --color-surface: #ffffff;
  --color-surface-soft: #F2F2F2;

  /* Typography Colors */
  --color-text: #1A1A1A;
  --color-text-muted: #5A5A5A;
  --color-border: #E0E0E0;

  /* Status Colors */
  --color-success: #16845b;
  --color-error: #c53b3b;
  --color-warning: #c77a12;

  /* Typography */
  --font-heading: 'Manrope', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;

  /* Font Sizes */
  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-lg: 1.125rem;    /* 18px */
  --fs-xl: 1.25rem;     /* 20px */
  --fs-2xl: 1.5rem;     /* 24px */
  --fs-3xl: clamp(1.75rem, 3vw, 2rem);      /* 28px - 32px */
  --fs-4xl: clamp(2rem, 4vw, 3rem);         /* 32px - 48px */
  --fs-5xl: clamp(2.5rem, 5vw, 5rem);       /* 40px - 80px */

  /* Spacing */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-5: 1.25rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-10: 2.5rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-20: 5rem;
  --spacing-24: 6rem;
  --spacing-32: 8rem;

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows (Premium Soft Apple-style Shadows) */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 8px 16px rgba(178, 27, 39, 0.2);
  
  /* Layout */
  --container-max-width: 1280px;
  --container-padding: 1.5rem;
  --header-height: 80px;
  --topbar-height: 40px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0.01ms !important;
    --transition-base: 0.01ms !important;
    --transition-slow: 0.01ms !important;
  }
}
