/* pricing-cards.css — single shared stylesheet for the pricing hero band,
   audience pills, and pricing-card grid used on BOTH /pricing and
   /network/join. Edit only here: the two pages load this file directly
   (no per-page copies) so they are structurally unable to diverge visually.
   Page-specific styles (payment modal, join-page form, etc.) stay in each
   page's own <style> block. */

/* ── Hero ──────────────────────────────────────── */
.ph-hero {
  background: linear-gradient(160deg, #fffaf0 0%, #fff3d4 55%, #fde8aa 100%);
  padding: 36px 32px 28px;
  text-align: center;
  border-bottom: 1px solid #e8d5a3;
}
.ph-hero-in { max-width: var(--pub-prose-width); margin: 0 auto; }
.ph-label {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b5811f;
  margin: 0 0 8px;
}
.ph-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 4px 14px;
  margin: 0 0 6px;
}
.ph-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 900;
  color: #1b1005;
  line-height: 1.2;
  margin: 0;
}
.ph-sub {
  font-size: var(--pub-body-size);
  line-height: var(--pub-body-lh);
  color: #3b2a12;
  margin: 0;
}

/* ── Audience pills (For business / For consultants) ──────────────────── */
.ph-audience-row { display: flex; justify-content: center; margin-top: 18px; }
.ph-audience-pills {
  display: inline-flex;
  gap: 6px;
  background: rgba(255,255,255,0.65);
  border: 1px solid #d8bf88;
  border-radius: 999px;
  padding: 5px;
}
.paud {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 700;
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  color: #5a3308;
  transition: background 0.15s, color 0.15s;
}
.paud.active { background: #1c1308; color: #fff; }

/* ── Billing toggle (only rendered on /pricing when annual is enabled) ── */
.ph-toggle-row { display: none; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; margin-top: 14px; }
.ph-toggle-row.show { display: flex; }
.ph-toggle {
  display: inline-flex;
  gap: 6px;
  background: rgba(255,255,255,0.65);
  border: 1px solid #d8bf88;
  border-radius: 999px;
  padding: 5px;
}
.ptog {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 700;
  padding: 9px 22px;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  color: #5a3308;
  transition: background 0.15s, color 0.15s;
}
.ptog.active { background: #1c1308; color: #fff; }

/* ── Plans ─────────────────────────────────────── */
/* The outer max-width is the shared --pub-wide-width (the section takes the
   extra width fully, per the founder's spec), but the CARDS themselves stay
   individually capped via minmax() + justify-content:center -- a pricing
   card stretched to 800px+ looks broken (huge empty space around a short
   feature list), so the extra room becomes generous centered margins
   around a moderately (not absurdly) wider card instead. */
.ph-plans { padding: 28px 32px 10px; }
.ph-plans-in {
  max-width: var(--pub-wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
  gap: 28px;
  align-items: stretch;
}
.ph-plans-in-consult {
  max-width: var(--pub-wide-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 380px));
  justify-content: center;
  gap: 24px;
  align-items: stretch;
}

.pcard {
  border-radius: 24px;
  padding: 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pcard-demo {
  background: #fffaf0;
  border: 1.5px solid #d8bf88;
  color: #3b2a12;
}
.pcard-full {
  background: #1c1308;
  color: #e8d5a3;
  box-shadow: 0 16px 48px rgba(20,8,0,.3);
}
.pcard-consult-free { background: #fffaf0; border: 1.5px solid #d8bf88; color: #3b2a12; }
.pcard-consult-free .pcard-name { color: #1c1308; }
.pcard-consult-free .price-main { color: #1c1308; }
.pcard-consult-lead { background: #1c1308; color: #e8d5a3; box-shadow: 0 16px 48px rgba(20,8,0,.3); }
.pcard-consult-lead .pcard-name { color: #f5c84a; }
.pcard-consult-lead .price-main { color: #fff; }
.pcard-consult-promo { background: #fffaf0; border: 1.5px solid #d8bf88; color: #3b2a12; }
.pcard-consult-promo .pcard-name { color: #1c1308; }
.pcard-consult-promo .price-main { color: #1c1308; }

.pcard-badge {
  display: inline-block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #b5811f;
  color: #fff;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.pcard-badge-placeholder { visibility: hidden; }
.pcard-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 10px;
  line-height: 1.1;
}
.pcard-demo .pcard-name { color: #1c1308; }
.pcard-full .pcard-name { color: #f5c84a; }

.pcard-price { margin-bottom: 16px; }
.price-main {
  display: block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}
.pcard-demo .price-main { color: #1c1308; }
.pcard-full .price-main { color: #fff; }
.price-per {
  display: block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 600;
  color: #9a7840;
  margin-top: 5px;
}
.pcard-full .price-per { color: #a08460; }

.pcard-desc {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  line-height: 1.55;
  margin: 0 0 20px;
}
.pcard-consult-lead .pcard-desc { color: #d4c4a4; }
.pcard-consult-free .pcard-desc, .pcard-consult-promo .pcard-desc { color: #5a4326; }

.pcard-link {
  display: inline-block;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 800;
  text-decoration: underline;
  margin: -8px 0 20px;
}
.pcard-consult-lead .pcard-link { color: #f5c84a; }

/* ── Feature list ──────────────────────────────── */
.pfeats {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pfeat {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-body-size);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}
.pfeat-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.pfeat-ok .pfeat-icon { background: #b5811f; color: #fff; }
.pfeat-no .pfeat-icon { background: #e0d0b8; color: #8a7a6a; }
.pfeat-no .pfeat-txt { color: #9a8878; }
.pcard-full .pfeat-ok .pfeat-icon { background: rgba(181,129,31,.55); }
.pcard-full .pfeat-txt { color: #d4c4a4; }
.pcard-demo .pfeat-no .pfeat-icon { background: rgba(0,0,0,.08); color: rgba(0,0,0,.3); }
.pcard-demo .pfeat-no .pfeat-txt { color: #9a8878; }

/* ── Plan buttons ──────────────────────────────── */
.pbtn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-small-size);
  font-weight: 900;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: box-shadow 0.15s, background 0.15s;
  margin-top: auto;
}
.pbtn-demo { background: rgba(181,129,31,.14); color: #6b4a10; border: 1.5px solid rgba(181,129,31,.4); }
.pbtn-demo:hover { background: rgba(181,129,31,.24); border-color: rgba(181,129,31,.7); }
.pbtn-full { background: linear-gradient(90deg, #c99a2e, #8a5800); color: #fff; }
.pbtn-full:hover { box-shadow: 0 8px 24px rgba(181,122,30,.45); }

/* ── Validity banner (large, prominent, under the grid) ────────────────── */
.ph-validity-banner {
  max-width: var(--pub-prose-width);
  margin: 24px auto 0;
  padding: 18px 26px;
  background: #1c1308;
  border-radius: 16px;
  text-align: center;
}
.ph-validity-banner p {
  margin: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-body-size);
  font-weight: 700;
  line-height: var(--pub-body-lh);
  color: #f5e6c4;
}
.ph-validity-banner p + p { margin-top: 8px; }

/* ── AI footnote (plain paragraph, normal reading size — not fine print) ── */
.ph-ai-footnote {
  max-width: var(--pub-prose-width);
  margin: 20px auto 0;
  padding: 0 20px;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-body-size);
  line-height: var(--pub-body-lh);
  color: #4a3820;
  text-align: center;
}

.p-faq {
  max-width: var(--pub-prose-width);
  margin: 32px auto 0;
  padding: 0 20px;
}
.p-faq-q {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: var(--pub-body-size);
  color: #4a4335;
  line-height: var(--pub-body-lh);
  text-align: center;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 960px) {
  .ph-plans-in-consult { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ph-headline { font-size: 24px; }
  .ph-hero { padding: 28px 20px 22px; }
  .ph-plans { padding: 24px 20px 14px; }
  .ph-plans-in { grid-template-columns: 1fr; }
  .ph-validity-banner { margin-left: 20px; margin-right: 20px; }
}
