/* ── WAITLIST FORM ── */
.waitlist-section {
  padding: 100px 80px;
  background: var(--oat);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.waitlist-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 114, 91, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-card {
  background: white;
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(51, 51, 51, 0.1);
  border: 1px solid rgba(221, 213, 194, 0.5);
  margin-top: 40px;
}

.waitlist-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226, 114, 91, 0.1);
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  border: 1px solid rgba(226, 114, 91, 0.2);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-light);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--oat-darker);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--oat);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(226, 114, 91, 0.12);
  background: white;
}

.form-radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-option {
  flex: 1 1 0;
}

.radio-option input {
  display: none;
}

.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border: 2px solid var(--oat-darker);
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal-light);
  transition: all 0.2s;
  background: var(--oat);
  text-transform: none;
  letter-spacing: 0;
}

.radio-option input:checked+label {
  border-color: var(--terracotta);
  background: rgba(226, 114, 91, 0.08);
  color: var(--terracotta-dark);
}

.radio-option label:hover {
  border-color: var(--terracotta-light);
  background: rgba(226, 114, 91, 0.04);
}

.form-privacy {
  font-size: 0.72rem;
  color: var(--charcoal-faint);
  text-align: center;
  line-height: 1.5;
  margin-top: 4px;
}

/* Post-signup state */
.signup-success {
  display: none;
  text-align: center;
  padding: 16px 0;
}

.signup-success.visible {
  display: block;
}

.success-rank {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.success-rank-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--charcoal-faint);
  margin-bottom: 24px;
}

.success-title {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.success-body {
  font-size: 0.88rem;
  color: var(--charcoal-light);
  margin-bottom: 28px;
  line-height: 1.6;
}

.share-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.share-btn {
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.share-btn.whatsapp {
  background: #25D366;
  color: white;
}

.share-btn.whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

.share-btn.telegram {
  background: #0088CC;
  color: white;
}

.share-btn.telegram:hover {
  background: #0077b3;
  transform: translateY(-1px);
}

.share-btn.copy {
  background: var(--oat);
  border-color: var(--oat-darker);
  color: var(--charcoal);
}

.share-btn.copy:hover {
  background: var(--oat-dark);
  transform: translateY(-1px);
}

.success-next-steps {
  background: var(--oat);
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 20px;
  text-align: left;
}

.success-next-steps p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-faint);
  margin-bottom: 10px;
}

.success-next-steps ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.success-next-steps li {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  gap: 8px;
}