/* ============================================
   WAITLIST PAGE STYLES
   ============================================ */

.waitlist-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Animated background grid effect */
.waitlist-page::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 0;
}

.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  width: 100%;
}

/* Logo / Brand */
.brand {
  margin-bottom: var(--space-lg);
}

.brand-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  /* Cyan to purple gradient on the text */
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none; /* text-shadow doesn't work with gradient text */
  display: block;
  margin-bottom: var(--space-sm);
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Hero headline */
.waitlist-headline {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.3;
  color: var(--text-primary);
}

.waitlist-headline span {
  color: var(--cyan);
}

/* Supporting paragraph */
.waitlist-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* Email form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  max-width: 460px;
  margin: 0 auto var(--space-xl);
}

.input-row {
  display: flex;
  gap: var(--space-sm);
}

.waitlist-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input::placeholder {
  color: var(--text-muted);
}

.waitlist-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.btn-join {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn-join:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-join:active {
  transform: translateY(0);
}

/* Honeypot — visually hidden spam trap */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Privacy note */
.privacy-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Success state */
.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--cyan-dim);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 40px var(--cyan-glow);
}

.waitlist-success.visible {
  display: flex;
}

.success-icon {
  font-size: 3rem;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cyan);
}

.success-text {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Features preview strip */
.features-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.feature-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.feature-pill .pill-dot {
  color: var(--cyan);
  margin-right: 4px;
}

/* Counter */
.signup-counter {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.signup-counter strong {
  color: var(--cyan);
}

/* Footer */
.waitlist-footer {
  margin-top: var(--space-2xl);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile responsive */
@media (max-width: 480px) {
  .input-row {
    flex-direction: column;
  }
  
  .btn-join {
    width: 100%;
    padding: var(--space-md);
  }
}