/* ============================================
   NexusShell Design Tokens
   ============================================ */

:root {
  /* Colors - CLI Theme */
  --bg-primary: #2a1225;
  --bg-secondary: #3a1a33;
  --bg-tertiary: #1a0a16;
  --bg-card: transparent;
  --bg-glass: rgba(233, 84, 32, 0.05);
  --bg-glass-hover: rgba(233, 84, 32, 0.15);

  --text-primary: #cccccc;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;

  --accent-primary: #E95420;
  --accent-secondary: #B8431A;
  --accent-gradient: #E95420;
  --accent-gradient-reverse: #E95420;
  --accent-gradient-horizontal: #E95420;
  --accent-cyan: #E95420;
  --accent-green: #E95420;
  --accent-red: #ee1010;
  --accent-orange: #FFAA00;
  --accent-yellow: #FFFF00;

  --border-color: #E95420;
  --border-glow: #E95420;

  /* Shadows - Minimal for CLI */
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-glow: none;
  --shadow-glow-lg: none;

  /* Typography */
  --font-family: 'Consolas', 'Courier New', Courier, monospace;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Border Radius - Square for CLI */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --radius-full: 0;

  /* Transitions - Faster for instant CLI feel */
  --transition-fast: 0ms;
  --transition-base: 0ms;
  --transition-slow: 0ms;
  --transition-spring: 0ms;

  /* Z-index */
  --z-dropdown: 100;
  --z-modal: 200;
  --z-toast: 300;
}
