/* ============================================================
   PARTNER PAGE — pitch + tiers + proof + FAQ
   Brand tokens live in css/styles.css.
   ============================================================ */

body { background: var(--soft); }

/* ── HERO (CoCE-style entry glow + headline + 4 proof stats) ─ */
.pn-hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--nav-height) + 56px) var(--section-pad-h) 80px;
  overflow: hidden;
  background: var(--soft);
}
.pn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 140% 40% at 50% -8%,
      rgba(124,58,237,0.38) 0%,
      rgba(124,58,237,0.22) 14%,
      rgba(124,58,237,0.10) 28%,
      rgba(124,58,237,0.04) 40%,
      transparent 50%),
    radial-gradient(ellipse 60% 48% at -5% -5%,
      rgba(124,58,237,0.24) 0%,
      rgba(124,58,237,0.14) 22%,
      rgba(124,58,237,0.06) 45%,
      rgba(124,58,237,0.015) 65%,
      transparent 78%);
}
.pn-hero-inner {
  position: relative; z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.pn-hero .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-hero h1 {
  font-family: var(--font-body);
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 22px;
  text-wrap: balance;
}
.pn-hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.pn-hero p.pn-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--mid);
  max-width: 620px;
  margin: 0 auto 40px;
}

.pn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.pn-stat {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 22px 18px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pn-stat:hover {
  transform: translateY(-2px);
  border-color: var(--purple-mid);
}
.pn-stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--purple);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.pn-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.4;
}


/* ── PROOF SECTION (the why-now case) ─────────────────────── */
.pn-proof {
  background: white;
  padding: 100px var(--section-pad-h);
  position: relative;
}
.pn-proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pn-proof-text .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-proof-text h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}
.pn-proof-text h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.pn-proof-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--mid);
  margin: 0 0 16px;
}
.pn-proof-text p strong { color: var(--ink); font-weight: 600; }

.pn-proof-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pn-proof-point {
  background: var(--lavender);
  border-radius: 14px;
  padding: 18px;
}
.pn-proof-point-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}
.pn-proof-point-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}


/* ── TIERS SECTION ────────────────────────────────────────── */
.pn-tiers {
  background: var(--cream);
  padding: 100px var(--section-pad-h);
  position: relative;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.pn-tiers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pn-tiers-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pn-tiers-head .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-tiers-head h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}
.pn-tiers-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.pn-tiers-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

.pn-tiers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.pn-tier-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 32px 30px 30px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pn-tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple-mid);
  box-shadow: 0 18px 40px rgba(28,18,41,0.08);
}
.pn-tier-card--feature {
  border: 2px solid var(--purple);
  background: linear-gradient(180deg, white 0%, rgba(124,58,237,0.025) 100%);
}
.pn-tier-card--feature::before {
  content: 'Most popular';
  position: absolute;
  top: -12px; right: 24px;
  background: var(--purple);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.pn-tier-head { margin-bottom: 22px; }
.pn-tier-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
  display: inline-block;
}
.pn-tier-name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.pn-tier-pitch {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mid);
  margin: 0;
}

.pn-tier-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 18px;
}
.pn-tier-price-prefix {
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}
.pn-tier-price-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -1.5px;
}
.pn-tier-price-suffix {
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}

.pn-tier-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.pn-tier-stats span {
  font-size: 11.5px;
  font-weight: 600;
  background: var(--lavender);
  color: var(--purple2);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.pn-tier-includes-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.pn-tier-includes {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.pn-tier-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mid);
  margin-bottom: 9px;
  padding-left: 0;
}
.pn-tier-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: var(--lavender);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237C3AED' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4,8 7,11 12,5'/%3E%3C/svg%3E");
  background-size: contain;
}

.pn-tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--hairline);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pn-tier-cta:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.pn-tier-card--feature .pn-tier-cta {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}
.pn-tier-card--feature .pn-tier-cta:hover {
  background: var(--purple2);
  border-color: var(--purple2);
  box-shadow: 0 14px 30px rgba(124,58,237,0.3);
}
.pn-tier-cta svg {
  width: 12px; height: 12px;
  stroke: currentColor; stroke-width: 2.5; fill: none;
  transition: transform 0.2s ease;
}
.pn-tier-cta:hover svg { transform: translateX(3px); }

.pn-tiers-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pn-tiers-footnote strong { color: var(--ink); font-weight: 600; }


/* ── BENEFITS GRID (3 columns) ────────────────────────────── */
.pn-benefits {
  background: white;
  padding: 100px var(--section-pad-h);
}
.pn-benefits-inner { max-width: var(--max-w); margin: 0 auto; }
.pn-benefits-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pn-benefits-head .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-benefits-head h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}
.pn-benefits-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}
.pn-benefits-head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}

.pn-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pn-benefit-tile {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pn-benefit-tile:hover {
  transform: translateY(-2px);
  border-color: var(--purple-mid);
}
.pn-benefit-icon {
  width: 44px; height: 44px;
  background: var(--lavender);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.pn-benefit-icon svg {
  width: 20px; height: 20px;
  stroke: var(--purple); stroke-width: 2;
  fill: none;
}
.pn-benefit-tile h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.pn-benefit-tile p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
}


/* ── FAQ ─────────────────────────────────────────────────── */
.pn-faq {
  background: var(--soft);
  padding: 100px var(--section-pad-h);
  position: relative;
}
.pn-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pn-faq-head { text-align: center; margin-bottom: 48px; }
.pn-faq-head .section-label {
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-faq-head h2 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.pn-faq-head h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
}

.pn-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pn-faq-item {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.pn-faq-item.open { border-color: var(--purple-mid); }
.pn-faq-q {
  width: 100%;
  background: white;
  border: 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--plum);
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.2px;
  line-height: 1.4;
}
.pn-faq-q:hover { color: var(--purple); }
.pn-faq-q-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--lavender);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.pn-faq-q-icon svg {
  width: 12px; height: 12px;
  stroke: var(--purple); stroke-width: 2.5;
  fill: none;
}
.pn-faq-item.open .pn-faq-q-icon { transform: rotate(45deg); background: var(--purple); }
.pn-faq-item.open .pn-faq-q-icon svg { stroke: white; }
.pn-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pn-faq-a-inner {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--mid);
}
.pn-faq-a-inner p { margin: 0 0 12px; }
.pn-faq-a-inner p:last-child { margin-bottom: 0; }
.pn-faq-a-inner strong { color: var(--ink); font-weight: 600; }
.pn-faq-item.open .pn-faq-a { max-height: 800px; }


/* ── FINAL CTA ────────────────────────────────────────────── */
.pn-final {
  background: var(--ink);
  color: white;
  padding: 100px var(--section-pad-h);
  position: relative;
  overflow: hidden;
}
.pn-final::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%,
      rgba(124,58,237,0.32) 0%,
      rgba(124,58,237,0.14) 30%,
      transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 5%,
      rgba(124,58,237,0.18) 0%,
      transparent 60%);
}
.pn-final-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.pn-final .section-label {
  color: var(--purple-mid);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: inline-block;
}
.pn-final h2 {
  font-family: var(--font-body);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 600;
  color: white;
  letter-spacing: -1.4px;
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}
.pn-final h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}
.pn-final p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pn-final-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pn-final-cta:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(124,58,237,0.4);
}
.pn-final-cta svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 2.2; fill: none;
  transition: transform 0.2s ease;
}
.pn-final-cta:hover svg { transform: translateX(3px); }


/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pn-stats { grid-template-columns: repeat(2, 1fr); }
  .pn-proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .pn-tiers-grid { grid-template-columns: 1fr; }
  .pn-benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pn-hero { padding: calc(var(--nav-height) + 36px) 20px 56px; }
  .pn-proof,
  .pn-tiers,
  .pn-benefits,
  .pn-faq,
  .pn-final { padding: 64px 20px; }
  .pn-stats { gap: 12px; }
  .pn-stat-num { font-size: 30px; }
  .pn-proof-points { grid-template-columns: 1fr; }
  .pn-tier-card { padding: 26px 22px 24px; }
  .pn-tier-card--feature::before { right: 16px; }
}
