.home-cta {
  position: relative;
  overflow: hidden;
  padding: 44px 0;
  background: linear-gradient(120deg, #071b35, #0b4a76);
}

.home-cta::after {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(82, 215, 212, .2);
  border-radius: 50%;
  content: "";
}

.home-cta .home-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) auto;
  align-items: center;
  gap: 55px;
}

.home-cta-copy {
  max-width: 760px;
}

.home-cta .eyebrow {
  margin: 0 0 7px;
  color: #55d7d1;
}

.home-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.home-cta-copy > p:last-child {
  max-width: 680px;
  margin: 12px 0 0;
  color: #c9d8e7;
  line-height: 1.55;
}

.home-cta-actions {
  display: flex;
  min-width: 220px;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.home-cta-actions .button {
  justify-content: space-between;
  gap: 22px;
}

.home-cta-link {
  padding: 5px;
  color: #dce8f5;
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
}

.home-cta-link:hover {
  color: #70e1dc;
}

@media (max-width: 900px) {
  .home-cta {
    padding: 38px 0;
  }

  .home-cta .home-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-cta-actions {
    min-width: 0;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .home-cta {
    padding: 32px 0;
  }

  .home-cta-actions,
  .home-cta-actions .button {
    width: 100%;
  }
}
