/* SerpDomains — visitor push opt-in (glassmorphism) */
.sd-push-root {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  z-index: 2147483000;
  pointer-events: none;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}
@media (min-width: 640px) {
  .sd-push-root {
    inset: auto 1.5rem 1.5rem auto;
    width: min(22rem, calc(100vw - 2rem));
  }
}
.sd-push-card {
  pointer-events: auto;
  display: flex;
  gap: 0.85rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(10, 15, 30, 0.88), rgba(20, 35, 70, 0.82));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #e8eefc;
  transform: translateY(1.2rem);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.sd-push-root.sd-push-visible .sd-push-card {
  transform: translateY(0);
  opacity: 1;
}
.sd-push-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d5ae3, #6c5ce7);
  box-shadow: 0 8px 24px rgba(45, 90, 227, 0.35);
  color: #fff;
}
.sd-push-icon svg { width: 1.2rem; height: 1.2rem; }
.sd-push-body { min-width: 0; flex: 1; }
.sd-push-title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.sd-push-text {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.82);
}
.sd-push-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sd-push-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s, opacity 0.12s, background 0.12s;
}
.sd-push-btn:active { transform: scale(0.98); }
.sd-push-btn-primary {
  background: linear-gradient(135deg, #2d5ae3, #4f6ef7);
  color: #fff;
  box-shadow: 0 6px 18px rgba(45, 90, 227, 0.35);
}
.sd-push-btn-primary:hover { filter: brightness(1.05); }
.sd-push-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sd-push-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 1.65rem;
  height: 1.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.sd-push-card { position: relative; }
