/* Public /pricing page shell. Component styles for the plan cards + trial block
   live in billing.css (reused). This file only lays out the standalone page. */

.pricing-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-page__intro { text-align: center; }
.pricing-page__title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--text-strong, #e8edf4);
}
.pricing-page__lede {
  margin: 0.5rem auto 0;
  max-width: 42rem;
  color: var(--text-muted, #9aa4b2);
}

.pricing-page__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.pricing-page__cta-copy { margin: 0; color: var(--text, #c8d0da); }
.pricing-page__noscript { color: var(--text-muted, #9aa4b2); text-align: center; }

/* The plan grid (billing.css .pricing-grid) is already responsive via auto-fit;
   keep the page usable on narrow viewports. */
@media (max-width: 640px) {
  .pricing-page { padding: 1rem 0.85rem 2.5rem; }
  .topbar { flex-wrap: wrap; gap: 0.5rem; }
}
