/* ============================================================
   Leader Guide landing page — Influence 51
   ============================================================ */

/* --- HERO EXTRAS --- */
.lg-hero__meta {
  margin-top: clamp(28px, 3vw, 40px);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.lg-hero__meta span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.35);
}

/* --- WHAT'S INSIDE (WHITE) --- */
.lg-inside {
  background: #fff;
  padding: clamp(80px, 10vw, 120px) 0;
}

.lg-inside__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.lg-inside__head .chip { margin-bottom: 20px; }
.lg-inside__head .section-intro { color: #555; margin-top: 16px; }

.lg-principles {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  display: grid;
  gap: clamp(20px, 2.5vw, 32px);
}

.lg-principle {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
  padding: clamp(24px, 3vw, 36px);
  background: #fafafb;
  border: 1px solid #eeecf5;
  border-radius: 12px;
  transition: border-color 200ms ease, transform 200ms ease;
}

.lg-principle:hover {
  border-color: #6600FF;
  transform: translateY(-2px);
}

.lg-principle__num {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  color: #6600FF;
  letter-spacing: -0.02em;
}

.lg-principle__title {
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
  margin: 0 0 10px;
}

.lg-principle__lede {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  color: #333;
  margin: 0;
}

@media (max-width: 640px) {
  .lg-principle { grid-template-columns: 1fr; gap: 12px; }
  .lg-principle__num { font-size: 28px; }
}

/* --- PREVIEW (WHITE, ICP feature layout) --- r21f, tightened r21h --- */
.lg-preview.lg-preview--feature {
  background: #fff;
  padding: clamp(56px, 6vw, 88px) 0 clamp(40px, 5vw, 64px);
  border-top: 1px solid #eeecf5;
}

.lg-preview.lg-preview--feature .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter, 24px);
}

/* --- FINAL CTA (DARK, centered) --- r21f ---
   Reuses base .cta (already dark + centered).
   The Book a Call button uses .btn--primary-dark (purple). */
.lg-final-cta .cta__body {
  text-align: center;
}

/* r21h — tighten What's Inside top padding since Preview sits directly above */
#inside.beliefs.beliefs--onlight {
  padding-top: clamp(24px, 3vw, 48px);
}

/* ============================================================
   r21g — Signature Framework ("beliefs") — ported from
   /services/for-individuals/styles.css so this page can use
   the same numbered-card block without leaking other selectors.
   ============================================================ */
.beliefs {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 112px 0;
  overflow: hidden;
}

.beliefs::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(102, 0, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.beliefs .container { position: relative; z-index: 1; }

.beliefs__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.beliefs__head .chip {
  margin-bottom: 20px;
  color: var(--accent);
  border-color: var(--accent);
}

.beliefs__head h2 { color: var(--white); margin-bottom: 20px; }

.beliefs__head h2 .thin,
.beliefs__head h2 .bold { color: var(--white); }

.beliefs__list {
  list-style: none;
  margin: 0 auto;
  padding: 64px 0 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.belief {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.belief:first-child { border-top: none; padding-top: 16px; }

.belief__num {
  font-family: var(--ff);
  font-weight: 300;
  font-size: 100px;
  line-height: 1;
  color: rgba(102, 0, 255, 0.48);
  letter-spacing: 0.01em;
  user-select: none;
}

.belief__copy h3 {
  font-family: var(--ff);
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.75rem);
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.belief__copy h3 .thin { font-weight: 300; }

.belief__copy h3 .bold { font-weight: 700; }

.belief__copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 768px) {
  .beliefs { padding: 80px 0; }

  .belief {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .belief__num { font-size: 72px; }
}

.belief__hl {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  padding: 0 0.18em 0.04em;
  line-height: 0.95;
  vertical-align: baseline;
  font-weight: 700;
}

/* R24 — Leader Guide hero: per-word pills, no orphaned 'a', natural flow.
   Structure is now flat inline; the pill wraps only its own word. */
.lg-hero__title {
  text-wrap: balance;
}
.lg-hero__title .thin,
.lg-hero__title .bold {
  display: inline;
}
.lg-hero__title .hilite-pill {
  display: inline-block !important;
  width: auto !important;
  max-width: max-content !important;
  padding: 0 0.16em 0.06em !important;
  border-radius: 8px !important;
  line-height: 0.95 !important;
  background: var(--accent) !important;
  color: #fff !important;
}

.beliefs__cta {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.beliefs__cta-copy {
  margin: 0;
  color: var(--white-72);
  font-size: 16px;
  line-height: 1.5;
  max-width: 620px;
}

.beliefs__bridge {
  font-family: var(--ff);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.45;
  color: var(--white);
  text-align: center;
  max-width: 620px;
  margin: 14px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.beliefs__bridge .thin { font-weight: 300; color: rgba(255, 255, 255, 0.72); }

.beliefs__bridge .bold { font-weight: 700; color: var(--white); }


/* =========================================================
   r21e — Five Principles white/light variant
   Black card numerals + more vibrant purple accents.
   ========================================================= */

.beliefs.beliefs--onlight {
  background: var(--white);
  color: var(--ink);
}

/* r21f — no purple glow on the light variant */
.beliefs.beliefs--onlight::before {
  background: none;
  content: none;
}

.beliefs.beliefs--onlight .beliefs__head h2,
.beliefs.beliefs--onlight .beliefs__head h2 .thin,
.beliefs.beliefs--onlight .beliefs__head h2 .bold {
  color: var(--ink);
}

/* accent chip more vibrant */
.beliefs.beliefs--onlight .beliefs__head .chip {
  color: var(--accent, #6600FF) !important;
  border-color: var(--accent, #6600FF) !important;
}

/* r21f — larger number cards, matching original block scale */
.beliefs.beliefs--onlight .belief {
  grid-template-columns: 140px 1fr;
  gap: 40px;
  border-top: 1px solid rgba(20, 20, 20, 0.10);
  align-items: center;
}

.beliefs.beliefs--onlight .belief__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent, #6600FF);
  background: #000;
  border-radius: 12px;
  letter-spacing: 0;
}

.beliefs.beliefs--onlight .belief__copy h3 {
  color: var(--ink);
}

.beliefs.beliefs--onlight .belief__copy p {
  color: rgba(20, 20, 20, 0.72);
}

/* Highlight pill stays vibrant purple */
.beliefs.beliefs--onlight .belief__hl {
  background: var(--accent, #6600FF);
  color: #fff;
}

.beliefs.beliefs--onlight .beliefs__cta-copy {
  color: rgba(20, 20, 20, 0.72);
}

.beliefs.beliefs--onlight .beliefs__bridge {
  color: var(--ink);
  border-top: 1px solid rgba(20, 20, 20, 0.14);
}

.beliefs.beliefs--onlight .beliefs__bridge .thin {
  color: rgba(20, 20, 20, 0.72);
}

.beliefs.beliefs--onlight .beliefs__bridge .bold {
  color: var(--ink);
}

@media (max-width: 768px) {
  .beliefs.beliefs--onlight .belief {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .beliefs.beliefs--onlight .belief__num {
    width: 88px;
    height: 88px;
    font-size: 40px;
  }
}