/* ── Lead toast ── */
.lead-toast {
  position: fixed;
  inset: 0;
  z-index: 10003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}
.lead-toast.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lead-toast-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lead-toast-card {
  position: relative;
  z-index: 1;
  width: min(22rem, 100%);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 145, 154, 0.14), transparent 42%),
    linear-gradient(145deg, #221b1b 0%, #2a171c 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  color: #f5f0e8;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-toast.is-open .lead-toast-card {
  transform: translateY(0) scale(1);
}
.lead-toast-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-toast-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: scale(1.06);
}
.lead-toast-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.85rem;
  color: #d4919a;
}
.lead-toast.is-error .lead-toast-icon {
  color: #e8a0a8;
}
.lead-toast-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
  color: #f5f0e8;
}
.lead-toast-text {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 240, 232, 0.65);
}
.lead-toast-text a {
  color: #d4919a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lead-toast-text a:hover {
  color: #f5f0e8;
}

@media (prefers-reduced-motion: reduce) {
  .lead-toast,
  .lead-toast-card {
    transition: none;
  }
}
