:root {
  /* Colors — Primary */
  --color-primary: #00ff41;
  --color-secondary: #00ffff;
  --color-accent: #ff0080;
  --color-warning: #ffaa00;
  --color-error: #ff3333;
  --color-text: #e0e0e0;
  --color-text-dim: #888888;
  --color-text-bright: #ffffff;

  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --bg-input: #141414;
  --bg-overlay: rgba(0, 0, 0, 0.85);

  /* Pillar Colors */
  --pillar-privacy: #00ff41;
  --pillar-ai: #00ffff;
  --pillar-blockchain: #ff0080;
  --pillar-zk: #a855f7;

  /* Borders */
  --border-color: #333333;
  --border-color-hover: #555555;

  /* Fonts */
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --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;

  /* 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;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Shadows & Glows */
  --glow-primary: 0 0 20px rgba(0, 255, 65, 0.3);
  --glow-secondary: 0 0 20px rgba(0, 255, 255, 0.3);
  --glow-accent: 0 0 20px rgba(255, 0, 128, 0.3);
  --glow-warning: 0 0 20px rgba(255, 170, 0, 0.3);
  --glow-zk: 0 0 20px rgba(168, 85, 247, 0.3);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-Index Scale */
  --z-base: 1;
  --z-card: 10;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 720px;
  --nav-height: 60px;
}
