header {
  padding: 2rem;
  position: relative;
  z-index: 2;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}
.hero {
  padding-top: 6rem;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}
.hero-text {
  margin-top: 2rem;
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 4rem;
  }
  .hero h1 {
    font-size: clamp(3rem, 12vw, 5rem);
  }
  .content {
    left: 1.5rem;
    bottom: 1.5rem;
  }
}
