body {
  font-family: Inter, sans-serif;
}

.hero-bg {
  background:
    radial-gradient(circle at top left, rgba(244,114,182,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(59,130,246,0.10), transparent 30%),
    radial-gradient(circle at bottom, rgba(168,85,247,0.08), transparent 32%);
}

.cta-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  border: 1px solid rgba(255, 179, 220, 0.55);
  background: linear-gradient(
    270deg,
    #ff4ecd,
    #ff78c8,
    #ff4ecd
  );
  background-size: 400% 400%;
  animation: gradientMove 6s ease infinite;
  box-shadow:
    0 0 0 1px rgba(255, 192, 226, 0.15) inset,
    0 0 10px rgba(255, 94, 190, 0.20),
    0 0 22px rgba(255, 94, 190, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.cta-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.55),
    rgba(255,170,220,0.8),
    rgba(255,255,255,0.35)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
}

.cta-glow::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 50%;
  height: 300%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );
  transform: rotate(20deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.cta-glow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 205, 232, 0.85);
  box-shadow:
    0 0 0 1px rgba(255, 220, 239, 0.22) inset,
    0 0 14px rgba(255, 94, 190, 0.35),
    0 0 28px rgba(255, 94, 190, 0.26),
    0 0 50px rgba(255, 94, 190, 0.18);
}

.cta-glow:hover::after {
  transform: translateX(260%) rotate(20deg);
}

.cta-glow:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.9),
    0 0 0 5px rgba(255, 94, 190, 0.35),
    0 0 30px rgba(255, 94, 190, 0.28);
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}