:root {
  color-scheme: dark;
  --bg: #03050c;
  --panel: rgb(8 13 24 / .88);
  --text: #eef0f6;
  --muted: #8590a4;
  --cyan: #6ce9df;
  --violet: #bd8df0;
  --amber: #e9b86c;
  --danger: #ff7f94;
  --line: rgb(133 144 164 / .2);
  --line-strong: rgb(108 233 223 / .4);
  --shadow-panel: 0 24px 80px rgb(0 0 0 / .34);
  --glow-cyan: 0 0 28px rgb(108 233 223 / .16);
  --glow-violet: 0 0 34px rgb(189 141 240 / .14);
  --radius-panel: 28px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell-width: 1180px;
  --space-1: .5rem;
  --space-2: .75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
}

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

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--bg);
  background: var(--cyan);
}
