/* =========================================================================
   plugbloom — Pricing & Download (store) pages
   Per-plugin cards. Scoped under .page-pricing / .page-download.
   Reuses the design system: container, section, plate, status, btn, link-arrow.
   ========================================================================= */

/* keep the header → first-content gap consistent with the rest of the site */
.page-pricing .catalog-head,
.page-download .catalog-head {
  padding-top: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-pricing .catalog-head h1,
.page-download .catalog-head h1 { font-size: var(--fs-hero); margin-top: .2rem; }
.page-pricing .catalog-head .lead,
.page-download .catalog-head .lead { max-width: 62ch; }
.page-pricing .catalog-legend,
.page-download .catalog-legend { margin-top: 1.6rem; }

/* grid sits flush under the head, like the catalog */
.page-pricing .store-section,
.page-download .store-section { padding-top: 0; }

/* per-plugin card — extends .plate */
.offer { padding-bottom: 1.5rem; }
.offer .plate__desc { flex: 0 0 auto; }
.offer .plate__foot { margin-top: auto; padding-top: 1.2rem; border-top: 1px solid var(--line); }

/* pricing — a compact per-tier list */
.offer-tiers { margin-top: 1.2rem; display: grid; gap: 0; }
.offer-tiers li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-block: .6rem; border-bottom: 1px solid var(--line);
}
.offer-tiers li:first-child { padding-top: 0; }
.offer-tiers li:last-child { border-bottom: 0; }
.offer-tiers__k {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3);
}
.offer-tiers__v { font-size: var(--fs-sm); color: var(--ink-2); text-align: right; }
.offer-tiers__v b { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; margin-right: .25em; }

/* download — spec rows + a block button */
.offer-meta { margin-top: 1.2rem; display: grid; gap: .55rem; }
.offer-meta li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: var(--fs-sm); }
.offer-meta__k { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.offer-meta__v { color: var(--ink-2); text-align: right; }
.offer .btn--block { margin-top: 1.3rem; }

/* a quiet note under each grid */
.store-note { margin-top: 1.8rem; text-transform: none; letter-spacing: .03em; color: var(--ink-3); max-width: 70ch; }
.store-note a { color: var(--mint-ink); font-weight: 500; }
