#pricing-banner {
  height: 25em;
  background: linear-gradient(to right, oklch(43.2% 0.232 292.759), #1e1a4d);
  padding-top: 9rem;
  position: relative;
  margin-top: -180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.down-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.down-curve svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 15em;
}

.down-curve .shape-fill {
  fill: #ffffff;
}

#pricing-banner .cs-container span {
  font-weight: 700;
  font-size: clamp(2em, calc(1.5em + 2.5vw), 4em);
  width: 60%;
  text-wrap: balance;
  min-width: 600px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: white;
}
@media only screen and (max-width: 1080px) {
  #pricing-banner {
    height: 20em;
  }
  .down-curve svg {
    height: 10em;
  }
}
@media only screen and (max-width: 800px) {
  #pricing-banner {
    height: 18em;
  }
  .down-curve svg {
    height: 9em;
  }
}
@media only screen and (max-width: 540px) {
  #pricing-banner {
    height: 17em;
  }
  .down-curve svg {
    height: 8em;
  }
}
