* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
}