#waitlist-modal {
  position: fixed; inset: 0; z-index: 1060;
  background: rgba(15, 23, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1rem; overflow-y: auto;
  animation: wlf-backdrop-in .18s ease-out;
}
#waitlist-modal[hidden] { display: none; }
#waitlist-modal .waitlist-form-card {
  max-width: 520px; width: 100%; background: #fff;
  border-radius: 16px; padding: 2rem 2rem 2.5rem; position: relative;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35);
  animation: wlf-card-in .22s ease-out;
  max-height: calc(100vh - 4rem); overflow-y: auto;
}
@keyframes wlf-backdrop-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes wlf-card-in { from { opacity: 0; transform: translateY(12px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
body.waitlist-form-open { overflow: hidden; }
#waitlist-modal h2 { font-weight: 700; margin-bottom: 0.5rem; }
#waitlist-modal .waitlist-form-subtitle { color: #475569; margin-bottom: 1.5rem; }
#waitlist-modal .waitlist-form-close {
  position: absolute; top: 12px; right: 16px; background: transparent; border: 0;
  font-size: 1.5rem; line-height: 1; color: #64748b; cursor: pointer; padding: 4px 10px;
}
#waitlist-modal .waitlist-form-close:hover { color: #0f172a; }
#waitlist-modal label { color: #0f172a; }
#waitlist-modal .form-check-label,
#waitlist-modal .form-check-label small { color: #0f172a; }
#waitlist-modal .form-check-label a { color: #2563eb; text-decoration: underline; }
#waitlist-modal .form-check-label a:hover { color: #1d4ed8; }
#waitlist-modal .form-label { color: #0f172a; }
