:root {
  /* ── Background ── */
  --bg-primary: #07090f;
  --bg-secondary: #0d1117;
  --bg-card: #161b22;
  --bg-hover: #1c2128;
  --bg-active: #1f2937;
  --bg-input: #0d1117;

  /* ── Borders ── */
  --border: #21262d;
  --border-light: #30363d;

  /* ── Text ── */
  --text-primary: #e6edf3;
  --text-secondary: #8b949e;
  --text-muted: #7d8a97;
  --text-inverse: #07090f;

  /* ── Accent (teal/cyan) ── */
  --accent: #58a6ff;
  --accent-hover: #79c0ff;
  --accent-bg: rgba(88, 166, 255, 0.1);

  /* ── Semantic ── */
  --danger: #f85149;
  --danger-bg: rgba(248, 81, 73, 0.1);
  --success: #3fb950;
  --success-bg: rgba(63, 185, 80, 0.1);
  --warning: #d29922;
  --warning-bg: rgba(210, 153, 34, 0.1);

  /* ── Spacing ── */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  /* ── Typography ── */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --font-size-xs: 12px;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;

  /* ── Radius ── */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);

  /* ── Sidebar ── */
  --sidebar-width: 260px;
  --sidebar-collapsed: 0px;

  /* ── Topbar ── */
  --topbar-height: 56px;

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