.hero-bg-video-wrap,
.hero-bg-video,
.hero-bg-overlay,
.hero-bg-vignette,
.hero-bg-noise {
  position: absolute;
  inset: 0;
}

.hero-bg-video-wrap {
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(1.05) contrast(1.05) brightness(0.72);
}

.hero-bg-overlay {
  background:
    radial-gradient(circle at center, rgba(16, 88, 160, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(1, 5, 10, 0.40), rgba(0, 0, 0, 0.74));
}

.hero-bg-vignette {
  background: radial-gradient(circle at center, transparent 24%, rgba(0, 0, 0, 0.56) 100%);
}

.hero-bg-noise {
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
}

.coming-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-eyebrow {
  margin-bottom: 16px;
  font-size: 0.90rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: rgba(241, 212, 141, 0.92);
  text-transform: uppercase;
}

.coming-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 18px;
}

.coming-text {
  position: relative;
  display: inline-block;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, #8adfff 0%, #ffffff 45%, #d6a64c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(84, 207, 255, 0.12);
}

.coming-text::after {
    animation: comingGlowShift 3s ease-in-out infinite;
  content: "COMING SOON";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(84,207,255,0.18), rgba(255,255,255,0.28), rgba(214,166,76,0.18));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(8px);
  opacity: 0.8;
  transform: translateX(0);
}

.wave-line {
  position: relative;
  width: min(420px, 72vw);
  height: 2px;
  margin: 0 auto 26px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wave-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(84, 207, 255, 1), transparent);
  box-shadow: 0 0 18px rgba(84, 207, 255, 0.46);
}

.hero-desc {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.06rem;
  line-height: 1.95;
  color: rgba(239, 247, 255, 0.78);
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.lead-panel {
  max-width: 760px;
  margin: 0 auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition:
    max-height 0.55s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.lead-panel.is-open {
  max-height: 560px;
  opacity: 1;
  transform: translateY(0);
}

.lead-form {
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label {
  font-size: 0.88rem;
  color: #dcecff;
  text-align: left;
}

.form-field-wide {
  grid-column: span 2;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.form-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: rgba(239, 247, 255, 0.58);
  text-align: center;
}

.form-message {
  min-height: 22px;
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
}
@keyframes comingGlowShift {
  0% {
    transform: translateX(-10px);
    opacity: 0.55;
  }
  50% {
    transform: translateX(10px);
    opacity: 0.95;
  }
  100% {
    transform: translateX(-10px);
    opacity: 0.55;
  }
}

.wave-line::before {
  animation: waveMove 2.1s linear infinite;
}

@keyframes waveMove {
  0% {
    left: -35%;
  }
  100% {
    left: 100%;
  }
}