/* Final "Create an account" CTA band, sits between the last content
   section and the footer. components/cta-section.html */
.hp-cta {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
  background: var(--gradient-brand);
}

.hp-cta__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 80% at 12% 0%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      ellipse 50% 70% at 92% 100%,
      rgba(0, 40, 80, 0.18) 0%,
      rgba(0, 40, 80, 0) 60%
    );
}

.hp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hp-cta__badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.hp-cta__badge .eyebrow-badge__label {
  color: #fff;
}

.hp-cta__heading {
  margin: 0;
  font-size: 2.5rem;
  font-weight: var(--hp-fw-extrabold);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.hp-cta__text {
  margin: 0;
  max-width: 480px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.hp-cta__button {
  background: #fff;
  color: var(--color-brand-dark);
  box-shadow: 0 14px 30px rgba(0, 40, 80, 0.25);
}

.hp-cta__button:hover,
.hp-cta__button:focus-visible {
  background: #fff;
  color: var(--color-brand-dark);
  filter: brightness(0.97);
}

.hp-cta__points {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-top: 0.25rem;
}

.hp-cta__point {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.hp-cta__point img {
  width: 13px;
  height: 13px;
  filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
  .hp-cta {
    padding-block: 3.5rem;
  }

  .hp-cta__heading {
    font-size: 1.875rem;
  }

  .hp-cta__text {
    font-size: 0.9375rem;
  }
}
