/* Support badges */
.support-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgb(16 185 129 / 0.12);
  color: var(--color-accent);
  font-weight: 600;
}

/* Live activity feed */
.live-activity-feed {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  z-index: 50;
  max-width: 320px;
  pointer-events: none;
}

.activity-notification {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(15 23 42 / 0.08);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3);
  pointer-events: auto;
}

.activity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.activity-content {
  display: grid;
  gap: 0.25rem;
}

.activity-text {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-body);
}

.activity-time {
  font-size: var(--text-xs);
  color: var(--color-muted-soft);
}

.activity-close {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--color-muted);
  margin-left: auto;
}

/* Dialogs */
dialog {
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  max-width: min(90vw, 720px);
  width: 100%;
  box-shadow: var(--shadow-lg);
  background: var(--color-surface);
}

dialog::backdrop {
  background: rgb(15 23 42 / 0.55);
  backdrop-filter: blur(8px);
}

#calendlyDialog {
  display: none;
  gap: var(--space-3);
  padding: var(--space-4);
}

#calendlyDialog[open] {
  display: grid;
}

#calendly-modal-close {
  justify-self: end;
  font-size: 1.35rem;
  line-height: 1;
  background: transparent;
  color: var(--color-muted);
}

.calendly-inline-widget {
  min-height: 540px;
}

.exit-modal {
  padding: 0;
}

.exit-modal-content {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgb(108 60 251 / 0.14), rgb(108 60 251 / 0.05));
}

.exit-modal-header {
  display: grid;
  gap: var(--space-2);
  text-align: center;
}

.exit-modal-header h2 {
  margin: 0;
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  color: var(--color-body);
  font-weight: 700;
}

.exit-modal-header p {
  margin: 0;
  color: rgb(15 23 42 / 0.85);
  font-size: var(--text-base);
}

.exit-offer {
  display: grid;
  gap: var(--space-3);
  text-align: center;
}

.exit-offer h3 {
  margin: 0;
  color: var(--color-body);
  font-size: var(--text-2xl);
  font-weight: 700;
  font-family: var(--font-display);
}

.exit-offer p {
  margin: 0;
  color: rgb(15 23 42 / 0.75);
  font-size: var(--text-base);
}

.exit-offer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  background: rgb(244 180 0 / 0.15);
  color: var(--color-highlight);
  margin-inline: auto;
}

.exit-benefits {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.3rem;
  color: rgb(15 23 42 / 0.8);
  font-size: var(--text-sm);
  text-align: left;
}

.exit-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.25rem;
  color: rgb(15 23 42 / 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.exit-modal-close:hover {
  background: rgb(15 23 42 / 0.08);
  color: rgb(15 23 42 / 0.9);
}

.exit-disclaimer {
  margin: 0;
  font-size: var(--text-xs);
  color: rgb(15 23 42 / 0.65);
}

