/* ═══════════════════════════════════════════════
   WAITLIST.CSS — Formulario Lista de Espera
   ReaperTech © 2026
═══════════════════════════════════════════════ */

.waitlist-section {
  padding: 0 48px 100px;
  position: relative;
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
}

/* ── HEADER ── */
.waitlist-header {
  text-align: center;
  margin-bottom: 36px;
  animation: fadeUp .8s .3s var(--ease) both;
}

.waitlist-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.waitlist-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── COUNTER BADGE ── */
.waitlist-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--dim);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 32px;
}

.waitlist-count-badge strong {
  color: var(--accent);
}

/* ── FORM ── */
.waitlist-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 32px;
  animation: fadeUp .8s .35s var(--ease) both;
  transition: border-color .3s;
}

.waitlist-form:focus-within {
  border-color: rgba(200,241,53,.2);
}

.wl-group {
  margin-bottom: 14px;
}

.wl-label {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.wl-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.wl-input::placeholder { color: rgba(255,255,255,.2); }

.wl-input:focus {
  border-color: rgba(200,241,53,.4);
  background: rgba(200,241,53,.03);
  box-shadow: 0 0 0 3px rgba(200,241,53,.06);
}

.wl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wl-submit {
  width: 100%;
  margin-top: 8px;
  padding: 17px;
  background: var(--accent);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s var(--ease), box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wl-submit:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,241,53,.22);
}

.wl-submit:active { transform: translateY(0); }

.wl-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ── SUCCESS STATE ── */
.waitlist-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: rgba(200,241,53,.05);
  border: 1px solid rgba(200,241,53,.2);
  border-radius: 12px;
  animation: scaleIn .4s var(--ease);
}

.waitlist-success.show { display: block; }

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
  display: block;
}

.success-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--accent);
  margin-bottom: 10px;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRIVACY NOTE ── */
.wl-privacy {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  color: var(--dim);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (min-width: 1400px) {
  .waitlist-section { padding: 0 80px 120px; }
}
@media (max-width: 900px) {
  .waitlist-section { padding: 0 24px 80px; }
  .wl-row { grid-template-columns: 1fr; }
  .waitlist-form { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .waitlist-section { padding: 0 16px 64px; }
  .waitlist-form { padding: 20px 16px; }
  .wl-submit { font-size: 10px; padding: 15px; }
  .waitlist-title { font-size: 16px; }
}
