/* Base resets and typography — dense but readable */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-900, #111827);
  background: var(--color-white, #fff);
}

a {
  color: var(--color-action);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, button, select, textarea {
  font: inherit;
  color: inherit;
}
