/* ── WAITLIST OVERLAY ── */
.waitlist-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.waitlist-overlay.open { display: flex; }

.waitlist-modal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: modalIn .22s ease;
}

.waitlist-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  transition: all .15s;
}
.waitlist-close:hover { border-color: var(--green); color: var(--text); }

.waitlist-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.waitlist-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.2;
}
.waitlist-title em { font-style: italic; color: var(--green); }

.waitlist-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 24px;
}

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

.waitlist-submit {
  padding: 13px 20px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.waitlist-submit:hover { background: var(--green-dark); }
.waitlist-submit:disabled { opacity: .5; cursor: not-allowed; }

.waitlist-note { font-size: 11px; color: var(--muted); text-align: center; margin: 0; }

/* ── SUCCÈS ── */
.waitlist-success { display: none; text-align: center; padding: 12px 0; }
.waitlist-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.waitlist-success-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--text); margin: 0 0 8px; }
.waitlist-success-sub   { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 480px) { .waitlist-modal { padding: 28px 22px; } }
