:root {
  --color-bg: #0c1220;
  --color-panel: #131c2f;
  --color-text: #e8eefc;
  --color-muted: #9eaccf;
  --color-info: #4ea0ff;
  --color-warn: #ffcb52;
  --color-critical: #ff607a;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --radius: 0.5rem;
  --font-base: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
