/* ── Design Tokens ─────────────────────────────────────────── */

:root {
  /* Background layers — deep navy */
  --bg-base: #0d1f33;
  --bg-surface: #132c49;
  --bg-elevated: #1a3a5e;
  --bg-hover: #22476f;
  --bg-active: #2a5280;

  /* Text — cool light */
  --text-primary: #d8e8f5;
  --text-secondary: #8ba8c4;
  --text-muted: #5e7f9e;
  --text-bright: #ecf6ff;

  /* Borders — navy grays */
  --border-subtle: #1a3050;
  --border-default: #2a4a6a;
  --border-strong: #3a6080;

  /* Accent — PossibLaw pink */
  --accent: #f57dc0;
  --accent-hover: #f99ad0;
  --accent-muted: rgba(245, 125, 192, 0.10);

  /* Badge colors — muted, complementary to navy/mint */
  --badge-memory: #6ea0b0;
  --badge-commands: #8e82ad;
  --badge-config: #7a8a96;
  --badge-mcp: #6e9468;
  --badge-skill: #5e918a;
  --badge-agents: #b8965e;
  --badge-plugins: #a8a048;
  --badge-marketplace: #7a8b5e;
  --badge-hooks: #ad6e5e;
  --badge-code: #5e82a0;
  --badge-builtin: #7d8a98;
  --badge-cli: #8e82ad;

  /* Radius — sharp */
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;

  /* Fonts — Inter for UI, JetBrains Mono for code */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;

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

  /* Sidebar */
  --sidebar-width: 270px;
}
