/*
Theme Name: BullMentor
Theme URI: https://bullmentor.com
Author: BullMentor Inc.
Description: Custom enterprise theme for BullMentor.
Version: 1.0.0
License: Proprietary
Text Domain: bullmentor
*/

/* ============================================================
   TOKENS & RESET
   ============================================================ */
:root {
  --blue:          #0C1461;
  --blue-hover:    #0E1438;
  --purple:        #6C3483;
  --purple-hover:  #3A1052;
  --purple-light:  #C49FDC;
  --text:          #324A6D;
  --bg-grey:       #F4F4F4;
  --white:         #ffffff;
  --border:        #dde2ef;
  --shadow:        0 2px 12px rgba(26,35,126,0.08);
  --radius:        8px;
  --max-w:         1440px;
  --font:          'Inter', -apple-system, sans-serif;
  --font-serif:    'Inter Display', Inter, -apple-system, sans-serif;

  /* type scale */
  --fs-h1:       clamp(2.4rem, 4.5vw, 4.0625rem); /* 65px — hero headlines */
  --fs-h2:       clamp(2.25rem, 4vw, 3.25rem);    /* 52px — section headings */
  --fs-h3:       clamp(1.25rem, 2vw, 1.625rem);   /* 26px — subheadings */
  --fs-box:      1.375rem;                          /* 22px */
  --fs-subtitle: var(--fs-h3);                      /* alias → subheading */
  --fs-body:     1rem;                              /* 16px */
  --fs-accent:   1rem;                              /* 16px */

  --fw-light:    300;
  --fw-regular:  400;
  --fw-heading:  500;                               /* unified section heading weight */
  --fw-semi:     600;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font); font-size: var(--fs-body); font-weight: var(--fw-light); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--fw-heading);
  color: var(--blue);
  letter-spacing: -0.025em;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 48px; }
.bm-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 48px;
}
@media (max-width: 767px) {
  .container { padding-inline: 24px; }
  .bm-container { padding-inline: 24px; }
}
.section { padding-block: 72px; }
.section--grey  { background: var(--bg-grey); }
.section--white { background: var(--white); }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(90deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SCROLL REVEAL — shared fade-up system
   ============================================================ */
.bm-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.bm-reveal.is-visible { opacity: 1; transform: none; }

/* staggered grid/list: parent gets .bm-stagger, each child gets .bm-item + style="--i:N" */
.bm-stagger .bm-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.bm-stagger.is-visible .bm-item { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .bm-reveal, .bm-stagger .bm-item {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: var(--fw-semi);
  font-size: var(--fs-accent);
  cursor: pointer;
  transition: background .18s, transform .18s;
  border: 2px solid transparent;
  line-height: 1.4;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--primary         { background: var(--blue);   color: #fff; border-color: var(--blue); }
.btn--primary:hover   { background: var(--blue-hover); border-color: var(--blue-hover); }
.btn--purple          { background: var(--purple); color: #fff; border-color: var(--purple); }
.btn--purple:hover    { background: var(--purple-hover); border-color: var(--purple-hover); }
.btn--outline-white   { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 15px 36px; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.site-header__inner {
  display: flex; align-items: center;
  height: 72px;
  padding-inline-end: 0;
}

/* Logo */
.site-logo {
  display: flex; align-items: center;
}
.site-logo:hover { text-decoration: none; opacity: .9; }
.site-logo__img { height: 40px; width: auto; display: block; }
.footer-logo__img { height: 32px; width: auto; display: block; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  font-size: var(--fs-accent); font-weight: var(--fw-regular); color: var(--text);
  padding: 6px 14px; border-radius: 6px;
  transition: color .15s;
  position: relative;
}
.site-nav a:hover { color: var(--blue); text-decoration: none; }
.site-nav a.current-menu-item { color: var(--blue); font-weight: 600; }
.site-nav a.current-menu-item::after {
  content: '';
  position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--blue); border-radius: 2px;
}

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: 40px; }
.btn--login         { background: var(--purple); color: #fff; border-color: var(--purple); padding: 9px 22px; font-size: var(--fs-accent); }
.btn--login:hover   { background: var(--purple-hover); border-color: var(--purple-hover); }
.btn--signup        { background: var(--purple); color: #fff; border-color: var(--purple); padding: 9px 22px; font-size: var(--fs-accent); }
.btn--signup:hover  { background: var(--purple-hover); border-color: var(--purple-hover); }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--blue); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; margin-left: 6px; }
  .site-logo { margin-right: auto; }
  .site-header__actions { margin-left: 6px; gap: 4px; margin-right: 4px; }
  .btn--login  { padding: 7px 10px; font-size: 12px; flex: 1; text-align: center; justify-content: center; white-space: nowrap; }
  .btn--signup { padding: 7px 10px; font-size: 12px; flex: 1; text-align: center; justify-content: center; white-space: nowrap; }
  .site-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    padding: 16px 24px; gap: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 12px; }
}

/* ============================================================
   HERO  — dark gradient, matches live site
   ============================================================ */
.hero {
  background: linear-gradient(160deg, #0E1438 0%, #7b1fa2 100%);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
  text-align: center;
  color: #fff;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .82rem; font-weight: 600;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-semi);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* First line of hero title — flex row keeps word slot vertically centred */
.hero__title-row {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* rotating word slot — no-JS fallback */
.hero-word-slot {
  color: var(--purple);
}

/* JS-activated: fixed inline-block container for crossfade */
.hero-word-slot.is-animated {
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* width + height set by JS; flex parent centres vertically */
}

.hero-word-slot.is-animated .hero-word {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  color: var(--purple);
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}

/* state classes toggled by JS */
.hero-word.hw-cur  { opacity: 1; transform: translateY(0);    }
.hero-word.hw-nxt  { opacity: 0; transform: translateY(8px);  }
.hero-word.hw-exit { opacity: 0; transform: translateY(-8px); }

@media (prefers-reduced-motion: reduce) {
  .hero-word-slot.is-animated .hero-word { transition: none; }
}

.hero__subtitle {
  font-size: var(--fs-subtitle);
  font-weight: var(--fw-light);
  color: #fff;
  margin-bottom: 10px;
}

.hero__tagline {
  font-size: .9rem;
  font-style: italic;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero__cta .btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  font-size: 1rem;
  padding: 14px 36px;
}
.hero__cta .btn--primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

/* ============================================================
   CREDIBILITY BAND
   ============================================================ */
.credibility-band {
  background: #fff;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  text-align: center;
}
.credibility-band__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.credibility-band__logo {
  height: 36px;
  width: auto;
  display: block;
  filter: grayscale(100%) opacity(0.55);
  mix-blend-mode: multiply;
  transition: filter 0.2s ease;
}
.credibility-band__logo:hover {
  filter: grayscale(0%) opacity(1);
}
.credibility-band__logo--sm {
  height: 18px;
}
.credibility-band__logo--square {
  height: 56px;
  width: 56px;
}
.credibility-band__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  text-wrap: balance;
  max-width: 24ch;
  margin-inline: auto;
}
.credibility-band__headline span {
  color: var(--purple);
}
@media (max-width: 1024px) {
  .credibility-band__logos { gap: 1.5rem; }
}
@media (max-width: 767px) {
  .credibility-band { padding-top: 2rem; padding-bottom: 3rem; }
  .credibility-band__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem 1rem;
    justify-items: center;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  /* Uniform height for all logos in the grid */
  .credibility-band__logo,
  .credibility-band__logo--sm,
  .credibility-band__logo--square {
    height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
}

/* ============================================================
   HOW IT WORKS — step strip (homepage)
   ============================================================ */
.hiw-strip {
  background: #fff;
  padding-block: 4rem;
  text-align: center;
}
.hiw-strip__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.hiw-strip__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  text-wrap: balance;
  margin-bottom: 3rem;
}
.hiw-strip__steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.hiw-strip__step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hiw-strip__num {
  font-size: 32px;
  font-weight: 500;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hiw-strip__label {
  font-size: var(--fs-box);
  font-weight: var(--fw-heading);
  letter-spacing: -0.01em;
  color: var(--blue);
}
.hiw-strip__chevron {
  font-size: 22px;
  color: var(--purple);
  line-height: 1;
}
.hiw-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 3rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--purple);
  text-decoration: none;
  border-bottom: 0.5px solid var(--purple);
  padding-bottom: 2px;
}
.hiw-strip__link:hover {
  color: var(--purple-hover);
  border-bottom-color: var(--purple-hover);
  text-decoration: none;
}
@media (max-width: 640px) {
  .hiw-strip { padding-block: 2.5rem; }
  .hiw-strip__steps { gap: 1.25rem; }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: #fff; padding-block: 72px; }
.how-it-works__intro {
  font-size: var(--fs-body); font-weight: var(--fw-light); color: var(--text);
  max-width: 780px; margin-inline: auto;
  margin-bottom: 56px;
  line-height: 1.7;
}
.how-it-works__intro a { color: var(--purple); font-weight: 600; }

.steps-row {
  display: flex; align-items: flex-start;
  gap: 0; justify-content: center;
}
.step {
  flex: 1; text-align: center; padding-inline: 20px;
  position: relative;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.step:hover { transform: translateY(-4px); }
.step__img {
  height: 200px; width: auto;
  object-fit: contain; margin: 0 auto 24px;
  position: relative; z-index: 1;
  transition: transform .45s cubic-bezier(.16,1,.3,1), filter .35s ease;
}
.step:hover .step__img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 12px 20px rgba(26,35,126,.15));
}
.step__title { font-size: var(--fs-h3); font-weight: var(--fw-heading); color: var(--blue); margin-bottom: 10px; }
.step__desc  { font-size: 1.05rem; font-weight: var(--fw-light); color: var(--text); line-height: 1.65; }

.step-chevron {
  font-size: 3rem; color: var(--blue);
  flex-shrink: 0; padding-top: 100px;
  font-weight: 900; line-height: 1;
}

@media (max-width: 768px) {
  .steps-row { flex-direction: column; align-items: center; gap: 32px; }
  .step-chevron { transform: rotate(90deg); padding-top: 0; }
}

/* ============================================================
   FREE INTRO SESSION
   ============================================================ */

/* ============================================================
   OUR MENTORS — carousel
   ============================================================ */
.our-mentors { background: #fff; padding-block: 72px 40px; }
.our-mentors__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1rem;
}
.our-mentors__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  text-align: left;
  margin-bottom: 48px;
}

.mentor-carousel { position: relative; overflow: hidden; }
.mentor-track {
  display: flex;
  transition: transform .4s ease;
}
.mentor-card {
  flex: 0 0 calc(100% / 3);
  padding: 12px;
}
.mentor-card__inner {
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  height: 100%;
}
.mentor-card__photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  filter: grayscale(100%);
}
.mentor-card__name {
  font-size: var(--fs-box); font-weight: var(--fw-semi);
  color: var(--text); margin-bottom: 10px;
}
.mentor-card__badge-img {
  height: 28px; width: auto; margin: 0 auto 16px;
}
.mentor-card__badge {
  display: block;
  width: 80px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 0;
  border-radius: 20px;
  margin: 0 auto 16px;
}
.mentor-card__badge--expert,
.mentor-card__badge--pro,
.mentor-card__badge--newcomer { background: #3A1052; }
.mentor-card__detail {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--text);
  margin-bottom: 6px; justify-content: center;
}
.mentor-card__detail-icon {
  width: 16px; height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.mentor-card__divider {
  border: none; border-top: 1px solid var(--border);
  margin: 14px 0;
}
.mentor-card__price {
  font-size: 1rem; color: var(--purple); font-weight: 700;
  margin-bottom: 16px;
}
.mentor-card__price span { font-size: 1.4rem; }
.mentor-card__btn {
  display: block; width: 100%;
  background: var(--blue); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 11px; font-size: .93rem; font-weight: 600;
  cursor: pointer; font-family: var(--font);
  text-align: center; transition: opacity .18s;
}
.mentor-card__btn:hover { background: var(--blue-hover); text-decoration: none; }

/* Carousel controls */
.carousel-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-top: 28px;
}
.carousel-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--blue);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .15s;
}
.carousel-btn:hover { background: var(--bg-grey); }
.carousel-dots { display: flex; gap: 8px; }
.mentor-dot, .company-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #d0d5e8; border: none; cursor: pointer;
  transition: background .2s;
}
.mentor-dot.active, .company-dot.active { background: var(--blue); }

@media (max-width: 900px) {
  .mentor-card { flex: 0 0 50%; }
}
@media (max-width: 768px) {
  .mentor-card { flex: 0 0 100%; }
  .our-mentors { padding-block: 40px 32px; }
}

/* ============================================================
   VERIFICATION / PROFITABLE TRADERS ONLY
   ============================================================ */
.verification {
  background: #fff; padding-block: 24px 24px;
}
.verification__card {
  background: var(--blue);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: var(--max-w);
  margin-inline: auto;
}
.verification__content { flex: 1; }
.verification__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-semi); color: #fff;
  margin-bottom: 16px; line-height: 1.25;
}
.verification__title em { font-style: normal; }
.verification__body {
  font-size: .97rem; color: #fff;
  line-height: 1.7;
}
.verification__badge {
  width: 160px; height: auto; flex-shrink: 0;
}


@media (max-width: 768px) {
  .verification__card { flex-direction: column; align-items: center; padding: 32px 24px; text-align: center; }
  .verification__badge { width: 120px; order: -1; }
}

/* ============================================================
   COMPANIES
   ============================================================ */
.companies { background: #fff; padding-block: 20px 28px; }
.companies__title {
  font-size: var(--fs-h3); font-weight: var(--fw-heading);
  color: var(--blue); text-align: center;
  margin-bottom: 36px;
}
.company-carousel { position: relative; overflow: hidden; }
.company-track { display: flex; transition: transform .4s ease; align-items: center; }
.company-slide {
  flex: 0 0 calc(100% / 3);
  display: flex; justify-content: center; align-items: center;
  padding: 12px 32px;
}
.company-slide img { max-height: 48px; width: auto; filter: grayscale(1); opacity: .78; transition: opacity .2s, filter .2s; }
.company-slide img:hover { opacity: 1; filter: none; }
.company-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 20px;
}

/* ============================================================
   TAGLINE — find a mentor / book a session / trade better
   ============================================================ */
/* Section wrapper — single unified background */
.tagline-section {
  background: #fff;
  padding-block: 40px 48px;
}

/* Two-column grid: chart left, right-wrapper (text + CTA) right */
.tagline-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: stretch;
  gap: 64px;
}

/* Chart — left column, sizes naturally to SVG aspect ratio */
.tagline-block__chart {
  position: relative;
  min-height: 0;
}
.chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Chart initial states (before animation triggers) ── */
.chart-line {
  stroke-dasharray: 310;
  stroke-dashoffset: 310;
}
.chart-fill { opacity: 0; }
.chart-dot  { opacity: 0; }
.chart-halo { opacity: 0; transform-origin: 290px 30px; }

/* ── Animated states (class added by IntersectionObserver) ── */
.tagline-block.is-visible .chart-line {
  animation: bm-line-draw 1.5s ease-out forwards;
}
.tagline-block.is-visible .chart-fill {
  animation: bm-fade-in 0.4s ease-out 1.5s forwards;
}
.tagline-block.is-visible .chart-dot {
  animation: bm-fade-in 0.3s ease-out 1.9s forwards;
}
.tagline-block.is-visible .chart-halo {
  animation: bm-pulse 2s ease-in-out 2.1s infinite;
}

/* ── Keyframes ── */
@keyframes bm-line-draw {
  from { stroke-dashoffset: 310; }
  to   { stroke-dashoffset: 0; }
}
@keyframes bm-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bm-pulse {
  0%,  100% { transform: scale(1);   opacity: 0.2; }
  50%        { transform: scale(1.4); opacity: 0; }
}

/* ── Reduced-motion: show final state immediately ── */
@media (prefers-reduced-motion: reduce) {
  .chart-line { stroke-dashoffset: 0 !important; }
  .chart-fill { opacity: 1 !important; }
  .chart-dot  { opacity: 1 !important; }
  .chart-halo { opacity: 0.2 !important; animation: none !important; }
  .tagline-block.is-visible .chart-line,
  .tagline-block.is-visible .chart-fill,
  .tagline-block.is-visible .chart-dot { animation: none !important; }
}

/* Right wrapper — flex column so CTA pins to the chart bottom */
.tagline-block__right {
  display: flex;
  flex-direction: column;
}
.tagline-block__text {
  display: flex;
  flex-direction: column;
}
/* CTA pushed to the bottom of the right column, matching chart bottom */
.tagline-block__cta {
  margin-top: auto;
  padding-top: 2rem;
  align-self: start; /* shrink to text width so border-bottom doesn't span full column */
}
.tagline-line { font-size: var(--fs-h2); font-weight: 500; color: var(--blue); line-height: 1.3; }
.tagline-line--purple { color: var(--purple); }

@media (max-width: 768px) {
  .tagline-block { display: flex; flex-direction: column; gap: 40px; }
  .tagline-section { padding-block: 56px; }
  /* Dissolve the right wrapper so chart can slot between text and CTA */
  .tagline-block__right { display: contents; }
  .tagline-block__text  { order: 1; }
  .tagline-block__chart { order: 2; min-height: 200px; }
  .tagline-block__cta   { order: 3; margin-top: 0; padding-top: 0; }
}

/* ============================================================
   FAQ  — accordion
   ============================================================ */
.faq-section { background: #fff; padding-block: 72px; }
.faq-section__title {
  font-size: var(--fs-h2);
  font-weight: 500; color: var(--blue);
  text-align: center; margin-bottom: 40px;
}
.faq-list {
  max-width: 860px; margin-inline: auto;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
  width: 100%; text-align: left;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  transition: color .15s;
  font-family: var(--font); font-size: .97rem; font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-item__q::after {
  content: '+'; font-size: 1.3rem; font-weight: 400;
  color: var(--blue); flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.is-open .faq-item__q::after { content: '−'; }
.faq-item__q:hover { color: var(--blue); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  font-size: .92rem; color: var(--text); line-height: 1.65;
  padding: 0 24px;
}
.faq-item.is-open .faq-item__a { padding-bottom: 18px; }

.faq-support-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-top: 28px;
}
.faq-support {
  text-align: left;
  margin: 0;
  font-size: .82rem;
  color: rgba(50,74,109,.5);
}
.faq-support__link {
  color: rgba(50,74,109,.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.faq-support__link:hover { color: var(--purple); }

/* FAQ grouped (mentors + HIW pages) */
.bam-faq-groups { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 3rem; }
.bam-faq-group .faq-list {
  max-width: none;
  margin-inline: 0;
}
.bam-faq-group {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}
.bam-faq-group__label {
  font-size: var(--fs-body);
  font-weight: var(--fw-semi);
  line-height: 1.6;
  color: var(--blue);
  margin: 0;
  padding-top: 0;
}
@media (max-width: 860px) {
  .bam-faq-group { grid-template-columns: 1fr; gap: 1rem; }
  .bam-faq-group__label { padding-top: 0; }
  .faq-support-row { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .bam-faq-groups { gap: 2rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-grey);
  padding-block: 72px;
}
.testimonials-section__eyebrow {
  font-size: .75rem; font-weight: var(--fw-semi);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple); text-align: center; margin-bottom: 10px;
}
.testimonials-section__title {
  font-size: var(--fs-h2); font-weight: 500;
  color: var(--blue); text-align: center; margin-bottom: 48px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

/* Scroll-triggered fade-up — initial hidden state */
.testi-card {
  background: #fff;
  border: 0.5px solid rgba(26,35,126,.08);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
  transition-delay: calc(var(--stagger, 0) * 100ms);
}
.testi-grid.is-visible .testi-card {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .testi-card { transition: none; }
}

.testi-card__quote {
  font-size: .9rem; line-height: 1.6;
  color: var(--text); font-weight: var(--fw-light);
  margin: 0 0 16px;
  flex: 1;
}
.testi-card__footer {
  display: flex; flex-direction: column; gap: 10px;
}
.testi-card__attr {
  display: flex; flex-direction: column; gap: 2px;
}
.testi-card__name {
  font-size: .875rem; font-weight: var(--fw-semi); color: var(--text);
}
.testi-card__meta {
  font-size: .75rem; color: rgba(50,74,109,.6);
}
.testi-card__stars {
  display: flex; gap: 3px; align-items: center;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CLOSING CTA — minimal white
   ============================================================ */
.closing-cta {
  background: #fff;
  padding-block: 5rem;
  text-align: center;
}
.closing-cta__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  color: var(--blue);
  line-height: 1.2;
  text-wrap: balance;
  margin-bottom: 1rem;
}
.closing-cta__title span { color: var(--purple); }
.closing-cta__sub {
  font-size: 1rem;
  color: var(--text);
  max-width: 44ch;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.closing-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.closing-cta__actions .hiw-strip__link {
  margin-top: 0;
}
.closing-cta__btn {
  display: inline-block;
  background: var(--purple); color: #fff;
  font-size: .9rem; font-weight: 600;
  padding: 13px 32px; border-radius: 6px;
  text-decoration: none; transition: background .15s;
}
.closing-cta__btn:hover { background: var(--purple-hover); }

/* ============================================================
   FOOTER — unified navy
   ============================================================ */
.site-footer {
  background: #0E1438;
  padding-block: 60px 40px;
  color: #fff;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand__logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo__img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.footer-brand__logo:hover .footer-logo__img {
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.footer-brand__disclaimer {
  font-size: .8rem; color: #fff;
  line-height: 1.65; max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: #fff;
  opacity: 1;
  transition: opacity .2s ease;
  text-decoration: none;
}
.footer-social a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social a:hover { opacity: 0.75; }

.footer-col h4 {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: .875rem; color: #fff;
  text-decoration: none; transition: opacity .15s;
}
.footer-col a:hover { opacity: 0.75; }

.site-footer__divider {
  border: none;
  border-top: 0.5px solid rgba(255,255,255,.12);
  margin: 0 0 24px;
}
.site-footer__copy {
  font-size: .78rem; color: rgba(255,255,255,.45); text-align: center;
}

@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-grey);
  border-bottom: 1px solid var(--border);
  padding-block: 5rem;
  min-height: 320px;
}
.page-hero__eyebrow {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.page-hero__title {
  font-size: var(--fs-h2);
  font-weight: 500; color: var(--blue);
  margin-bottom: 14px; line-height: 1.2;
}
.page-hero__sub {
  font-size: var(--fs-h3); color: var(--text);
  line-height: 1.65;
}

/* ============================================================
   SECTION INTRO BLOCK (eyebrow / headline / subhead)
   Reusable across pages — .bm-apply__intro, .bm-apply__eyebrow etc.
   ============================================================ */
.bm-apply__intro {
  max-width: 720px;
  margin-bottom: 5rem;
}
.bm-apply__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #6C3483;
  margin-bottom: 1.5rem;
}
.bm-apply__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #0C1461;
  margin-bottom: 1.25rem;
}
.bm-apply__subhead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(50,74,109,0.7);
}
@media (max-width: 767px) {
  .bm-apply__intro { margin-bottom: 3rem; }
}

/* ============================================================
   INNER PAGE SECTIONS
   ============================================================ */
.section__eyebrow {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.section__title {
  font-size: var(--fs-h2);
  font-weight: 500; color: var(--blue);
  margin-bottom: 14px; line-height: 1.2;
}
.section__subtitle {
  font-size: 1rem; color: var(--text);
  margin-bottom: 36px; line-height: 1.65;
}

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 32px; }
.benefit-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: #fff;
  border: 1px solid var(--border); border-radius: 12px;
}
.benefit-item__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item__title { font-weight: 700; color: var(--text); margin-bottom: 5px; font-size: .95rem; }
.benefit-item__desc  { font-size: .88rem; color: var(--text); }

@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }

/* Tiers */
.tiers { display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap; }
.tier {
  flex: 1; min-width: 180px;
  background: #fff; border: 2px solid var(--border);
  border-radius: 12px; padding: 24px; text-align: center;
}
.tier--pro    { border-color: var(--purple); }
.tier--expert { border-color: var(--blue); }
.tier__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin-bottom: 6px; }
.tier__title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.tier__desc  { font-size: .83rem; color: var(--text); }

/* Privacy grid */
.privacy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.privacy-item { padding: 26px 20px; background: #fff; border: 1px solid var(--border); border-radius: 12px; text-align: center; }
.privacy-item__icon  { font-size: 1.6rem; margin-bottom: 10px; }
.privacy-item__title { font-weight: 700; color: var(--text); margin-bottom: 6px; }
.privacy-item__desc  { font-size: .86rem; color: var(--text); }
@media (max-width: 640px) { .privacy-grid { grid-template-columns: 1fr; } }

/* App steps */
.app-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; max-width: 680px; }
.app-step { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.app-step__num { width: 34px; height: 34px; border-radius: 50%; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .88rem; flex-shrink: 0; }
.app-step__title { font-weight: 700; color: var(--text); margin-bottom: 3px; font-size: .95rem; }
.app-step__desc  { font-size: .86rem; color: var(--text); }

/* About page */
.about-stat-row { display: flex; gap: 24px; margin-top: 40px; flex-wrap: wrap; }
.about-stat { flex: 1; min-width: 150px; text-align: center; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 26px 16px; }
.about-stat__number { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.about-stat__label  { font-size: .83rem; color: var(--text); }

.founder-card { display: flex; gap: 28px; align-items: flex-start; margin-top: 40px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.founder-card__photo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.founder-card__name { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.founder-card__role { font-size: .83rem; color: var(--purple); font-weight: 600; margin-bottom: 10px; }
.founder-card__bio  { font-size: .9rem; color: var(--text); line-height: 1.65; }
@media (max-width: 600px) { .founder-card { flex-direction: column; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; margin-top: 40px; }
.contact-info__item { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: .93rem; color: var(--text); }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .86rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 13px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font); font-size: .93rem; color: var(--text); outline: none; transition: border-color .15s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,35,126,.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Generic page */
.page-content { padding-block: 60px; }
.page-content h1, .page-content h2, .page-content h3 { color: var(--text); margin-bottom: 10px; margin-top: 28px; }
.page-content p { margin-bottom: 14px; font-size: .95rem; line-height: 1.7; }

/* Legal */
.legal-content { max-width: 760px; margin-inline: auto; padding-block: 60px; }
.legal-content h2 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-top: 32px; margin-bottom: 10px; }
.legal-content p, .legal-content li { font-size: .92rem; color: var(--text); line-height: 1.7; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }

/* ============================================================
   BECOME A MENTOR — HERO
   ============================================================ */
.bam-hero {
  background: #0E1438;
  padding-block: 5rem;
  min-height: 540px;
}
.bam-hero__grid {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.bam-hero__copy { flex: 1; }
.bam-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #C49FDC;
  margin-bottom: 22px;
}
.bam-hero__headline {
  font-size: var(--fs-h1);
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  max-width: 820px;
  margin-bottom: 24px;
}
.bam-hero__sub {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  max-width: 580px;
  margin-bottom: 36px;
}
.bam-hero__badge-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
}
.bam-hero__badge {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.3));
}
@media (max-width: 1024px) {
  .bam-hero { padding-block: 4rem; }
  .bam-hero__badge { width: 160px; }
  .bam-hero__sub { max-width: 100%; }
}
@media (max-width: 768px) {
  .bam-hero { padding-block: 3rem; }
  .bam-hero__grid { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .bam-hero__badge-wrap { display: none; }
  .bam-hero__sub { max-width: 100%; }
}

/* ============================================================
   BECOME A MENTOR — MISSION (pay it forward)
   ============================================================ */
.bam-mission {
  background: #fff;
  padding-block: 5rem 2.5rem;
}
.bam-mission__eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 1.5rem;
}
.bam-mission__eyebrow.bam-mission__eyebrow--mob { display: none; }
.bam-mission__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.bam-mission__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.bam-mission__copy {
  max-width: 600px;
}
.bam-mission__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--blue);
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.bam-mission__headline span { color: var(--purple); }
.bam-mission__p1 {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--blue);
  margin: 0 0 1rem;
}
.bam-mission__p2 {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
@media (max-width: 1024px) {
  .bam-mission__grid { grid-template-columns: 300px 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .bam-mission { padding-block: 3rem 1.5rem; }
  .bam-mission__grid { grid-template-columns: 1fr; gap: 1rem; }
  .bam-mission__photo { max-width: 100%; aspect-ratio: 4/3; }
  .bam-mission__copy { max-width: 100%; }
  .bam-mission__eyebrow.bam-mission__eyebrow--mob { display: block; margin-bottom: 0; }
  .bam-mission__copy .bam-mission__eyebrow:not(.bam-mission__eyebrow--mob) { display: none; }
}

/* ============================================================
   HOW IT WORKS — HERO
   ============================================================ */
.hiw-hero {
  padding-block: 4rem;
  background: #0E1438; /* full-width navy — applied to section, not container */
  min-height: 540px;
}
.hiw-hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left: copy — top-aligned, optically nudged down to sit against demo box */
.hiw-hero__copy { padding-top: 32px; }

.hiw-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: #C49FDC;
  margin-bottom: 18px;
}
.hiw-hero__headline {
  font-size: var(--fs-h1);
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.hiw-hero__sub {
  font-size: 15px;
  color: #fff;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 32px;
}
.hiw-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--white {
  background: #fff;
  color: var(--blue);
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: 500;
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--blue);
}

/* Right: filter demo box */
.hiw-hero__demo { display: flex; justify-content: flex-end; }
.fd-box {
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 26px;
}

/* Section spacing */
.fd-section { margin-bottom: 12px; }
.fd-section--budget { margin-bottom: 14px; }

/* Labels */
.fd-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}

/* Pills */
.fd-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.fd-pill {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  cursor: default;
  transition: background-color 300ms ease-out, color 300ms ease-out, border-color 300ms ease-out;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  border: 0.5px solid rgba(255,255,255,0.15);
}
.fd-pill.is-active {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

/* Budget slider */
.fd-budget-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.fd-budget-value {
  font-size: 10px;
  color: #fff;
  font-weight: 500;
}
.fd-slider-wrap {
  position: relative;
  height: 18px;
  margin-bottom: 14px;
}
.fd-track-bg {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}
.fd-track-fill {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width 500ms ease-in-out;
  width: 0%;
}
.fd-handle {
  position: absolute;
  top: 50%;
  width: 12px; height: 12px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transform: translateY(-50%) translateX(-50%);
  transition: left 500ms ease-in-out;
  left: 0%;
}

/* Result label */
.fd-result-label {
  font-size: 11px;
  color: #C49FDC;
  margin-bottom: 8px;
  min-height: 16px;
}

/* Mentor list — fixed height: 3 cards × 46px (26px avatar + 20px padding) + 2 × 6px gap = 150px */
.fd-mentor-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 150px;
  overflow: hidden;
  transition: opacity 200ms ease, transform 200ms ease;
}
.fd-mentor-list.is-hiding {
  opacity: 0;
  transform: translateY(4px);
}
.fd-mentor-list.is-showing {
  opacity: 1;
  transform: translateY(0);
}
.fd-mentor-card {
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fd-mentor-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fd-mentor-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.fd-mentor-name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}
.fd-verified {
  font-size: 11px;
  color: #C49FDC;
}

/* Responsive */
@media (max-width: 1024px) {
  .hiw-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hiw-hero { padding-block: 3rem; }
  .hiw-hero__demo { justify-content: center; }
  .fd-box { max-width: 100%; }
}
@media (max-width: 768px) {
  .hiw-hero { padding-block: 2.5rem; }
  .fd-box { padding: 18px; }
}

/* Reduced-motion: no transitions on filter demo */
@media (prefers-reduced-motion: reduce) {
  .fd-pill,
  .fd-track-fill,
  .fd-handle,
  .fd-mentor-list { transition: none !important; }
}

/* ============================================================
   HOW IT WORKS — JOURNEY SECTION
   ============================================================ */
.hiw-journey {
  background: #fff;
  padding-block: 5rem;
}
.hiw-journey__header {
  max-width: 620px;
  margin-bottom: 3rem;
}
.hiw-journey__headline {
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 0;
}
.hiw-journey__subline {
  font-size: 1rem;
  color: rgba(50,74,109,0.65);
  line-height: 1.5;
  margin-top: 8px;
}

/* Align cards to left edge, matching the headline — scoped so homepage is unaffected */
.hiw-journey .steps-row { justify-content: flex-start; }

/* Step cards — reuse .step__img and .step-chevron from homepage */
.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.hiw-step:hover { transform: translateY(-4px); }
.hiw-step:hover .step__img {
  transform: scale(1.06) translateY(-6px);
  filter: drop-shadow(0 12px 20px rgba(26,35,126,.15));
}
.hiw-step__label {
  font-size: var(--fs-h3);
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  color: var(--blue);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}
.hiw-step__body {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(50,74,109,0.7);
  max-width: 280px;
  margin: 0 auto;
  font-weight: var(--fw-light);
}

@media (max-width: 1024px) {
  .hiw-journey { padding-block: 3.5rem; }
}
@media (max-width: 768px) {
  .hiw-journey { padding-block: 2.5rem; }
  .hiw-journey__header { margin-bottom: 2rem; }
}
@media (max-width: 640px) {
  .hiw-journey { padding-block: 2rem; }
}

/* ============================================================
   HOW IT WORKS — VERIFICATION SECTION
   ============================================================ */
.hiw-verification {
  background: #fff;
  padding-block: 3rem;
}

/* Pill card */
.hiw-verification__pill {
  background: var(--blue);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin-inline: auto;
}

/* Left: copy */
.hiw-verification__copy { flex: 1; }

.hiw-verification__eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: #C49FDC;
  margin-bottom: 14px;
}
.hiw-verification__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
/* Trust Guarantee — light purple, no gradient */
.hiw-verification__pill .text-gradient {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--purple-light);
  background-clip: unset;
  color: var(--purple-light);
}
.hiw-verification__body {
  font-size: 15px;
  line-height: 1.65;
  color: #fff;
  max-width: 540px;
  margin-bottom: 28px;
  font-weight: var(--fw-light);
}

/* Tiers inline */
.hiw-tiers {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 0.5px solid rgba(255,255,255,0.15);
  padding-top: 20px;
}
.hiw-tier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.hiw-tier__title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}
.hiw-tier__sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: var(--fw-light);
}

/* Right: badge — pushed to far right edge of pill */
.hiw-verification__badge-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.hiw-verification__badge {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
}

/* Responsive */
@media (max-width: 1024px) {
  .hiw-verification { padding-block: 3.5rem; }
  .hiw-verification__pill { padding: 36px 40px; gap: 36px; }
  .hiw-verification__badge { width: 130px; }
}
@media (max-width: 768px) {
  .hiw-verification { padding-block: 2.5rem; }
  .hiw-verification__pill {
    flex-direction: column;
    align-items: center;
    padding: 32px 28px;
    gap: 28px;
    border-radius: 16px;
    text-align: center;
  }
  .hiw-verification__badge-wrap { order: -1; margin-left: 0; justify-content: center; } /* badge above copy on mobile, centered */
  .hiw-verification__badge { width: 110px; }
  .hiw-tiers { justify-content: center; flex-wrap: nowrap; gap: 0; }
  .hiw-tier { flex: 1; align-items: center; text-align: center; padding-inline: 8px; border-right: 0.5px solid rgba(255,255,255,0.15); }
  .hiw-tier:last-child { border-right: none; }
}

/* ============================================================
   HOW IT WORKS — WHY A MENTOR (CHART) SECTION
   ============================================================ */
.hiw-why {
  background: #fff;
  padding-block: 5rem;
}
.hiw-why__header {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}
.hiw-why__headline {
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 12px;
  text-align: center;
}
.hiw-why__subline {
  font-size: 15px;
  color: rgba(50,74,109,0.65);
  line-height: 1.6;
}

/* Chart grid */
.hiw-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Chart card */
.hiw-chart-card {
  background: var(--bg-grey);
  border-radius: 12px;
  padding: 24px;
}
.hiw-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.hiw-chart-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(50,74,109,0.6);
}
.hiw-chart-label--purple { color: var(--purple); }
.hiw-chart-stat {
  font-size: 14px;
  font-weight: 500;
}
.hiw-chart-stat--red    { color: #DC3545; }
.hiw-chart-stat--purple { color: var(--purple); }

/* Chart canvas */
.hiw-chart-canvas {
  background: #fff;
  border-radius: 10px;
  padding: 18px 10px 24px 38px;
}

/* Candle animation */
.hiw-candle {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 200ms ease, transform 200ms ease;
}
.hiw-candle.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .hiw-candle { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Caption */
.hiw-chart-caption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(50,74,109,0.7);
}
.hiw-chart-caption--blue { color: var(--blue); }

/* Disclaimer */
.hiw-disclaimer {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(50,74,109,0.5);
  font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
  .hiw-why { padding-block: 3.5rem; }
  .hiw-chart-card { padding: 20px; }
}
@media (max-width: 768px) {
  .hiw-why { padding-block: 2.5rem; }
  .hiw-why__headline { font-size: clamp(1.5rem, 6vw, 2.25rem); }
  .hiw-chart-grid { grid-template-columns: 1fr; }
  .hiw-chart-canvas { padding-left: 32px; }
}

/* ============================================================
   BLOG POST GUTENBERG BUTTON — match site .btn--purple style
   ============================================================ */
.wp-block-button__link.wp-element-button {
  font-family: var(--font) !important;
  font-weight: var(--fw-semi) !important;
  font-size: var(--fs-accent) !important;
  border-radius: var(--radius) !important;
  padding: 12px 28px !important;
  line-height: 1.4 !important;
  border: 2px solid var(--purple) !important;
  background-color: var(--purple) !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: background .18s, border-color .18s, transform .18s !important;
  display: inline-block !important;
}
.wp-block-button__link.wp-element-button:hover {
  background-color: var(--purple-hover) !important;
  border-color: var(--purple-hover) !important;
  color: #fff !important;
  transform: translateY(-1px);
  text-decoration: none !important;
}
