/* Minimal base layer. Consumers link styles.css and get tokens plus these
 * defaults; everything else is component-level. */
*, *::before, *::after { box-sizing: border-box }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text-body);
  font-family: var(--font-core);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--text-heading); font-weight: var(--type-heading-weight); letter-spacing: var(--tracking-heading); line-height: var(--leading-snug); margin: 0 }
p { margin: 0; text-wrap: pretty }
a { color: var(--text-link); text-decoration: none; transition: var(--transition-color) }
a:hover { color: var(--text-link-hover); text-decoration: underline; text-underline-offset: 3px }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-xs) }
::selection { background: var(--rose-200); color: var(--ink-900) }
[data-numeric], .bd-numeric { font-family: var(--font-mono); font-variant-numeric: tabular-nums }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important }
}
