@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800&display=swap');

/* ── Default Theme · Clean & Neutral ── */

:root {
  --bg: #fafafa;
  --surface: #f4f4f5;
  --border: #e4e4e7;
  --border-light: #f0f0f2;
  --text: #3f3f46;
  --text-light: #71717a;
  --text-lighter: #a1a1aa;
  --text-bright: #18181b;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-pale: #eff6ff;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --font-body: 'Heebo', sans-serif;
  --font-heading: 'Heebo', sans-serif;
  --font-mono: 'Heebo', monospace;
  --radius: 8px;
  --radius-lg: 12px;
}

[data-theme="dark"] {
  --bg: #0f0f17;
  --surface: #1a1a26;
  --border: #2a2a3a;
  --border-light: #222233;
  --text: #c8c8d8;
  --text-light: #9898ac;
  --text-lighter: #6a6a80;
  --text-bright: #ececf4;
  --primary: #60a5fa;
  --primary-hover: #93c5fd;
  --primary-pale: rgba(96, 165, 250, 0.1);
  --success: #4ade80;
  --success-bg: rgba(74, 222, 128, 0.08);
  --success-border: rgba(74, 222, 128, 0.2);
  --error: #f87171;
  --error-bg: rgba(248, 113, 113, 0.08);
  --error-border: rgba(248, 113, 113, 0.2);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
