/* EXIT-INTENT TOAST */
#exit-toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 9980;
  transform: translateY(120%) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s ease;
  pointer-events: none;
  max-width: 360px; width: calc(100vw - 2rem);
}
#exit-toast.et-show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.et-inner {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: rgba(8,8,15,0.96);
  border: 1px solid rgba(0,229,255,0.18);
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.et-emoji { font-size: 1.5rem; flex-shrink: 0; }

.et-text { flex: 1; min-width: 0; }
.et-text strong { display: block; color: #e8eaf0; font-size: 0.88rem; line-height: 1.3; }
.et-text span { display: block; color: #6b7280; font-size: 0.78rem; margin-top: 0.1rem; }

.et-btn {
  display: flex; align-items: center; gap: 0.35rem;
  padding: 0.45rem 0.9rem; border-radius: 50px;
  background: linear-gradient(135deg, #00e5ff, #0099cc);
  color: #000; font-size: 0.8rem; font-weight: 800;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.15s, box-shadow 0.2s;
}
.et-btn:hover { transform: scale(1.04); box-shadow: 0 4px 16px rgba(0,229,255,0.35); }

.et-close {
  background: none; border: none; color: #6b7280;
  font-size: 0.8rem; cursor: pointer; padding: 0.2rem;
  flex-shrink: 0; line-height: 1; transition: color 0.2s;
}
.et-close:hover { color: #e8eaf0; }

/* On mobile push above sticky CTA bar */
@media (max-width: 767px) {
  #exit-toast { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); right: 0.75rem; }
}
