:root {
  /* Background layers */
  --bg-body: #070b14;
  --bg-surface-1: #0d1221;
  --bg-surface-2: #151c2e;
  --bg-surface-3: #1a2236;

  /* Accent colors */
  --cyan: #00d4ff;
  --cyan-light: #4de8ff;
  --blue: #3b82f6;
  --blue-dark: #1e40af;
  --gradient-cta: linear-gradient(135deg, #00d4ff 0%, #3b82f6 50%, #1e40af 100%);
  --gradient-cta-hover: linear-gradient(135deg, #4de8ff 0%, #60a5fa 50%, #2563eb 100%);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Status */
  --yellow: #facc15;
  --green: #4ade80;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 212, 255, 0.3);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: 7rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;

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

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-cta: 0 4px 20px rgba(0, 212, 255, 0.3);

  /* Layout */
  --max-width: 1200px;
  --header-height: 4rem;
}
