:root {
  /* Brand Colors - Infrastructure Grade */
  /* Brand Colors - Infrastructure Grade */
  --color-accent: #00bfac;
  /* SOLO Logo Teal */
  --color-accent-hover: #008f81;
  --color-accent-light: #e0f7f5;
  /* Crisp light teal */
  --color-accent-subtle: rgba(0, 191, 172, 0.05);

  /* Neutral Colors - High Contrast & Solid */
  --color-white: #ffffff;
  --color-off-white: #f8f9fa;
  /* Cool gray background */
  --color-light-gray: #e9ecef;
  /* Distinct border color */
  --color-medium-gray: #dee2e6;
  /* Stronger border color */
  --color-charcoal: #495057;
  /* Technical body text */
  --color-dark-charcoal: #212529;
  /* Sharp headings */
  --color-black: #000000;

  /* Functional Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 800;
  /* Added for impact */

  /* Spacing - Structured & Rhythm */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
  /* Defined section gaps */
  --space-2xl: 5rem;
  /* Major section gaps */
  --space-3xl: 7.5rem;
  /* Hero padding */

  /* Border Radius - Technical */
  --radius-sm: 4px;
  --radius-md: 6px;
  /* Tighter corners */
  --radius-lg: 8px;
  /* Standard card radius */
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Shadows - Technical Depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);

  /* Transitions */
  --transition-base: 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --container-width: 1200px;
  --header-height: 72px;
  /* Slightly more compact */
}