/* ==========================================================================
   Section 11 — cta
   Values preserved verbatim from docs/research/sections/11-cta.html
   ========================================================================== */

.cta {
  background: var(--bg-tint);
  border-top: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.cta__inner {
  text-align: center;
  position: relative;
}

.cta__title {
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 18px;
}

.cta__lede {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  padding: 18px 40px;
  border-radius: var(--r-pill);
  font-size: 17.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
}

.cta__arrow {
  font-size: 18px;
}

@media (max-width: 860px) {
  .cta__lede {
    max-width: 100%;
  }
}
