:root,
[data-theme="dark"] {
  --bg-primary: #0b0f14;
  --bg-surface: #121821;
  --bg-elevated: #1a2332;
  --bg-hover: #243044;
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: #2a3544;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #38bdf8;
  --notif-info: #38bdf8;
  --notif-success: #22c55e;
  --notif-warning: #f59e0b;
  --notif-error: #ef4444;
  --notif-message: #a78bfa;
  --notif-ticket: #f97316;
  --notif-invoice: #34d399;
  --badge-bg: #ef4444;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --rail-width: 72px;
  --sections-width: 240px;
  --topbar-height: 56px;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-elevated: #f1f5f9;
  --bg-hover: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { font-family: var(--font); }
body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
