*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Dusk graphite — between office-light and pure black */
  --bg: #1a1917;
  --bg-elevated: #22211e;
  --bg-card: #242320;
  --bg-card-hover: #2c2b27;
  --border: rgba(240, 234, 220, 0.09);
  --border-light: rgba(240, 234, 220, 0.16);
  --text: #efece4;
  --text-muted: #a39e93;
  --text-dim: #6f6a61;
  --accent: #6b9cff;
  --accent-hot: #8bb2ff;
  --accent-deep: #4a7ef0;
  --accent-ink: #0e1218;
  --accent-glow: rgba(107, 156, 255, 0.14);
  --accent-glow-strong: rgba(107, 156, 255, 0.24);
  --sand: #c4a574;
  --sand-bg: rgba(196, 165, 116, 0.12);
  --green: #4ecb8c;
  --green-bg: rgba(78, 203, 140, 0.12);
  --blue: #6b9cff;
  --blue-bg: rgba(107, 156, 255, 0.12);
  --amber: #e0a54b;
  --amber-bg: rgba(224, 165, 75, 0.12);
  --red: #f07171;
  --radius: 14px;
  --radius-sm: 8px;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-display: 'Sora', 'Manrope', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 12px 40px rgba(107, 156, 255, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-bg: rgba(26, 25, 23, 0.88);
  --toolbar-bg: linear-gradient(180deg, rgba(26, 25, 23, 0.96) 70%, rgba(26, 25, 23, 0.88));
}

html {
  overflow-x: clip;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

a {
  color: inherit;
}
