
.landing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  width: 100%;
  position: absolute;
  top: 0;
}

.landing-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 0 20px;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.2), transparent 50%),
              radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.1), transparent 50%);
}

.landing-hero h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: 24px;
  max-width: 900px;
  font-weight: 800;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 680px) {
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
  }
  .hero-btns .btn {
    width: 100%;
  }
}
