.px-cta {
  --px-cta-glow: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--px-primary);
  border: none;
  color: #ffffff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(106, 0, 255, 0.25);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.px-cta .px-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.px-cta::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 60%);
  opacity: var(--px-cta-glow);
  z-index: -1;
}

.px-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.px-cta.light-mode {
  color: #0e0e0e;
}

@media (max-width: 480px) {
  .px-cta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 12px 16px;
  }

  .px-cta .px-icon {
    width: 24px;
    height: 24px;
  }
}
