:root {
  /* Colors */
  --color-white: #fff;
  --color-black: #111111;
  --color-red: #E53935;
  --color-blue: #0D6EFD;
  --color-brand: #B22234;
  --gray-50: #f8f9fa;
  --gray-700: #495057;
  --gray-900: #1e1e1e;
  
  /* Border radius */
  --radius: 12px;
  --radius-lg: 16px;
  
  /* Shadows */
  --elev-1: 0 6px 16px rgba(0,0,0,.08);
  
  /* Animation durations */
  --dur-fast: 160ms;
  --dur-med: 200ms;
  
  /* Easing */
  --ease: cubic-bezier(.2,.8,.2,1);
  
  /* Gradients */
  --header-grad: linear-gradient(135deg, rgba(13,110,253,.95), rgba(178,34,52,.95));
  --brand-grad: linear-gradient(135deg, var(--color-brand), var(--color-blue));
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}