.starter-video-support {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  color: #f8fffd;
  text-align: left;
  background:
    radial-gradient(circle at 88% 10%, rgba(94, 234, 212, 0.3), transparent 30%),
    linear-gradient(135deg, #083b35, #0b5d50 58%, #087f6b);
  border: 1px solid rgba(153, 246, 228, 0.34);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(4, 47, 42, 0.24);
}

.starter-video-support::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.starter-video-support__copy,
.starter-video-support__action {
  position: relative;
  z-index: 1;
}

.starter-video-support__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #99f6e4;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.starter-video-support h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(21px, 3vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.starter-video-support p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #d8f7f0;
  font-size: 15px;
  line-height: 1.55;
}

.starter-video-support__action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 17px;
  color: #063c34;
  -webkit-text-fill-color: #063c34;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(1, 29, 25, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.starter-video-support__action:hover,
.starter-video-support__action:focus-visible {
  color: #063c34;
  -webkit-text-fill-color: #063c34;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(1, 29, 25, 0.28);
  outline: 3px solid rgba(153, 246, 228, 0.55);
  outline-offset: 3px;
}

.starter-video-support--result {
  margin: 26px auto 0;
  text-align: left;
}

@media (max-width: 700px) {
  .starter-video-support {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .starter-video-support__action {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
