/* Pricing plan cards — reference layout (name / description / price / CTA /
   checklist, featured card with a full-width top banner + accent border).
   Every value comes from the template's own tokens (brand-override maps
   --primary to Stratora gold and --title-color to ink), so this stays part
   of the site's design system rather than a new one. */

/* The collapsed single-label buttons lost the template's inner flex wrapper
   (.primary-button-single) — lay out label + arrow inline on the button
   itself. Page-scoped: this stylesheet loads only on pricing.html. */
.primary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  /* .section.main-pricing zeroes its bottom padding (the template expected a
     connected details section below) — restore the site's section rhythm. */
  margin-bottom: 100px;
}

.plan {
  border: 1px solid var(--black-8-border);
  border-radius: 12px;
  background-color: var(--white);
  overflow: hidden;
}

.plan--featured {
  border-color: var(--primary);
}

.plan__banner {
  padding: 13px 16px;
  background-color: var(--primary);
  color: var(--title-color);
  font-family: var(--_font-family---chivo-mono);
  font-size: var(--_typography---small-subtitle);
  font-weight: var(--_font-weight---bold);
  letter-spacing: 1.5px;
  line-height: var(--_line-height---normal);
  text-align: center;
  text-transform: uppercase;
}

.plan__body {
  padding: 38px 34px 40px;
}

.plan__name {
  margin: 0 0 14px;
  font-family: var(--_font-family---funnel-display);
  color: var(--title-color);
  font-size: var(--_typography---h4);
  line-height: var(--_line-height---h4);
  font-weight: var(--_font-weight---medium);
  letter-spacing: var(--_letter-spacing---h4);
}

.plan__desc {
  min-height: 52px;
  margin: 0 0 26px;
  color: var(--neutral-700);
  font-size: var(--_typography---small-paragraph);
  line-height: var(--_line-height---small);
  letter-spacing: var(--_letter-spacing---small-paragraph);
}

.plan__price {
  margin-bottom: 6px;
  color: var(--title-color);
  font-family: var(--_font-family---funnel-display);
  font-size: 34px;
  line-height: 110%;
  font-weight: var(--_font-weight---medium);
  letter-spacing: -0.8px;
}

.plan__price small {
  margin-left: 4px;
  color: var(--neutral-700);
  font-family: var(--_font-family---inter-tight);
  font-size: var(--_typography---headline);
  font-weight: var(--_font-weight---normal);
  letter-spacing: var(--_letter-spacing---headline);
}

.plan__price-sub {
  margin: 0 0 30px;
  color: var(--neutral-700);
  font-size: var(--_typography---subtitle);
  line-height: var(--_line-height---small);
  letter-spacing: var(--_letter-spacing---subtitle);
}

.plan__cta {
  margin-bottom: 34px;
}

/* Auto-width buttons (the template's cart button forces full width). */
.plan__cta .primary-button {
  width: auto;
  padding: 15px 26px;
  transition: all .3s;
}

.plan__cta .primary-button:hover {
  transform: scale(.97);
}

.plan .pricing-features-list-item {
  align-items: flex-start;
}

.plan .pricing-features-list-item-icon {
  margin-top: 1px;
  flex-shrink: 0;
}

.plan .pricing-features-list-item.is-everything .pricing-features-list-item-text {
  color: var(--title-color);
  font-weight: var(--_font-weight---semi-bold);
}

@media (max-width: 991px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
  }

  .plan__desc {
    min-height: 0;
  }
}
