/* reset.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* Use 'clip' instead of 'hidden' — prevents horizontal scroll
     WITHOUT creating a new scroll container, so position:sticky works */
  overflow-x: clip;
}

html, body {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}