/* Hero layout */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
}

.hero-inner {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Logo display */
.logo-display {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 15vw, 120px);
  /* letter-spacing: -0.025em; */
  line-height: 1;
  margin: 18px 0 0;

  /* Gradient */
  background: linear-gradient(135deg, #FFB300 0%, #FF5722 45%, #FFB300 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Breathing animation */
  animation:
    gradientFlow 5s ease infinite,
    breatheLogo 7s ease-in-out infinite;
}

@keyframes breatheLogo {
  0%,100% {
    filter: drop-shadow(0 0 0px rgba(255,179,0,0));
    opacity: 0.93;
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255,130,50,0.22));
    opacity: 1;
  }
}

/* Text content */
.tagline {
  font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-top: 28px;
  line-height: 1.3;
}

.description {
  font-size: 15px;
  color: var(--text-2);
  margin-top: 14px;
  line-height: 1.75;
  max-width: 440px;
}

.sub-desc {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Waitlist form */
.waitlist-wrap {
  margin-top: 36px;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Email label row with tooltip */
.wl-email-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .4px;
  padding-left: 2px;
  margin-bottom: 10px;
}

/* Optional why textarea - always visible, subtle entry */
.wl-why-wrap {
  margin-top: 10px;
  overflow: hidden;
  animation: whyAppear .5s .9s var(--ease-out) both;
}
@keyframes whyAppear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wl-why-wrap textarea.input {
  font-size: 13px;
  min-height: 74px;
  resize: none;
  line-height: 1.55;
}

.form-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.form-row .input {
  flex: 1;
  min-width: 0;
}

.form-row .btn-primary {
  flex-shrink: 0;
}

/* Fog line - decorative */
.fog-line {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255,179,0,0.2), transparent);
}

/* Responsive: mobile */
@media (max-width: 480px) {
  .hero { padding: 90px 16px 50px; }

  .form-row {
    flex-direction: column;
  }

  .form-row .btn-primary {
    width: 100%;
    padding: 14px;
  }

  .logo-display {
    font-size: clamp(58px, 18vw, 90px);
  }

  .description {
    font-size: 14px;
  }
}