.landing-body {
  overflow: hidden;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.landing-container {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.landing-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.landing-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.landing-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature i {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: var(--gradient-primary);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 15s infinite ease-in-out;
}

.gradient-orb:nth-child(1) {
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.gradient-orb:nth-child(2) {
  top: 50%;
  right: -10%;
  background: var(--gradient-secondary);
  animation-delay: -5s;
}

.gradient-orb:nth-child(3) {
  bottom: -20%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5%, 5%);
  }
  50% {
    transform: translate(0, 10%);
  }
  75% {
    transform: translate(-5%, 5%);
  }
}

.btn-get-started {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  animation: pulse 2s infinite;
  text-decoration: none;
}

.btn-get-started i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-get-started:hover i {
  transform: translateX(4px);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 87, 194, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(126, 87, 194, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 87, 194, 0);
  }
}

@media (max-width: 768px) {
  .landing-title {
    font-size: 2.5rem;
  }

  .landing-features {
    gap: 1.5rem;
  }

  .btn-get-started {
    padding: 0.75rem 1.5rem;
  }
}
