/**
 * PARTNER PROGRAM PAGE: styles unique to public/partner-program.html
 * (the referral program page, linked from the nav as "Partner"). The nav
 * bar and footer on this page reuse nav.css/footer.css, same as
 * index.html; this file only covers the content in between: the
 * intro/hero, the "how it works" steps, the eligibility/payout details,
 * and the final call-to-action.
 *
 * NOTE: this is a DIFFERENT page from partner.html. That one is the
 * private lead-submission form for partners who already have a token
 * (see partner.html's own header). This page is the public, nav-linked
 * page that explains the program and invites people to join it.
 *
 * EDIT THIS FILE WHEN YOU WANT TO:
 *   - change the intro heading/subtext: .pp-hero;
 *   - change the "how it works" numbered steps: .pp-step (.pp-num is
 *     the "01"/"02"/"03" number, .pp-step-title/.pp-step-desc the text);
 *   - change the eligibility/payout text: .pp-details;
 *   - change the final call-to-action: .pp-final (its glow/heading
 *     treatment is deliberately modeled on index.html's Contact/Quote
 *     section, see css/marketing/contact.css's .contact/.contact-h for
 *     the pattern this borrows from).
 *
 * Requires base.css to be linked first.
 */

.pp-hero { padding-top: 168px; padding-bottom: 64px; text-align: center; }
.pp-hero .wrap { max-width: 720px; }
.pp-hero h1 {
  font-family: var(--display); font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  margin: 14px 0 18px;
}
.pp-hero h1 span { color: var(--accent); }
.pp-hero p { font-size: 1rem; color: var(--text-3); line-height: 1.7; max-width: 560px; margin: 0 auto 30px; }

/* ── HOW IT WORKS ───────────────────────────────────
   A 3-step numbered list, similar in spirit to the About section's
   process card on the homepage, but its own independent styles here:
   this page doesn't load about.css. */
.pp-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.pp-step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
}
.pp-num {
  font-family: var(--display); font-size: 1.6rem; font-weight: 800;
  color: var(--accent); letter-spacing: -.03em; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.pp-step-title { font-family: var(--display); font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.pp-step-desc { font-size: .87rem; color: var(--text-3); line-height: 1.65; }

/* ── DETAILS (eligibility, payout terms) ────────────── */
.pp-details { max-width: 720px; }
.pp-details h2 { margin-bottom: 18px; }
.pp-details-list { display: flex; flex-direction: column; gap: 20px; }
.pp-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.pp-detail-ico {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
  background: var(--accent-dim); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: .9rem;
}
.pp-detail-text { font-size: .9rem; color: var(--text-3); line-height: 1.7; }
.pp-detail-text strong { color: var(--text); font-weight: 600; }

/* ── FINAL CALL TO ACTION ────────────────────────────
   Deliberately reuses index.html's Contact/Quote section's visual
   language (see css/marketing/contact.css's .contact/.contact::before/
   .contact-in/.contact-h) rather than this page's earlier boxed-card
   style: the same soft green glow anchored toward the bottom of the
   section, the same centered oversized heading with a green closing
   phrase, no bordered card, no form. */
.pp-final { position: relative; overflow: hidden; }
.pp-final::before {
  content: ''; position: absolute; bottom: -180px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 1000px; pointer-events: none;
  background: radial-gradient(ellipse 68% 62% at 50% 80%, rgba(0,255,140,.24) 0%, rgba(0,255,140,.08) 50%, transparent 72%);
}
.pp-final-in { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto; }
.pp-final-h {
  font-family: var(--display); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.035em; margin: 10px 0 18px;
}
.pp-final-h span { color: var(--accent); }
.pp-final-sub { font-size: .98rem; color: var(--text-3); line-height: 1.7; max-width: 480px; margin: 0 auto 30px; }
/* Small, muted link under the button. The email address is a fallback
   contact route now, not the primary visual element it used to be. */
.pp-final-email { font-size: .86rem; color: var(--text-3); margin-top: 20px; }
.pp-final-email a { color: var(--text-2); text-decoration: underline; text-decoration-color: var(--border-mid); text-underline-offset: 4px; transition: color .2s; }
.pp-final-email a:hover { color: var(--accent-lt); }

@media (max-width: 860px) {
  .pp-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pp-hero { padding-top: 140px; }
  /* The word "opportunities?" is wider than a narrow phone screen at the
     desktop clamp() size above, and .pp-final's overflow:hidden (needed
     to clip the glow) silently cuts it off instead of wrapping or
     scrolling. Shrinking the heading here keeps every line inside the
     visible width. */
  .pp-final-h { font-size: clamp(1.7rem, 8vw, 2.2rem); }
}
