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

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  border-radius: 99px;
  background: var(--primary);
  opacity: 0.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
}
