/* CTA v1 — centered stack */

.cta-v1::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, color-mix(in srgb, var(--cta-accent) 18%, transparent), transparent 55%);
}

.cta-v1 .cta-v1__inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-v1 .cta-v1__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--cta-text);
}

.cta-v1 .cta-v1__sub {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.55;
  opacity: 0.88;
}

.cta-v1 .cta-v1__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}
