/* Base reset — small, opinionated. Pulls body to Geist + neutral palette.
 * Keep this thin: it should never override component styles.
 */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--bg-page);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
}

p { margin: 0; }

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--speed-fast) var(--ease-standard);
}
a:hover { color: var(--text-link-hover); text-decoration: underline; }

button { font-family: inherit; }

::selection { background: var(--mv-cyan-light); color: var(--text-primary); }
