/* 00-reset.css — Minimal, opinionated reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans, system-ui, -apple-system, sans-serif);
  font-size: var(--text-base, 1rem);
  line-height: 1.5;
  color: var(--c-text, #1a1a1a);
  background: var(--c-bg, #fafafa);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea {
  font: inherit; color: inherit; background: transparent; border: none;
}
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }
hr { border: none; border-top: 1px solid var(--c-border); margin: var(--s-4) 0; }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
