:root {
  /* Typography */
  --font-sans: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  /* Colors - Light content area */
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --muted: #94a3b8;
  --border: #e2e8f0;

  /* Primary brand (override per taubane) */
  --primary: #2563eb;
  --primary-600: #1d4ed8;
  --primary-700: #1e40af;
  --primary-100: #dbeafe;

  /* Status */
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #dc2626;
  --info: #0ea5e9;

  /* Sidebar / topbar */
  --nav-bg: #0f172a;
  --nav-surface: #1e293b;
  --nav-surface-2: #0b1220;
  --nav-text: #e2e8f0;
  --nav-muted: #94a3b8;
  --nav-border: #1e293b;

  /* Radius */
  --radius-card: 16px;
  --radius-control: 10px;

  /* Shadow */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-nav: 0 10px 30px rgba(15, 23, 42, 0.28);

  /* Spacing (8px system) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;

  /* Layout */
  --sidebar-w: 260px;
  --topbar-h: 60px;
  --content-max: 1200px;
}

:root[data-theme="dark"] {
  --bg: #0b0f17;
  --surface: #121827;
  --surface-2: #0f1420;
  --text: #eef1f7;
  --muted: #a3acc0;
  --border: #1e2635;
}
