/* variables.css -- glassmorphism dark design system */

:root {
  /* ── Typography ─────────────────────────────────── */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* ── Colors: Base ───────────────────────────────── */
  --bg-deep: #0a0a0f;
  --bg-surface: rgba(15, 15, 25, 0.7);
  --bg-elevated: rgba(20, 20, 35, 0.8);

  /* ── Colors: Glass ──────────────────────────────── */
  --glass-card: rgba(255, 255, 255, 0.03);
  --glass-card-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.12);
  --glass-input: rgba(255, 255, 255, 0.04);
  --glass-input-focus: rgba(255, 255, 255, 0.07);
  --glass-blur: 12px;

  /* ── Colors: Accent ─────────────────────────────── */
  --accent: #7c5cfc;
  --accent-hover: #6a4ae8;
  --accent-glow: rgba(124, 92, 252, 0.15);
  --accent-glow-strong: rgba(124, 92, 252, 0.3);

  /* ── Colors: Text ───────────────────────────────── */
  --text-primary: #e4e4ef;
  --text-secondary: #8b8ba0;
  --text-muted: #5a5a6e;
  --text-on-accent: #ffffff;

  /* ── Colors: Status ─────────────────────────────── */
  --status-green: #34d399;
  --status-green-bg: rgba(52, 211, 153, 0.1);
  --status-green-border: rgba(52, 211, 153, 0.3);
  --status-red: #f87171;
  --status-red-bg: rgba(248, 113, 113, 0.1);
  --status-red-border: rgba(248, 113, 113, 0.3);
  --status-yellow: #fbbf24;
  --status-yellow-bg: rgba(251, 191, 36, 0.1);
  --status-yellow-border: rgba(251, 191, 36, 0.3);
  --status-blue: #60a5fa;
  --status-blue-bg: rgba(96, 165, 250, 0.1);
  --status-blue-border: rgba(96, 165, 250, 0.3);

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

  /* ── Radii ──────────────────────────────────────── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* ── Shadows ────────────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--accent-glow);

  /* ── Layout ─────────────────────────────────────── */
  --sidebar-width: 260px;
  --topbar-height: 56px;
  --content-max-width: 960px;

  /* ── Transitions ────────────────────────────────── */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease-out;
}
