/* ════════ CSS Reset ════════ */
/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
}

input,
select {
  font-family: inherit;
}

svg {
  display: block;
}
