/* ── Waitlist / Denied Screen ──────────────────── */
.waitlist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3f4f6;
  margin-bottom: var(--spacing-lg);
}

.waitlist-email-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-full, 100px);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.waitlist-signout-btn {
  background: var(--bg-secondary) !important;
  color: var(--text-secondary) !important;
  border: 1px solid var(--border) !important;
  font-size: 0.85rem !important;
}

.waitlist-signout-btn:hover {
  background: var(--bg-card) !important;
  border-color: var(--border-light) !important;
}

