/* Kepler — base resets + link styling */

body {
  font-family: var(--font-sans);
  background: var(--surface-page);
  color: var(--text-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

* {
  box-sizing: border-box;
}
