/* CTA demo floating + modal */
@keyframes demo-pill-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.demo-pill {
  position: fixed;
  left: 50% !important;
  right: auto !important;
  bottom: 16px;
  transform: translateX(-50%) !important;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e4e7ec;
  background: rgba(255,255,255,0.95);
  color: #344053;
  box-shadow: 0 10px 24px rgba(16,24,40,0.14);
  backdrop-filter: blur(6px);
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: demo-pill-float 2.4s ease-in-out infinite;
}
.demo-pill:hover {
  transform: translateX(-50%) translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(16,24,40,0.16);
}
.demo-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6840c6;
  animation: demo-pill-float 2.4s ease-in-out infinite;
}
.demo-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  padding: 16px;
}
.demo-modal {
  width: min(960px, 100%);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  position: relative;
}
.demo-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.demo-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.demo-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(16,24,40,0.12);
  z-index: 1;
}
@media (max-width: 575.98px) {
  .demo-modal { width: 100%; }
  .demo-pill {
    width: 80%;
    bottom: 16px;
  }
}
