.pricing-story {
  height: 400svh;
  background: #000;
}

.pricing-story .pricing-hero {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
}

.pricing-story-stage {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: min(100%, 90rem);
  opacity: 0;
  visibility: hidden;
  transform: translateY(2rem) scale(.98);
  transition: opacity .85s ease, transform 1s cubic-bezier(.2, .75, .25, 1), visibility .85s;
}

.pricing-story-stage.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pricing-story-stage > p:not(.eyebrow) {
  max-width: 44rem;
  margin: 0;
  color: #aaa;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.pricing-story-punchline h2 {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 9rem);
  letter-spacing: -.075em;
  line-height: .9;
}

.pricing-story-punchline h2 b {
  font: inherit;
}

.pricing-story-punchline h2 span {
  display: inline-block;
  color: #fff;
  -webkit-text-stroke: 2px #ffb347;
  text-shadow: 0 0 8px #ff5f6d, 0 0 20px #ff5f6d, 0 0 38px #ffc371, 0 0 65px #7b61ff;
  animation: pricing-glow 2.2s ease-in-out infinite alternate;
}

.pricing-story-explanation {
  max-width: 76rem;
}

.pricing-story-explanation > p {
  max-width: 34ch !important;
  color: var(--orange-light) !important;
  font-weight: 750;
}

.pricing-story-explanation h2 {
  max-width: 20ch;
  margin: 1.3rem 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  letter-spacing: -.065em;
  line-height: .98;
}

.pricing-story-explanation strong {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: .05em;
  text-transform: uppercase;
}

@keyframes pricing-glow {
  to {
    -webkit-text-stroke-color: #60efff;
    text-shadow: 0 0 10px #60efff, 0 0 24px #00ff87, 0 0 46px #7b61ff, 0 0 75px #ff5f6d;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-story-stage { transition: none; }
  .pricing-story-punchline h2 span { animation: none; }
}

@media (max-width: 560px) {
  .pricing-story .pricing-hero { grid-template-columns: minmax(0, 1fr); }
  .pricing-story-stage {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .pricing-story-stage h1 { width: 100%; font-size: clamp(3rem, 16vw, 4.4rem); }
  .pricing-story-stage > p:not(.eyebrow) { width: calc(100% - 1rem); max-width: calc(100% - 1rem); }
  .pricing-story-stage .hero-actions { align-items: stretch; flex-direction: column; width: calc(100% - 1rem); }
  .pricing-story-stage .hero-actions .button { width: 100%; margin-top: .75rem; }
  .mobile-title-break { display: inline; }
  .pricing-story-explanation h2 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .pricing-story-punchline { overflow: visible; }
  .pricing-story-punchline h2 { display: grid; gap: .18em; width: 100%; padding: .15em .25em; overflow: visible; font-size: clamp(2.8rem, 14vw, 4.4rem); line-height: 1; }
  .pricing-story-punchline h2 span { font-size: clamp(2rem, 9.4vw, 3rem); letter-spacing: -.055em; line-height: 1.1; white-space: nowrap; }
  .pricing-story-punchline h2 b { display: block; line-height: 1.05; }
}

@media (min-width: 561px) {
  .mobile-title-break { display: none; }
}

.price-with-offer {
  align-items: center;
  flex-wrap: wrap;
  row-gap: .7rem;
}

.price-with-offer .old-price {
  position: relative;
  padding: 0 .15em;
  color: #aaa;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
}

.price-with-offer .old-price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -.08em;
  width: 116%;
  height: .16em;
  border-radius: 999px;
  background: #ff2525;
  box-shadow: 0 0 .6rem rgba(255, 37, 37, .75);
  transform: translateY(-50%) rotate(-14deg);
  transform-origin: center;
}

.price-with-offer .availability-badge {
  padding: .7rem .85rem;
  border: 2px solid #ff3b30;
  border-radius: .65rem;
  background: rgba(255, 37, 37, .12);
  color: #ff6259;
  font-size: clamp(.65rem, 1vw, .78rem);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.15;
}

.price-with-offer .price-period {
  flex-basis: 100%;
  padding: 0;
}

.contract-formation-note {
  max-width: 68rem;
  margin: 2rem auto 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: .9rem;
  background: rgba(255, 255, 255, .55);
  color: #77777c;
  font-size: .72rem;
  line-height: 1.6;
  text-align: center;
}

.contract-formation-note strong {
  color: #3b3b3f;
}

@media (max-width: 560px) {
  .price-with-offer { gap: .65rem; }
  .price-with-offer .availability-badge { order: 4; flex-basis: 100%; width: max-content; }
  .price-with-offer .price-period { order: 3; flex-basis: auto; }
}
