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

html { 
  scroll-behavior: auto !important; /* Forces auto layout tracking for GSAP math */
}

body { 
  background: var(--bg); 
  color: var(--text); 
  font-family: var(--font-main); 
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { 
  max-width: 100%; 
  display: block; 
}

button, input, textarea {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}