/* ================================
   GLOBAL RESET + BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: #ffffff;
  color: #000;
  line-height: 1.5;
}
