/* price.css (Pricing page specific styles) */
body {
  background-color: var(--paper);
}

#pricingSection {
  margin-top: 73px;
}

.pageSection {
  padding-block: 64px;
  background: var(--paper);
  scroll-margin-top: 80px;
}

.pageSectionAlt {
  background: color-mix(in oklch, var(--paper) 92%, var(--warm2) 8%);
}

.sectionInner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: 16px;
}

.sectionTitle {
  color: var(--warm3);
  font-size: clamp(22px, calc(20px + 0.625vw), 32px);
  font-weight: 950;
  margin-block-end: 10px;
  > span {
    display: inline-block;
  }
}

.sectionLead {
  font-size: clamp(14px, calc(13.2px + 0.25vw), 18px);
  line-height: 1.8;
  color: oklch(from #333 l c h / 0.9);
  font-weight: 800;
  margin-block-end: 26px;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pricingCard {
  border-radius: var(--radius);
  border: 1px solid oklch(from #333 l c h / 0.1);
  background: oklch(from #fbfbfb l c h / 0.9);
  padding: 18px;
}

.pricingCardTitle {
  font-size: clamp(18px, calc(17.2px + 0.25vw), 22px);
  font-weight: 950;
  margin-block-end: 8px;
  color: var(--ink);
}

.pricingCardPrice {
  font-size: clamp(22px, calc(21px + 0.625vw), 30px);
  font-weight: 1000;
  color: oklch(from #f94346 l c h / 0.95);
  margin-block-end: 10px;
}

.pricingCardText {
  font-size: clamp(13px, calc(12.4px + 0.1875vw), 16px);
  font-weight: 800;
  line-height: 1.8;
  color: oklch(from #333 l c h / 0.86);
  margin-block-end: 14px;
}

.pricingCardButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 950;
  background: oklch(from #f9c54e l c h / 0.35);
  border: 1px solid oklch(from #f9c54e l c h / 0.55);
  color: oklch(from #333 l c h / 0.95);
}

.pricingCardButton:hover {
  background: oklch(from #f98339 l c h / 0.32);
}

/* mobile */
@media (width < 768px) {
  #pricingSection {
    margin-top: 55.5px;
  }
  .pageSection {
    padding-block: 56px;
  }

  .pricingGrid {
    grid-template-columns: 1fr;
  }
}
