/* ── Pricing / Join ─────────────────────────────────────────────
   Three plans, always all visible (including to existing members). */

.pr { margin-top: calc(var(--ticker-h) + var(--topbar-h) + var(--header-h)); }

.pr-hero { background: linear-gradient(135deg, #0e1433 0%, #182456 55%, #1f2f6e 100%); color: #fff; }
.pr-hero-inner { max-width: var(--content-w); margin: 0 auto; padding: 54px var(--content-px) 60px; }
.pr-eyebrow { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #ffc93c; margin-bottom: 12px; }
.pr-hero h1 { font-size: clamp(2.1rem, 1rem + 3.6vw, 3.5rem); line-height: 1.05; margin: 0 0 12px; color: #fff; }
.pr-hero h1 em { font-style: normal; color: #ffc93c; }
.pr-hero p { color: rgba(255,255,255,.78); margin: 0; max-width: 56ch; }
.pr-note { margin-top: 18px; display: inline-block; padding: 9px 15px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .9rem; }
.pr-note strong { color: #ffc93c; }

.pr-wrap { max-width: var(--content-w); margin: 0 auto; padding: 0 var(--content-px) 72px; }

/* Cards lift out of the hero */
.pr-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: -38px 0 56px; }
.pr-card {
  position: relative; background: var(--bg-card, #fff);
  border: 1px solid var(--border-card, rgba(0,0,0,.1));
  border-radius: 18px; padding: 28px 24px 24px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pr-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.16); }
.pr-card.is-featured { border-color: var(--brand); box-shadow: 0 10px 34px rgba(48,82,209,.22); }
.pr-card.is-current { border-color: #3ddc84; }

.pr-tag { position: absolute; top: -12px; left: 24px; background: var(--brand); color: #fff;
  font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; }
.pr-tag-cur { left: auto; right: 24px; background: #3ddc84; color: #04321a; }

.pr-name { font-size: 1.25rem; font-weight: 800; margin: 6px 0 4px; }
.pr-blurb { color: var(--text-2); font-size: .92rem; margin: 0 0 18px; }

.pr-price { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.pr-cur { font-size: 1.3rem; font-weight: 700; }
.pr-amt { font-size: 2.9rem; font-weight: 800; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.pr-per { font-size: .85rem; color: var(--text-2); margin-left: 4px; }
.pr-effective { font-size: .82rem; color: #1f8f4d; margin-top: 6px; }
.pr-effective strong { font-weight: 800; }

.pr-cta { display: block; text-align: center; margin: 20px 0 16px; padding: 13px 18px;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 1.5px solid var(--brand); color: var(--brand); background: transparent;
  transition: background .15s ease, color .15s ease, transform .15s ease; }
.pr-cta:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.pr-cta-primary { background: var(--brand); color: #fff; }
.pr-cta-primary:hover { background: var(--brand-dark, #2042b8); }

.pr-desc { font-size: .89rem; color: var(--text-2); line-height: 1.6; border-top: 1px solid var(--border-card, rgba(0,0,0,.08)); padding-top: 14px; margin-top: auto; }
.pr-desc p { margin: 0 0 8px; }

/* Comparison */
.pr-cmp-hd { font-size: 1.5rem; font-weight: 800; margin: 0 0 16px; }
.pr-cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pr-cmp { width: 100%; border-collapse: collapse; min-width: 620px; }
.pr-cmp th, .pr-cmp td { padding: 13px 14px; text-align: center; border-bottom: 1px solid var(--border-card, rgba(0,0,0,.08)); }
.pr-cmp thead th { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-2); }
.pr-cmp thead th:first-child, .pr-cmp tbody th { text-align: left; font-weight: 600; }
.pr-cmp tbody th { font-size: .93rem; }
.pr-cmp td.yes { color: #1f8f4d; font-weight: 800; font-size: 1.05rem; }
.pr-cmp td.no  { color: var(--text-3, #999); }
.pr-cmp td.unk { color: var(--text-3, #999); font-size: .74rem; font-style: italic; }
.pr-cmp td.txt { font-size: .88rem; font-weight: 600; }
.pr-foot { font-size: .8rem; color: var(--text-2); margin-top: 14px; }

@media (max-width: 700px) { .pr-grid { margin-top: -22px; } }
