/* =========================================================
   Influence 51 — Home page prototype
   Strict palette: #000 / #FFF / #6600FF (+ rgba alphas only).
   Type: Futura PT (Adobe Typekit) — thin (300) + bold (700).
   ========================================================= */

:root {
  /* Palette — ONLY these three + alphas */
  --ink:     #000000;
  --white:   #FFFFFF;
  --accent:  #6600FF;
  --accent-hover: #7A1AFF;

  /* Alphas on black (for use on white backgrounds) */
  --ink-90: rgba(0,0,0,.90);
  --ink-72: rgba(0,0,0,.72);
  --ink-55: rgba(0,0,0,.55);
  --ink-30: rgba(0,0,0,.30);
  --ink-12: rgba(0,0,0,.12);
  --ink-08: rgba(0,0,0,.08);
  --ink-06: rgba(0,0,0,.06);

  /* Alphas on white (for use on black backgrounds) */
  --white-90: rgba(255,255,255,.90);
  --white-72: rgba(255,255,255,.72);
  --white-55: rgba(255,255,255,.55);
  --white-30: rgba(255,255,255,.30);
  --white-15: rgba(255,255,255,.15);

  /* Accent alphas */
  --accent-35: rgba(102,0,255,.35);
  --accent-18: rgba(102,0,255,.18);
  --accent-15: rgba(102,0,255,.15);
  --accent-08: rgba(102,0,255,.08);
  --accent-06: rgba(102,0,255,.06);

  /* Typography */
  --ff: "futura-pt","Futura","Century Gothic","Avenir Next","Helvetica Neue",Arial,sans-serif;

  /* Layout */
  --content-max: 1240px;
  --gutter: 24px;
  --gutter-mobile: 20px;

  /* Motion */
  --ease: cubic-bezier(.16,1,.3,1);
  --t: 280ms var(--ease);
  --t-fast: 180ms var(--ease);

  /* Section padding */
  --sec-y: clamp(80px, 10vw, 140px);
  --sec-y-thin: clamp(64px, 7vw, 96px);
}

/* =========================================================
   Base reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  font-family: var(--ff);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--t), border-color var(--t), background var(--t); }
h1, h2, h3, h4 { font-family: var(--ff); line-height: 1.05; text-wrap: balance; }
p { text-wrap: pretty; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 640px) {
  .container { padding-inline: var(--gutter-mobile); }
}

/* =========================================================
   Typography primitives — the signature thin+bold treatment
   ========================================================= */
.display {
  font-family: var(--ff);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.02;
  font-size: clamp(2rem, 1.2rem + 3.8vw, 4rem); /* 32 → 64 */
  color: var(--ink);
}
.display--center { text-align: center; }
.display--xl {
  font-size: clamp(2.5rem, 1.6rem + 4.4vw, 4.5rem); /* 40 → 72 */
}
.display .thin { font-weight: 300; }
.display .bold { font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow--on-dark { color: var(--accent); }

.section-head { margin-bottom: clamp(48px, 6vw, 72px); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { display: inline-block; }
.section-intro {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--ink-72);
  font-size: 18px;
  line-height: 1.65;
}

.hairline {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}
.bignum {
  position: absolute;
  font-family: var(--ff);
  font-weight: 300;
  font-size: clamp(100px, 14vw, 180px);
  line-height: 1;
  color: var(--accent-08);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 420px) {
  .btn { font-size: 12px; letter-spacing: 0.12em; padding: 14px 18px; white-space: normal; }
}

/* On white */
.btn--primary-light { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--primary-light:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: var(--ink); border-color: var(--ink-30); }
.btn--ghost-light:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* On black */
.btn--primary-dark { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary-dark:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.btn--ghost-dark { background: transparent; color: var(--white); border-color: var(--white-30); }
.btn--ghost-dark:hover { border-color: var(--white); transform: translateY(-1px); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 4px;
  transition: color var(--t), border-color var(--t);
}
.arrow-link:hover { color: var(--accent); border-color: var(--accent); }
.arrow-link span { transition: transform var(--t); }
.arrow-link:hover span { transform: translateX(4px); }

.center-row { display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px); }

/* =========================================================
   Reveal animation (IntersectionObserver)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  border-bottom: 1px solid var(--white-15);
}
.nav__inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__logo {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--white);
}
.nav__links {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  margin-left: auto;
}
.nav__links a {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-72);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--white); }
.nav__links a.is-active { position: relative; }
.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
}
.nav__cta {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 16px;
  border: 1px solid var(--white-30);
  border-radius: 2px;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.nav__cta:hover { border-color: var(--accent); color: var(--white); background: var(--accent); }

.nav__menu {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--t), opacity var(--t);
}
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--ink);
  z-index: 55;
  padding: 40px var(--gutter-mobile);
}
.nav__mobile nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav__mobile a {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile.is-open { display: block; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: inline-flex; }
}

/* =========================================================
   HERO (dark, full viewport)
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: var(--ff);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.25rem, 0.9rem + 4.5vw, 4.75rem); /* 36 → 76 */
  line-height: 1.02;
  letter-spacing: 0.015em;
  color: var(--white);
}
.hero__title .line {
  display: block;
  white-space: nowrap;
}
@media (max-width: 520px) {
  /* r6-home: scale up hero title on mobile so it lands as true hero copy.
     'CHANGE BEHAVIOR' is the longest line (15 chars + space). At Futura PT
     bold ~7.4vw, that line just fits a 390px viewport with side gutters.
     We use clamp() so it still scales generously up to the 520px breakpoint.
     line-height bumped to 1.18 so each line breathes and reads with gravity. */
  .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); letter-spacing: 0.002em; line-height: 1.18; }
  .hero__title .line { white-space: nowrap; display: block; margin-bottom: 0.12em; }
  .hero__title .line:last-child { margin-bottom: 0; }
  /* r5-home: center hero CTAs on mobile so they sit under the lede block */
  .hero__ctas { justify-content: center; }
  .hero__ctas .btn { width: 100%; max-width: 320px; text-align: center; }
}
@media (max-width: 380px) {
  /* Very narrow phones (e.g. iPhone SE): pull back so the longest line still
     fits on one row with breathing room on either side. */
  .hero__title { font-size: clamp(1.7rem, 7.6vw, 2.2rem); letter-spacing: 0; }
}
.hero__title .thin { font-weight: 300; }
.hero__title .bold { font-weight: 700; }

.hero__lede {
  margin-top: 28px;
  max-width: 68ch;
  color: var(--white-72);
  font-size: clamp(17px, 1rem + 0.25vw, 21px);
  line-height: 1.55;
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--white-15);
}
.hero__stamp-thin {
  font-family: var(--ff);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.hero__stamp-dash {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--white-30);
}
.hero__stamp-chip {
  display: inline-block;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 6px 12px;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__brain {
  width: 100%;
  max-width: 540px;
  height: auto;
  filter: drop-shadow(0 0 80px rgba(102,0,255,.25));
}

@media (max-width: 860px) {
  .hero { padding: 48px 0 56px; min-height: auto; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero__visual { order: -1; }
  .hero__brain { max-width: 300px; }
  .hero__stamp { margin-top: 36px; }
}

/* =========================================================
   Client logo wall — auto-scrolling marquee (white)
   ========================================================= */
.logos {
  background: var(--white);
  /* Round 4: small bit of breathing room restored between logo wall and Meet section */
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--accent-18);
  overflow: hidden;
}
.logos__label {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}
.logos__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Soft fade at edges so logos enter/exit gracefully */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.logos__track {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: max-content;
  animation: logos-scroll var(--logos-speed, 55s) linear infinite;
}
.logos__track > li {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Uniform cell width — every logo sits in the same-sized box, so optical spacing between marks is identical regardless of logo aspect ratio */
  width: 280px;
  min-height: 120px;
}
.logos__track img {
  max-width: var(--w, 180px);
  max-height: var(--h, 88px);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter 300ms var(--ease);
  display: block;
}
.logos__track img:hover {
  filter: grayscale(0) opacity(1);
}
.logos__marquee:hover .logos__track {
  animation-play-state: paused;
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logos__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}
@media (max-width: 820px) {
  .logos { padding: 48px 0; }
  .logos__track { animation-duration: 45s; }
  .logos__track > li { width: 200px; min-height: 88px; }
  .logos__track img {
    max-width: calc(var(--w, 180px) * 0.72);
    max-height: calc(var(--h, 88px) * 0.72);
  }
}

/* =========================================================
   Note (signature message from JRT)
   ========================================================= */
.note {
  padding: var(--sec-y) 0;
  background: var(--white);
}
.note__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.note__body {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(0px, 4vw, 72px);
}
.note .bignum {
  top: -20px;
  left: -20px;
}
@media (max-width: 820px) {
  .note .bignum { top: -12px; left: 0; font-size: 110px; }
}
.note__para {
  color: var(--ink-72);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.note__pull {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
  line-height: 1.2;
  color: var(--accent);
  margin: 28px 0 40px;
  letter-spacing: -0.005em;
}
.note__sig {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 24px;
}
.note__signoff {
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 32px;
  text-align: right;
  max-width: fit-content;
}
.note__signoff .note__signature {
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 4px;
}
.note__signoff .note__sig {
  margin-top: 0;
  margin-bottom: 0;
  text-align: right;
}

/* =========================================================
   Three-card grids (What We Do, Audiences)
   ========================================================= */
.what, .offer, .audience, .resources {
  padding: var(--sec-y) 0;
  background: var(--white);
  border-top: 1px solid var(--accent-18);
}

.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 900px) { .three-grid { grid-template-columns: 1fr; } }

.card, .panel {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t), transform var(--t);
}
.card:hover, .panel:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card__num, .panel__num {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.card__title, .panel__title {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(18px, 1rem + 0.4vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.card p, .panel p {
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.6;
}

.three-grid--tall .panel {
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  min-height: 320px;
}
.three-grid--tall .panel__title {
  font-size: clamp(20px, 1rem + 0.8vw, 26px);
  margin-top: 8px;
}

/* =========================================================
   Pull testimonial (50/50 split — big logo left, quote right)
   ========================================================= */
.pull {
  /* tightened top gap between preceding section and the testimonial */
  padding: 48px 0 96px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.pull__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
/* Standardized black accents across all three pulls */
/* Eyebrow pill is horizontally centered over the logo column (matches .pull__split’s 1fr column) */
.pull__eyebrow-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  margin-bottom: 40px;
}
.pull__eyebrow {
  justify-self: center;
  display: inline-block;
  font-family: var(--ff);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.pull__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ink);
  margin-bottom: 44px;
}
.pull__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.pull__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.pull__logo {
  display: block;
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pull__content {
  text-align: left;
}
.pull__quote {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
}
.pull__qmark {
  display: inline;
  color: var(--accent);
  font-size: 1em;
  font-weight: 700;
}
.pull__attr {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.5;
  max-width: 480px;
  margin: 0;
}
@media (max-width: 900px) {
  .pull { padding: 36px 0 64px; }
  .pull__eyebrow-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 28px; }
  .pull__eyebrow { font-size: 10px; }
  .pull__inner::before { margin-bottom: 32px; }
  .pull__split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .pull__logo-wrap {
    min-height: 160px;
  }
  .pull__logo {
    max-height: 140px;
  }
  .pull__content {
    text-align: center;
  }
  .pull__quote {
    font-size: 2rem;
  }
  .pull__attr {
    margin-left: auto;
    margin-right: auto;
  }
}

/* BBBSA logo-specific cap — matches visual weight of McDonald's/Wallace marks */
.pull__logo--bbbsa {
  max-width: 260px !important;
  max-height: 160px !important;
}
@media (max-width: 900px) {
  .pull__logo--bbbsa {
    max-width: 200px !important;
    max-height: 120px !important;
  }
}



/* =========================================================
   Big cards (Offer, Resources)
   ========================================================= */
.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
}
@media (max-width: 820px) { .two-grid { grid-template-columns: 1fr; } }

.bigcard {
  padding: clamp(36px, 4vw, 56px);
  background: var(--white);
  border: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.bigcard:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.bigcard__eyebrow {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.bigcard__title {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(22px, 1rem + 1.2vw, 30px);
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
}
.bigcard p {
  color: var(--ink-72);
  font-size: 17px;
  line-height: 1.65;
}
.bigcard .btn, .bigcard .arrow-link {
  align-self: flex-start;
  margin-top: 8px;
}

/* =========================================================
   Bio
   ========================================================= */
.bio {
  padding: var(--sec-y) 0;
  background: var(--white);
  border-top: 1px solid var(--accent-18);
}
.bio__inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.bio__photo {
  position: relative;
  max-width: 440px;
  width: 100%;
}
.bio__photo img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.bio__frame {
  position: absolute;
  inset: 0;
  transform: translate(12px, 12px);
  border: 1px solid var(--accent);
  pointer-events: none;
}
.bio__copy h2 { margin-bottom: 24px; }
.bio__copy .eyebrow { color: var(--accent); font-size: 12px; line-height: 1.2; margin-bottom: 20px; }
.bio__copy p {
  color: var(--ink-72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.bio__copy p:last-of-type { margin-bottom: 28px; }
.bio__copy .hilite {
  color: var(--accent);
  font-weight: 700;
}
.bio__copy .btn { margin-top: 8px; }

@media (max-width: 860px) {
  .bio__inner { grid-template-columns: 1fr; }
  .bio__photo { max-width: 360px; }
}

/* =========================================================
   Trusted-by logo wall (mirrors About page "A Short List of
   the People We Serve." grid). Used in the home Testimonials
   section as the social-proof bed above the carousel.
   ========================================================= */
.carousel-section .trusted__grid {
  max-width: 1120px;
  margin: 32px auto 40px;
  padding-inline: var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.carousel-section .trusted__grid > li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 16px 20px;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms var(--ease, ease);
}
.carousel-section .trusted__grid img {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 1;
  transition: transform 220ms var(--ease, ease);
}
.carousel-section .trusted__grid > li:hover img {
  transform: scale(1.04);
}
@media (max-width: 1100px) {
  .carousel-section .trusted__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 780px) {
  .carousel-section .trusted__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 12px;
    max-width: 720px;
  }
  .carousel-section .trusted__grid > li {
    min-height: 86px;
    padding: 6px 4px;
  }
  .carousel-section .trusted__grid img {
    max-height: 50px;
  }
}
/* Round 3: Home keeps 3-column logo grid at all mobile widths
   (matching About + ICP pages — user explicitly requested 3 cols on mobile) */

/* =========================================================
   Carousel
   ========================================================= */
.carousel-section {
  padding: var(--sec-y) 0;
  background: var(--white);
  border-top: 1px solid var(--accent-18);
}
.carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--ink-08);
}
.carousel:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.carousel__viewport {
  overflow: hidden;
  position: relative;
  min-height: 560px;
}
.carousel__track {
  display: flex;
  list-style: none;
  transition: transform 500ms var(--ease);
  will-change: transform;
  align-items: stretch;
}
.carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: opacity 500ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel__slide.is-active { opacity: 1; }
.carousel__quote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.carousel__logo {
  display: block;
  max-height: 120px;
  max-width: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto 40px;
}
.carousel__headline {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 32px;
}
.carousel__qmark {
  color: var(--accent);
  font-weight: 700;
}
.carousel__body {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 auto 28px;
  text-align: center;
  max-width: 780px;
}
.carousel__attr {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  line-height: 1.6;
  margin-top: 16px;
  max-width: 680px;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.carousel__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--ink-30);
  background: var(--white);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.carousel__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.carousel__dots {
  display: inline-flex;
  gap: 10px;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-12);
  transition: background var(--t), transform var(--t);
  padding: 0;
  border: 0;
}
.carousel__dot:hover { background: var(--ink-30); }
.carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 820px) {
  .carousel { padding: 28px 20px; max-width: 100%; }
  .carousel__viewport { min-height: auto; }
  .carousel__slide { padding: 20px 8px; max-width: 100%; }
}
@media (max-width: 640px) {
  .carousel__logo { max-height: 80px; max-width: 220px; margin-bottom: 28px; }
  .carousel__headline { font-size: 1.8rem; margin-bottom: 24px; }
  .carousel__body { font-size: 0.95rem; }
}

/* =========================================================
   Final CTA (dark)
   ========================================================= */
.cta {
  background: var(--ink);
  color: var(--white);
  padding: 160px 0;
  text-align: center;
}
.cta__inner { max-width: 760px; margin: 0 auto; padding-inline: var(--gutter); }
.cta .display { color: var(--white); margin-bottom: 24px; }
.cta__body {
  color: var(--white-72);
  font-size: 18px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 auto 36px;
}
.cta__btns {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta { padding: 96px 0; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__tag {
  color: var(--white-72);
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer__head {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__cols a {
  display: block;
  font-size: 14px;
  color: var(--white-72);
  padding: 4px 0;
}
.footer__cols a:hover { color: var(--white); }
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--white-15);
  font-family: var(--ff);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-55);
}
.footer__social { display: inline-flex; gap: 20px; }
.footer__social a { color: var(--white-72); }
.footer__social a:hover { color: var(--white); }

@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* =========================================================
   Signature image (note section)
   ========================================================= */
.note__signature {
  display: block;
  max-width: 220px;
  height: auto;
  margin: 0 0 8px 0;
}

/* =========================================================
   Practice-area card media (What We Do)
   ========================================================= */
.card--media { overflow: hidden; }
.card--media .card__media {
  aspect-ratio: 16 / 11;
  width: calc(100% + 2 * clamp(28px, 3vw, 40px));
  overflow: hidden;
  margin: calc(-1 * clamp(28px, 3vw, 40px)) calc(-1 * clamp(28px, 3vw, 40px)) 24px;
  border-bottom: 1px solid var(--ink-08);
  position: relative;
}
.card--media .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) saturate(.9);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.card--media:hover .card__media img {
  transform: scale(1.03);
}
.card--media .card__num {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  background: var(--accent);
  padding: 6px 10px;
  line-height: 1;
}

/* =========================================================
   Chip (small outlined pill)
   ========================================================= */
.chip {
  display: inline-block;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 14px;
  border: 1px solid var(--ink-30);
  border-radius: 999px;
  line-height: 1;
  background: var(--white);
}
.chip--on-dark { color: var(--white); border-color: var(--white-30); background: transparent; }

/* =========================================================
   Bigcard purple-numeral panel variant (For You / Your Org)
   ========================================================= */
.bigcard--panel .bigcard__panel {
  position: relative;
  height: 200px;
  width: calc(100% + 2 * clamp(36px, 4vw, 56px));
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 28px;
  border-bottom: 1px solid var(--ink-08);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bigcard__panel-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-weight: 300;
  font-size: 160px;
  line-height: 1;
  color: var(--accent-08);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
}
.bigcard__chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}
@media (max-width: 540px) {
  .bigcard--panel .bigcard__panel { height: 170px; }
  .bigcard__panel-num { font-size: 120px; }
}

/* =========================================================
   Bigcard PHOTO cover variant (For You / For Your Organization)
   Full-bleed real photography, no white-bleed blend.
   ========================================================= */
.bigcard--photo .bigcard__cover--photo {
  width: calc(100% + 2 * clamp(36px, 4vw, 56px));
  aspect-ratio: 16 / 11;
  overflow: hidden;
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 28px;
  border: none;
  border-radius: 0;
  background: var(--ink);
}
.bigcard--photo .bigcard__cover--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms var(--ease);
}
.bigcard--photo:hover .bigcard__cover--photo img {
  transform: scale(1.03);
}

/* =========================================================
   Bigcard cover image variant (Resources)
   seamless blend against white page
   ========================================================= */
.bigcard--cover .bigcard__cover {
  width: calc(100% + 2 * clamp(36px, 4vw, 56px));
  background: var(--white);
  padding: 24px 0;
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
}
.bigcard--cover .bigcard__cover img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 320px;
  margin: 0 auto;
  object-fit: contain;
  border: none;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

/* =========================================================
   Audiences carousel (8 panels, 3-up desktop / 1-up mobile)
   ========================================================= */
.aud-carousel {
  position: relative;
  margin-top: 8px;
}
.aud-carousel:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
.aud-carousel__viewport {
  overflow: hidden;
  position: relative;
}
.aud-carousel__track {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(20px, 2.5vw, 32px);
  transition: transform 500ms var(--ease);
  will-change: transform;
}
.aud-panel {
  flex: 0 0 calc((100% - clamp(20px, 2.5vw, 32px) * 2) / 3);
  min-width: 0;
  position: relative;
  background: var(--white);
  border: 1px solid var(--ink-08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 clamp(28px, 3vw, 36px);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.aud-panel:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.aud-panel__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--ink-08);
}
.aud-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.aud-panel:hover .aud-panel__media img {
  transform: scale(1.03);
}
.aud-panel__media--num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.aud-panel__bignum {
  font-family: var(--ff);
  font-weight: 300;
  font-size: 160px;
  line-height: 1;
  color: var(--accent-08);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
}
.aud-panel__num {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding: clamp(24px, 2.5vw, 32px) clamp(24px, 2.5vw, 32px) 0;
  text-transform: uppercase;
}
.aud-panel__title {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(18px, 1rem + 0.4vw, 22px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
  padding: 0 clamp(24px, 2.5vw, 32px);
}
.aud-panel p {
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.6;
  padding: 0 clamp(24px, 2.5vw, 32px);
}

/* Clickable audience card link wrapper */
.aud-panel__link {
  display: contents;
  color: inherit;
}
.aud-panel__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}
.aud-panel__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px clamp(24px, 2.5vw, 32px) 0;
  padding-top: 12px;
  border-top: 1px solid var(--ink-08);
  font-family: var(--ff);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  transition: transform var(--t), color var(--t);
}
.aud-panel__hint span[aria-hidden] {
  font-size: 14px;
  letter-spacing: 0;
  transition: transform var(--t);
}
.aud-panel:hover .aud-panel__hint span[aria-hidden] {
  transform: translateX(4px);
}
.aud-panel--compact .aud-panel__hint {
  font-size: 10px;
}
.aud-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.aud-carousel__arrow {
  width: 44px; height: 44px;
  border: 1px solid var(--ink-30);
  background: var(--white);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  transition: border-color var(--t), color var(--t), background var(--t);
  border-radius: 2px;
}
.aud-carousel__arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.aud-carousel__arrow[disabled] {
  opacity: .35;
  cursor: not-allowed;
}
.aud-carousel__dots {
  display: inline-flex;
  gap: 10px;
}
.aud-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-12);
  transition: background var(--t), transform var(--t);
  padding: 0;
  border: 0;
  cursor: pointer;
}
.aud-carousel__dot:hover { background: var(--ink-30); }
.aud-carousel__dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Audience CTA panel (bonus card filling dead space) — dark variant */
.aud-panel--cta {
  background: var(--ink);
  border: 1px solid var(--accent);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.aud-panel--cta:hover {
  border-color: var(--accent);
}
.aud-panel__cta-body {
  display: flex;
  flex-direction: column;
}
.aud-panel--cta .aud-panel__cta-eyebrow {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.aud-panel__cta-title {
  font-family: var(--ff);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 12px 0 16px;
  padding: 0;
}
.aud-panel--cta .aud-panel__cta-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0 0 28px;
  padding: 0;
}
.aud-panel__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aud-panel__cta-buttons .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .aud-panel {
    flex: 0 0 100%;
  }
  .aud-panel__bignum { font-size: 140px; }
  .aud-panel--cta {
    min-height: 360px;
  }
}

/* =========================================================
   Resources — dark variant (home page rhythm break)
   ========================================================= */
.resources--dark {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}
.resources--dark .section-head .eyebrow { color: var(--accent); }
.resources--dark .display,
.resources--dark .display .thin,
.resources--dark .display .bold { color: var(--white); }

.resources--dark .bigcard--on-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.resources--dark .bigcard--on-dark:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,.06);
}
.resources--dark .bigcard--on-dark .bigcard__eyebrow { color: var(--accent); }
.resources--dark .bigcard--on-dark .bigcard__title { color: var(--white); }
.resources--dark .bigcard--on-dark p { color: rgba(255,255,255,.72); }

/* Cover image on dark — sits in a crisp white plate with generous, symmetric padding.
   The source images have baked-in whitespace, so we use equal padding on the plate
   and cap the image width so it sits visually centered within the card. */
.resources--dark .bigcard--on-dark .bigcard__cover {
  background: var(--white);
  width: calc(100% + 2 * clamp(36px, 4vw, 56px));
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 32px;
  padding: 40px 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.resources--dark .bigcard--on-dark .bigcard__cover img {
  display: block;
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  mix-blend-mode: normal;
}

/* Browse all resources link on dark */
.arrow-link--light {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.32);
}
.arrow-link--light:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* =========================================================
   Resources — LIGHT section with DARK cards variant
   (used on the home page Start Here / Get Started band).
   Section bg: white. Heading & body copy: ink. Cards: solid black
   with white text and the accent-purple eyebrow. Image plates stay
   white so book/guide cover art reads clearly.
   ========================================================= */
.resources--light-darkcards {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--accent-18);
}
.resources--light-darkcards .section-head .eyebrow { color: var(--accent); }
.resources--light-darkcards .display,
.resources--light-darkcards .display .thin,
.resources--light-darkcards .display .bold { color: var(--ink); }

.resources--light-darkcards .bigcard--on-dark {
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.resources--light-darkcards .bigcard--on-dark:hover {
  border-color: var(--accent);
  background: #000;
}
.resources--light-darkcards .bigcard--on-dark .bigcard__eyebrow { color: var(--accent); }
.resources--light-darkcards .bigcard--on-dark .bigcard__title { color: var(--white); }
.resources--light-darkcards .bigcard--on-dark p { color: rgba(255,255,255,.72); }

/* Cover plate inside the dark card stays white so the book covers pop. */
.resources--light-darkcards .bigcard--on-dark .bigcard__cover {
  background: var(--white);
  width: calc(100% + 2 * clamp(36px, 4vw, 56px));
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 32px;
  padding: 40px 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.resources--light-darkcards .bigcard--on-dark .bigcard__cover img {
  display: block;
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}


/* =========================================================
   MEET JONROBERT (unified section: credentials + bio + founder note)
   ========================================================= */
.meet {
  /* Reduced top padding so the About-the-Founder eyebrow sits closer to the logo wall above */
  padding: clamp(40px, 5vw, 72px) 0 var(--sec-y);
  background: var(--white);
  border-top: 1px solid var(--accent-18);
}

/* Section heading (centered) above credentials */
.meet__heading {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.meet__heading .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.meet__heading h2 {
  margin: 0;
}

/* Credential strip */
.meet__credentials {
  list-style: none;
  margin: 0 0 clamp(36px, 5vw, 56px);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  border-top: 1px solid var(--accent-18);
  border-bottom: 1px solid var(--accent-18);
  text-align: center;
}
.meet__credentials li {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.meet__cred-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Bio row */
.meet__inner {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.meet__photo {
  position: relative;
  /* Round 4: enlarged from 440px so the photo holds the section without the purple accent */
  max-width: 500px;
  width: 100%;
}
.meet__photo img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
/* Round 4: purple offset frame removed (kept selector as no-op for any leftover markup) */
.meet__frame {
  display: none;
}
.meet__copy h2 { margin-bottom: 24px; }
.meet__copy .eyebrow { color: var(--accent); font-size: 12px; line-height: 1.2; margin-bottom: 20px; }
.meet__copy p {
  color: var(--ink-72);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.meet__copy p:last-of-type { margin-bottom: 0; }
.meet__copy .hilite {
  color: var(--accent);
  font-weight: 700;
}

/* Standalone founder note section (sits between testimonials and final CTA) */
.founder-note {
  background: var(--white);
  padding: clamp(72px, 8vw, 120px) 0 clamp(72px, 8vw, 120px);
  border-top: 1px solid var(--accent-18);
}
@media (max-width: 780px) {
  .founder-note {
    padding: 64px 0 64px;
  }
}

/* Folded founder note */
.meet__note {
  max-width: 780px;
  margin: 0 auto;
  padding-top: clamp(36px, 4vw, 48px);
  border-top: 1px solid var(--accent-18);
  position: relative;
  text-align: left;
}
/* When the note lives inside the standalone .founder-note section, drop the
   top hairline + padding since the section itself provides the breathing room. */
.founder-note .meet__note {
  padding-top: 0;
  border-top: 0;
}
.meet__note .hairline {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}
.meet__note .eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
/* Purple quotation marks wrapping the founder note (mirrors pull__qmark) */
.meet__qmark {
  font-family: var(--ff);
  color: var(--accent);
  font-weight: 700;
  line-height: 0;
  display: inline-block;
}
.meet__qmark--open {
  font-size: clamp(48px, 5vw, 64px);
  vertical-align: -0.28em;
  margin-right: 8px;
  transform: translateY(0.06em);
}
.meet__qmark--close {
  font-size: clamp(48px, 5vw, 64px);
  vertical-align: -0.28em;
  margin-left: 8px;
  transform: translateY(0.06em);
}

.meet__note-para {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.meet__note-pull {
  color: var(--accent);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 24px;
}
.meet__signoff {
  margin-bottom: 24px;
}
.meet__signoff--right {
  text-align: right;
}
.meet__signoff--right .meet__signature {
  margin-left: auto;
  margin-right: 0;
}
.meet__signature {
  display: block;
  height: auto;
  max-width: 200px;
  margin-bottom: 8px;
}
.meet__sig {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.meet__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin-top: 32px;
}

@media (max-width: 860px) {
  .meet__inner { grid-template-columns: 1fr; }
  .meet__photo { max-width: 420px; }
  /* r5-home: stack credentials with dots in a single vertical column so all
     bullets line up regardless of how long each label runs. The whole list
     is then centered as a block. */
  .meet__credentials { flex-direction: column; gap: 10px; align-items: center; padding: 18px 16px; }
  .meet__credentials li {
    font-size: 12px;
    align-items: flex-start;
    text-align: left;
    line-height: 1.45;
    max-width: 280px;
    width: 100%;
  }
  .meet__credentials li .meet__cred-dot {
    flex-shrink: 0;
    margin-top: 6px; /* visually align dot with first line of text */
  }
}

/* =========================================================
   Asymmetric Offer Grid — Organization (65%) priority over You (35%)
   ========================================================= */
.two-grid--asym {
  grid-template-columns: 1.85fr 1fr;
  align-items: stretch;
}
.two-grid--asym .bigcard--primary {
  position: relative;
}
/* Match cover image heights across columns so eyebrow + title align
   horizontally. Primary is ~1.85x wider than secondary, so to hit the
   same rendered image height we need a wider aspect ratio on the primary:
   1.85 (primary w units) / 0.75 (secondary h fraction of its 1fr width)
   ≈ 2.47. Rounded to 2.45 / 1. Image uses object-fit: cover so the
   original photo is cropped (top/bottom) rather than distorted. */
.two-grid--asym .bigcard--primary .bigcard__cover {
  aspect-ratio: 2.45 / 1;
}
.two-grid--asym .bigcard--secondary .bigcard__cover {
  aspect-ratio: 4 / 3;
}
.two-grid--asym .bigcard--primary .bigcard__cover img,
.two-grid--asym .bigcard--secondary .bigcard__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.two-grid--asym .bigcard--primary .bigcard__title {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
}
.two-grid--asym .bigcard--secondary .bigcard__title {
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.15;
}
.two-grid--asym .bigcard--primary > p {
  font-size: 17px;
  line-height: 1.7;
}
.two-grid--asym .bigcard--secondary > p {
  font-size: 15px;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .two-grid--asym { grid-template-columns: 1fr; }
  /* On single-column stack the ultra-wide primary cover looks too short —
     revert to a normal 16 / 9 frame. */
  .two-grid--asym .bigcard--primary .bigcard__cover { aspect-ratio: 16 / 9; }
}

/* =========================================================
   Dark treatment for the secondary "For You" offer card
   (non-nested bigcard--on-dark, used inside the light .offer section)
   ========================================================= */
.offer .bigcard--on-dark {
  background: #000;
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.offer .bigcard--on-dark:hover {
  border-color: var(--accent);
}
.offer .bigcard--on-dark .bigcard__eyebrow { color: var(--accent); }
.offer .bigcard--on-dark .bigcard__title { color: var(--white); }
.offer .bigcard--on-dark p { color: rgba(255,255,255,.72); }
.offer .bigcard--on-dark .arrow-link {
  color: var(--white);
}
.offer .bigcard--on-dark .arrow-link:hover {
  color: var(--accent);
}

/* =========================================================
   AUDIENCE BENTO GRID (flattened from 8-panel carousel)
   ========================================================= */
.aud-bento {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 32px);
}
.aud-bento__priority,
.aud-bento__secondary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
}
.aud-bento__priority {
  grid-template-columns: repeat(3, 1fr);
}
.aud-bento__secondary {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .aud-bento__secondary { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .aud-bento__priority { grid-template-columns: 1fr; }
  .aud-bento__secondary { grid-template-columns: repeat(2, 1fr); }
  /* Natural DOM order 04→08, then Learn More card last — numerical flow preserved */
}

/* Override carousel flex sizing on panels used in bento */
.aud-bento .aud-panel {
  flex: unset;
  width: 100%;
  height: 100%;
}

/* Compact (secondary) tiles - smaller type, tighter padding */
.aud-panel--compact .aud-panel__media {
  aspect-ratio: 16 / 11;
}
.aud-panel--compact .aud-panel__num {
  font-size: 11px;
  padding: 20px 20px 0;
}
.aud-panel--compact .aud-panel__title {
  font-size: clamp(14px, 0.9vw, 16px);
  padding: 0 20px;
  letter-spacing: 0.02em;
}
.aud-panel--compact p {
  font-size: 13px;
  line-height: 1.55;
  padding: 0 20px;
}
.aud-panel--compact {
  padding-bottom: 24px;
}

/* Priority tiles keep the full styling */
.aud-panel--priority .aud-panel__media {
  aspect-ratio: 16 / 10;
}

/* Where to next CTA card spans full width at bottom */
.aud-bento__cta {
  width: 100%;
  margin-top: clamp(8px, 1vw, 16px);
}

/* =========================================================
   TESTIMONIAL LOGO ROW (above the Read Full Testimonials toggle)
   Full-color client logos in a horizontal row, centered,
   wrapping to a second row on narrow viewports. Spacing is
   balanced so the row sits evenly between the section heading
   above and the toggle button below.
   ========================================================= */
/* Tighten the section-head → logo-row gap so it visually matches
   the logo-row → toggle gap. Scoped to .carousel-section only. */
.carousel-section .section-head { margin-bottom: clamp(32px, 3.5vw, 44px); }
.testimonial-logos {
  list-style: none;
  margin: 0 auto clamp(32px, 3.5vw, 44px);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  max-width: 960px;
}
.testimonial-logos li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.testimonial-logos img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 560px) {
  .testimonial-logos { gap: 22px 28px; }
  .testimonial-logos li { height: 36px; }
  .testimonial-logos img { max-height: 34px; max-width: 90px; }
}

/* =========================================================
   MORE QUOTES (See more testimonials reveal)
   ========================================================= */
.more-quotes {
  max-width: 960px;
  margin: 0 auto;
}
.more-quotes__toggle {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  margin: 0 auto;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-family: var(--ff);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color var(--t), color var(--t), border-color var(--t);
  position: relative;
}
.more-quotes__toggle::-webkit-details-marker { display: none; }
.more-quotes__toggle:hover {
  background: var(--ink);
  color: var(--white);
}
.more-quotes[open] .more-quotes__toggle {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.more-quotes__label--open { display: none; }
.more-quotes[open] .more-quotes__label--open { display: inline; }
.more-quotes[open] .more-quotes__label--closed { display: none; }
.more-quotes__chev {
  transition: transform var(--t);
  display: inline-block;
}
.more-quotes[open] .more-quotes__chev {
  transform: rotate(90deg);
}

/* Center the toggle since details can't center-self on summary */
.more-quotes > summary {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  width: fit-content;
}

.more-quotes__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 40px);
}
.more-quotes__item {
  background: var(--white);
  border: 1px solid var(--ink-08);
  padding: clamp(28px, 3vw, 40px);
}
.more-quotes__item .carousel__quote-block {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.more-quotes__item .carousel__logo {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
.more-quotes__item .carousel__headline {
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--ink);
  margin: 4px 0 4px;
}
.more-quotes__item .carousel__qmark {
  color: var(--accent);
  display: inline;
}
.more-quotes__item .carousel__body {
  color: var(--ink-72);
  font-size: 16px;
  line-height: 1.7;
}
.more-quotes__item .carousel__attr {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 6px;
}

/* Wide bento CTA — horizontal buttons, centered content */
.aud-bento__cta {
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
}
.aud-bento__cta .aud-panel__cta-body {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
}
.aud-bento__cta .aud-panel__cta-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 14px;
  width: 100%;
}
.aud-bento__cta .aud-panel__cta-buttons .btn {
  width: auto;
  flex: 0 0 auto;
}
@media (max-width: 640px) {
  .aud-bento__cta .aud-panel__cta-buttons {
    flex-direction: column;
  }
  .aud-bento__cta .aud-panel__cta-buttons .btn {
    width: 100%;
  }
}

/* =========================================================
   NAV DROPDOWN — Who We Help (r2 — hardened against existing
   `.nav__links a` rules that would render menu items as inline text)
   ========================================================= */
.nav .nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav .nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-72);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 1;
  transition: color var(--t);
}
.nav .nav__dropdown-trigger:hover,
.nav .nav__dropdown[data-open="true"] .nav__dropdown-trigger { color: var(--white); }
.nav .nav__dropdown-trigger svg { transition: transform var(--t); flex: 0 0 auto; }
.nav .nav__dropdown[data-open="true"] .nav__dropdown-trigger svg { transform: rotate(180deg); }

/* Critical: the menu MUST be absolutely positioned and hidden by default,
   regardless of any `.nav__links` rules in the existing stylesheet. */
.nav .nav__dropdown-menu {
  position: absolute !important;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: var(--ink);
  border: 1px solid var(--white-15);
  border-radius: 12px;
  padding: 10px;
  display: flex !important;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 100;
}
.nav .nav__dropdown[data-open="true"] .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav .nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--white-72);
  border-radius: 8px;
  transition: background var(--t), color var(--t);
}
.nav .nav__dropdown-menu a:hover,
.nav .nav__dropdown-menu a.is-active {
  background: var(--accent);
  color: var(--white);
}
/* Suppress the inherited active underline that .nav__links a.is-active gets */
.nav .nav__dropdown-menu a.is-active::after { content: none !important; }

/* Mobile group */
.nav .nav__mobile-group {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--white-15);
  border-bottom: 1px solid var(--white-15);
  padding: 12px 0 16px;
  margin: 4px 0;
}
.nav .nav__mobile-label {
  display: block;
  font-family: var(--ff);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 24px 4px;
}
.nav .nav__mobile-group a {
  padding: 8px 32px !important;
  font-size: 16px !important;
}

/* ===== r3-nav: uppercase dropdown items, match nav typography ===== */
.nav .nav__dropdown-menu a {
  font-size: 12px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}
/* Keep purple hover from r2 */
.nav .nav__dropdown-menu a:hover,
.nav .nav__dropdown-menu a.is-active {
  background: var(--accent) !important;
  color: var(--white) !important;
}

/* =========================================================
   Form status (Formspree submit feedback)
   ========================================================= */
.form-status {
  margin-top: 14px;
  font-family: var(--ff);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  min-height: 1.4em;
}
.form-status:empty { display: none; }
.form-status--error {
  color: #b00020;
}
.form-status--success {
  color: var(--accent, #6600FF);
  font-weight: 600;
}
.nlet--dark .form-status,
.section--dark .form-status,
.modal__form .form-status {
  color: rgba(255,255,255,0.85);
}
.nlet--dark .form-status--error,
.section--dark .form-status--error,
.modal__form .form-status--error {
  color: #ff8a8a;
}

/* =========================================================
   r5-home audit: Trimmed founder note — tighter pull-quote feel.
   The remaining single paragraph should breathe a bit more on its own.
   ========================================================= */
.meet__note-para--lead {
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.25rem);
  line-height: 1.55;
  max-width: 62ch;
}

/* =========================================================
   r5-home audit: Resources cards on mobile — enlarge Assessment
   and Leader's Guide cover images so they read at parity with the
   Resources page treatment instead of feeling shrunken.
   ========================================================= */
@media (max-width: 720px) {
  .resources--dark .bigcard--on-dark .bigcard__cover,
  .resources--light-darkcards .bigcard--on-dark .bigcard__cover {
    padding: 32px 0;
    margin-bottom: 28px;
  }
  .resources--dark .bigcard--on-dark .bigcard__cover img,
  .resources--light-darkcards .bigcard--on-dark .bigcard__cover img {
    max-width: 96%;
    width: auto;
    max-height: 360px;
  }
}

/* =========================================================
   Embed mode — used when ?embed=1 is in the URL (Squarespace
   iFrame). Hides nav and footer (host site provides its own),
   removes the page's reserved nav-height padding, and lets the
   parent control the body background.
   ========================================================= */
.embed-mode .nav,
.embed-mode .footer {
  display: none !important;
}
.embed-mode {
  /* Eliminate the gap normally reserved for the sticky nav */
  --nav-h: 0px;
}
.embed-mode body {
  /* Avoid horizontal scrollbars inside the iframe */
  overflow-x: hidden;
}
/* Anchor jumps inside the page (e.g., #contact) need a small
   offset so they don't slam against the iframe top edge */
.embed-mode :target {
  scroll-margin-top: 24px;
}

/* === canonical CTA pill (round 2) === */
.cta .hilite-pill {
  display: inline-block;
  padding: 0.04em 0.16em 0.06em;
  border-radius: 0.12em;
  line-height: 0.92;
  margin: 0.06em 0.04em;
  vertical-align: baseline;
}

/* r3-fix-9: footer "Move People." purple highlight pill (dark footer) */
.footer__tag .hilite-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  padding: 0.18em 0.55em 0.22em;
  line-height: 1;
  font-weight: 600;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* r4-fix-mobile-1 (revised): hero CTA on mobile must wrap on whole words only —
   never hyphenate or break the word "Organizations" mid-letter. Tightening
   letter-spacing + padding gives "SEE HOW WE WORK WITH" / "ORGANIZATIONS"
   on two clean lines on every phone width down to 320px. */
@media (max-width: 480px) {
  .hero__ctas .btn {
    white-space: normal;
    line-height: 1.25;
    letter-spacing: 0.08em;
    padding-left: 12px;
    padding-right: 12px;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

/* =========================================================
   r4-fix-mobile-3: Collapsible "Who We Help" group in the mobile menu
   The 8 ICP links are hidden by default and revealed when the user taps
   the "Who We Help" toggle. This keeps Resources / About / Contact in
   easy reach without long scrolling. Animation respects prefers-reduced-motion.
   ========================================================= */
.nav__mobile-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 24px 4px;
  cursor: pointer;
  color: var(--accent);
  font: inherit;
}
.nav__mobile-toggle .nav__mobile-label {
  padding: 0;
  color: var(--accent);
}
.nav__mobile-toggle-chev {
  display: inline-block;
  flex: 0 0 auto;
  transition: transform 220ms var(--ease, ease);
  color: var(--white-72, rgba(255,255,255,0.72));
}
.nav__mobile-toggle[aria-expanded="true"] .nav__mobile-toggle-chev {
  transform: rotate(180deg);
}

.nav__mobile-icps {
  display: flex;
  flex-direction: column;
  /* Padding/spacing inside the group */
  padding: 4px 0 0;
}
.nav__mobile-icps[hidden] { display: none; }

/* keep the same look-and-feel for ICP links inside the new wrapper */
.nav .nav__mobile-icps a {
  padding: 8px 32px !important;
  font-size: 16px !important;
}

@media (prefers-reduced-motion: reduce) {
  .nav__mobile-toggle-chev { transition: none; }
}


/* =========================================================
   r4-fix-mobile-3 (revised): Collapsible "Who We Help" group in the mobile menu.
   The toggle row now matches the same visual weight as Home/Topics/Services/etc:
   white, 28px Futura, 700, uppercase, 0.04em letter-spacing. ICP links inside the
   panel keep their smaller 16px treatment as before.
   ========================================================= */
.nav__mobile-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0;             /* match the line-rhythm of the sibling <a> items */
  cursor: pointer;
  color: var(--white);
  font: inherit;
  text-align: left;
}
.nav__mobile-toggle .nav__mobile-label {
  /* match the other top-level mobile menu items exactly */
  display: inline-block;
  padding: 0;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__mobile-toggle:hover .nav__mobile-label,
.nav__mobile-toggle:focus-visible .nav__mobile-label { color: var(--accent); }

.nav__mobile-toggle-chev {
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 9px;
  transition: transform 220ms var(--ease, ease);
  color: var(--white-72, rgba(255,255,255,0.72));
}
.nav__mobile-toggle[aria-expanded="true"] .nav__mobile-toggle-chev {
  transform: rotate(180deg);
}

.nav__mobile-icps {
  display: flex;
  flex-direction: column;
  padding: 4px 0 0;
  margin-top: 4px;
}
.nav__mobile-icps[hidden] { display: none; }

/* keep the ICP child links small + indented (unchanged from prior revision) */
.nav .nav__mobile-icps a {
  padding: 8px 32px !important;
  font-size: 16px !important;
}

/* and remove the prior border-rules that styled the group like a divider block */
.nav .nav__mobile-group {
  border-top: 0;
  border-bottom: 0;
  padding: 0;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .nav__mobile-toggle-chev { transition: none; }
}


/* Disable hover-color flash on touch devices and when expanded */
@media (hover: none) {
  .nav__mobile-toggle:hover .nav__mobile-label,
  .nav__mobile-toggle:focus-visible .nav__mobile-label { color: var(--white); }
}
.nav__mobile-toggle[aria-expanded="true"] .nav__mobile-label,
.nav__mobile-toggle[aria-expanded="true"]:hover .nav__mobile-label {
  color: var(--white);
}

/* =========================================================
   TRIGGERS — "Why Organizations Bring Us In"
   Premium editorial treatment: large outlined numerals,
   hairline dividers, single-column rhythm.
   ========================================================= */
.triggers {
  background: var(--white);
  color: var(--ink);
  /* Tightened top padding to reduce gap from Meet section above */
  padding: 0 0 clamp(72px, 8vw, 120px);
}
/* When Meet is immediately followed by Triggers, shrink Meet's bottom padding */
.meet + .triggers {
  padding-top: 0;
}
.meet:has(+ .triggers) {
  padding-bottom: clamp(24px, 3vw, 48px);
}
.triggers__head {
  margin-bottom: clamp(40px, 5vw, 72px);
}
.triggers__intro {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.triggers__intro em {
  font-style: italic;
  font-weight: 500;
}
/* Round 5: triggers as a row of 5 cards (was: stacked rows).
   Same hover mechanics — black fill, white text, purple eyebrow + rule persist. */
.triggers__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.2vw, 20px);
  counter-reset: trigger;
}
.trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(10px, 1vw, 16px);
  padding: clamp(22px, 2.2vw, 32px) clamp(20px, 1.8vw, 28px) clamp(24px, 2.4vw, 34px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  min-height: clamp(240px, 24vw, 300px);
  transition: background-color 240ms ease, color 240ms ease,
              border-color 240ms ease, transform 240ms ease,
              box-shadow 240ms ease;
}
.trigger:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.45);
}
.trigger:hover .trigger__lead { color: #fff; }
.trigger:hover .trigger__eyebrow { color: var(--accent); }
.trigger:hover .trigger__rule { background-color: var(--accent); }
.trigger:hover .trigger__num { color: #fff; }
.trigger__num {
  font-family: var(--ff);
  font-weight: 200;
  font-size: clamp(54px, 5.6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #000;
  display: block;
  user-select: none;
  text-align: left;
  transition: color 240ms ease;
}
.trigger__rule {
  display: block;
  /* horizontal accent rule under the numeral */
  width: clamp(36px, 3.6vw, 52px);
  height: 1.5px;
  background-color: var(--accent);
  border-radius: 1px;
  transition: background-color 240ms ease, width 240ms ease;
}
.trigger__body {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.8vw, 12px);
  /* Round 5: don't push body to the bottom — sit just below the accent rule */
  margin-top: clamp(6px, 0.8vw, 14px);
}
.trigger__eyebrow {
  font-family: var(--ff);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  transition: color 240ms ease;
}
.trigger__lead {
  font-family: var(--ff);
  font-weight: 500;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.trigger__lead em {
  font-style: italic;
  font-weight: 500;
}
/* Tablet: 2-row grid that visually centers the trailing two cards */
@media (max-width: 1080px) {
  .triggers__list {
    /* 6-track grid, each card spans 2 → 3 cards/row.
       Cards 4–5 explicitly span+offset to center on row 2 */
    grid-template-columns: repeat(6, 1fr);
  }
  .trigger {
    grid-column: span 2;
    min-height: clamp(220px, 26vw, 280px);
  }
  .trigger:nth-child(4) { grid-column: 2 / span 2; }
  .trigger:nth-child(5) { grid-column: 4 / span 2; }
  .trigger__lead { font-size: 16px; }
}
/* Round 5: keep the original mobile triggers treatment (3-col row:
   number | vertical purple rule | body). Cards only apply at ≥ 720px. */
@media (max-width: 720px) {
  .triggers {
    padding: clamp(20px, 4vw, 36px) 0 clamp(56px, 10vw, 88px);
  }
  .triggers__list {
    display: flex;
    flex-direction: column;
    max-width: none;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
  }
  .trigger {
    /* Reset desktop card chrome */
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0;
    box-shadow: none;
    transform: none;
    min-height: 0;
    /* Re-establish 3-column grid: number | purple rule | body */
    display: grid;
    grid-template-columns: 56px 1.5px 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 22px 12px;
  }
  .trigger:hover {
    transform: none;
    box-shadow: none;
    border-color: #000;
  }
  .trigger__num {
    font-size: 44px;
    -webkit-text-stroke-width: 1px;
    text-align: right;
  }
  .trigger__rule {
    /* Restore vertical purple rule between the number and body */
    display: block;
    width: 1.5px;
    height: 44px;
    align-self: center;
  }
  .trigger__body {
    margin-top: 0;
    gap: 4px;
  }
  .trigger__eyebrow {
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .trigger__lead {
    font-size: 17px;
    line-height: 1.35;
    max-width: 56ch;
  }
}

/* =========================================================
   AUDIENCE GRID — Mobile-only "Want to Learn More" black card
   Sits in the secondary tile grid as a 6th item beside Nonprofit
   on row 3 of the 2-column mobile layout. Hidden on desktop.
   ========================================================= */
.aud-panel--learn-more {
  display: none; /* hidden on desktop — only appears on narrow screens */
}
@media (max-width: 820px) {
  /* Boost specificity + !important to override .aud-bento .aud-panel base rules.
     NOTE: --black is not defined as a CSS var; use literal #000. */
  .aud-bento__secondary > .aud-panel--learn-more,
  li.aud-panel--learn-more {
    display: flex !important;
    flex-direction: column !important;
    background: #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 24px 20px !important;
    border-radius: 0 !important;
    justify-content: center !important;
    text-align: left !important;
    min-height: 100% !important;
    width: 100% !important;
    height: 100% !important;
    flex: unset !important;
  }
  .aud-panel__learn-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .aud-panel__learn-title {
    font-family: var(--ff);
    font-weight: 700;
    font-size: clamp(15px, 4.2vw, 19px);
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--white);
    margin: 0;
  }
  .aud-panel--learn-more .aud-panel__learn-desc,
  li.aud-panel--learn-more p {
    font-family: var(--ff) !important;
    font-weight: 400 !important;
    font-size: clamp(12.5px, 3.4vw, 14px) !important;
    line-height: 1.45 !important;
    color: rgba(255, 255, 255, 0.72) !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .aud-panel--learn-more .aud-panel__learn-title {
    color: #fff !important;
  }
  .aud-panel__learn-btn {
    margin-top: 4px;
    width: 100%;
    text-align: center;
  }
}

/* Hide the original "Where to next?" desktop CTA card — replaced by mobile-only Learn More tile */
.aud-bento__cta { display: none !important; }
