.cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -65px 25%;
  height: 100px;
  border-top: 1px dotted rgba(147,174,255,.28);
  border-radius: 50%;
}
.cta {
  margin-top: 20px;
  min-height: 118px;
  border: 1px solid #7145b9;
  border-radius: 8px;
  background: radial-gradient(circle at 5% 50%,rgba(31,121,255,.45),transparent 25%), radial-gradient(circle at 75% 80%,rgba(147,40,255,.4),transparent 35%), linear-gradient(105deg,#071a4b,#24105b);
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 64px;
  padding: 20px 28px;
  overflow: hidden;
  position: relative;
}
.section-shell {
  width: min(1180px,calc(100% - 48px));
  margin-inline: auto;
}
.cta-art {
  width: 70px;
  height: 70px;
  color: #d5b8ff;
  filter: drop-shadow(0 0 12px #6d4cff);
  z-index: 1;
}
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-art {
  color: #d5b8ff;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-art svg{width:100%;height:100%}
.cta-copy h2 {
  font-size: 22px;
  margin: 0 0 5px;
}
.cta-copy p {
  font-size: 13px;
  color: #c3c9d8;
  margin: 0;
}
.cta-actions {
  z-index: 1;
  justify-content: flex-end;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-actions .btn {
  min-width: 150px;
}
.btn-outline {
  border: 1px solid #6b4bb2;
  background: rgba(7,13,31,.55);
}


.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 700;
  transition: .25s ease;
}
.btn-outline {
  border: 1px solid #6b4bb2;
  background: rgba(7,13,31,.55);
}
@media (max-width: 720px) {
  .cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 25px 18px;
  }
   .cta-actions {
    justify-content: center;
  }
   .btn-primary {
    width: 100%;
  }
  
  .section-shell {
    width: min(100% - 28px,1180px);
  }
  .cta-art {
    margin: auto;
  }
}





