/*
 * Minimal CSS reset + base document styles.
 * UI-002 §2 scaffold stub — expand as components need it.
 */

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

html {
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-primary-hover);
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
}

code,
kbd,
pre,
samp {
  font-family: var(--font-mono);
}

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}
