.pricing-hero .hero__image img {
  object-position: center 44%;
  filter: saturate(.64) contrast(1.08) brightness(.58);
}

/* Keep touch scrolling native while removing the visual scrollbar on phones/tablets. */
@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }
}

/* Match the pricing page palette on fine-pointer desktop devices. */
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
  html {
    scrollbar-color: rgba(112, 200, 223, .82) #070a0f;
    scrollbar-width: thin;
  }

  html::-webkit-scrollbar {
    width: 11px;
  }

  html::-webkit-scrollbar-track {
    border-left: 1px solid rgba(255, 255, 255, .06);
    background: linear-gradient(180deg, #070a0f, #11151b);
  }

  html::-webkit-scrollbar-thumb {
    border: 3px solid #070a0f;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), #315e78);
  }

  html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a6e2ef, #497b94);
  }
}

.pricing-hero h1 { max-width: 11ch; }

.pricing-tax {
  max-width: 42rem;
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  color: #dce6ee;
  font-size: .82rem;
  line-height: 1.55;
  animation: rise-in .8s .27s cubic-bezier(.22, 1, .36, 1) both;
}

.price-list {
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}

.price-item {
  display: grid;
  grid-template-columns: minmax(8rem, .55fr) minmax(0, 1.65fr) minmax(13rem, .8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: clamp(2.4rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, padding 220ms ease;
}

.price-item:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(255, 255, 255, .025);
}

.price-item--featured {
  background: linear-gradient(90deg, rgba(112, 200, 223, .075), transparent 72%);
}

.price-item__index {
  display: grid;
  gap: 1rem;
  color: var(--muted);
  font: 500 .67rem/1.4 "Space Grotesk";
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-item__index span:first-child { color: var(--accent); }

.price-item__body h3 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
}

.price-item__body > p {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: var(--soft);
  line-height: 1.65;
}

.price-item__body ul {
  display: grid;
  gap: .65rem;
  margin: 1.6rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  list-style: none;
}

.price-item__body li::before {
  content: "—";
  margin-right: .65rem;
  color: var(--accent);
}

.price-item__price {
  display: grid;
  justify-items: end;
  gap: .5rem;
  text-align: right;
}

.price-item__price span,
.price-item__price small {
  color: var(--muted);
  font: 500 .67rem/1.4 "Space Grotesk";
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-item__price strong {
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.06em;
}

.pricing-scope {
  background: linear-gradient(145deg, #111823, #070a0f 78%);
}

.pricing-scope__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) var(--pad);
}

.pricing-scope h2 {
  max-width: 12ch;
  margin: 1.3rem 0 0;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.06em;
}

.pricing-scope__inner > p {
  max-width: 42rem;
  margin: 0;
  color: var(--soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pricing-scope dl {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.pricing-scope dl div {
  min-height: 10rem;
  padding: 1.6rem 2rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.pricing-scope dl div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.pricing-scope dl div:nth-child(even) {
  padding-left: 2rem;
}

.pricing-scope dt { font-size: 1.15rem; }

.pricing-scope dd {
  max-width: 36rem;
  margin: .8rem 0 0;
  color: var(--soft);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .price-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .price-item:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .price-item__price {
    justify-items: start;
    text-align: left;
  }

  .pricing-scope__inner { grid-template-columns: 1fr; }

  .pricing-scope dl {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .pricing-scope dl div,
  .pricing-scope dl div:nth-child(even) {
    min-height: 0;
    padding: 1.6rem 0;
    border-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-tax { animation: none; }
}
