/* ===========================================================
   Reset (minimal, non-impactful)
   - Keep global primitives minimal and consistent
   - Do NOT add opinionated styles here
   =========================================================== */

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

html, body {
  height: 100%;
}

/* Remove default margins/padding on common elements */
html, body, h1, p, ul, li {
  margin: 0;
  padding: 0;
}

/* Neutral list + links as plain text by default */
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
