/* Clervo Design System — v2 */
:root {
  /* 60% void black */
  --void: #000000;
  --void-soft: #050505;
  --void-card: #0a0a0a;
  --void-elevated: #0f0f0f;

  /* 10% white */
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  /* 5% red — beam in */
  --red: #c61532;
  --red-dim: rgba(198, 21, 50, 0.6);
  --red-glow: rgba(198, 21, 50, 0.15);
  --red-trace: rgba(198, 21, 50, 0.08);

  /* 5% green — beam out */
  --green: #53c97f;
  --green-dim: rgba(83, 201, 127, 0.6);
  --green-glow: rgba(83, 201, 127, 0.15);
  --green-trace: rgba(83, 201, 127, 0.08);

  /* Typography — Geist-inspired, Inter fallback */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-hero: clamp(3rem, 5vw, 4.5rem);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 64px;
  --radius: 6px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 300ms;
  --duration-slow: 600ms;
}
