/* ===================================
   WAITLIST PAGE
   Editorial signup and follow-up section
   =================================== */

.waitlist-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(188, 147, 0, 0.14), transparent 32rem),
    linear-gradient(180deg, #0a0a0a 0%, #11100d 48%, #0a0a0a 100%);
}

.waitlist-page .waitlist-hero {
  min-height: calc(100vh - 80px);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem);
  align-items: center;
}

.waitlist-page .hero-content {
  width: min(860px, 100%);
  max-width: 860px;
  text-align: left;
}

.waitlist-page .hero h1 {
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  letter-spacing: 0;
}

.waitlist-page .hero h1 span {
  display: block;
}

.waitlist-page .waitlist-hero-lede {
  max-width: 34rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.waitlist-benefit-list {
  max-width: 30rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.waitlist-benefit-list li {
  position: relative;
  padding-left: 1.15rem;
}

.waitlist-benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold-medium);
}

.waitlist-page .hero-signup-form {
  max-width: 620px;
  margin: 0;
}

.waitlist-page .hero-email-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.waitlist-form-label {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.waitlist-page .hero-form-row {
  gap: 0.7rem;
}

.waitlist-page .hero-email-input {
  min-height: 3.8rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(250, 233, 155, 0.22);
  border-radius: 4px;
  color: var(--text-white);
}

.waitlist-page .hero-email-input:focus {
  border-color: rgba(250, 233, 155, 0.72);
  box-shadow: 0 0 0 3px rgba(250, 233, 155, 0.12);
}

.waitlist-page .hero-submit-btn {
  min-height: 3.8rem;
  border-radius: 4px;
  box-shadow: none;
}

.waitlist-page .hero-submit-btn::before {
  display: none;
}

.waitlist-page .hero-submit-btn:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.waitlist-page .hero-form-note {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  text-align: left;
}

.waitlist-page .hero-success,
.waitlist-page .hero-error {
  margin-top: 1rem;
  border-radius: 4px;
}

.waitlist-next-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #0c0b0a;
}

.waitlist-next-container {
  max-width: 960px;
}

.waitlist-next-section h2 {
  max-width: 12ch;
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
  text-align: left;
}

.waitlist-next-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(250, 233, 155, 0.16);
  border: 1px solid rgba(250, 233, 155, 0.16);
}

.waitlist-next-item {
  min-height: 13rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: #0c0b0a;
}

.waitlist-next-item h3 {
  max-width: 14rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.waitlist-next-item p {
  max-width: 26rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.waitlist-next-note {
  margin-top: 2rem;
}

.waitlist-next-note p {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .waitlist-page .waitlist-hero {
    padding: 2.5rem 1rem 3.5rem;
  }

  .waitlist-page .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
  }

  .waitlist-page .hero h1 .gradient-text {
    white-space: nowrap;
  }

  .waitlist-page .hero-form-note {
    text-align: left;
  }

  .waitlist-next-list {
    grid-template-columns: 1fr;
  }

  .waitlist-next-item {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-page .hero-submit-btn:hover {
    transform: none;
  }
}
