/* Landing section — gradient background */
.landing {
  position: relative;
}

.landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 15% 80%, var(--landing-gradient-1) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, var(--landing-gradient-2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, var(--landing-gradient-3) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.landing > * {
  position: relative;
  z-index: 1;
}

.landing-tagline {
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Hero dual CTA */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-ctas .cta-button {
  margin-top: 0;
}

.hero-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Secondary CTA variant */
.cta-button-secondary {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.cta-button-secondary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Hero video */
.hero-video {
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 640px;
}

.hero-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-primary-lg);
  background-color: var(--bg-card);
  aspect-ratio: 16 / 9;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s ease;
}

.hero-video-play:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hero-video-play[hidden] {
  display: none;
}

.hero-video-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

@media screen and (max-width: 720px) {
  .cta-button {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
  }

  .hero-video {
    max-width: 100%;
  }
}
