/* ══════════════════════════════════════════════════════════════════════════
   PEOPLE OF INFLUENCE — SHARED STYLES
   Brand: Oswald (headings) · DM Serif Display (accent) · Source Sans 3 (body)
   Palette: --coral #E8755F · --peri #6B7CD9 · --ink #0e1a2b · --cream #FAF7F0
══════════════════════════════════════════════════════════════════════════ */

:root {
  --coral:       #E8755F;
  --coral-dark:  #d4604b;
  --peri:        #6B7CD9;
  --peri-dark:   #5A6BC8;
  --ink:         #0e1a2b;
  --cream:       #FAF7F0;
  --cream-dark:  #EDE8DF;
  --navy:        #1a2e4a;
  --mid-navy:    #2D4373;
  --dark:        #0c1729;
  --dark-card:   #172d4a;
  --peri-bg:     #EEF0FA;
  --coral-bg:    #FDF1EE;

  --font-head:  'Oswald', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-body:  'Source Sans 3', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  --radius:    8px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --section-pad: clamp(56px, 8vw, 96px);
}

/* ─── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 20px; }
body { font-family: var(--font-body); color: var(--ink); background: #fff; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ─── NAVIGATION ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(45, 67, 115, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: #fff; }
.nav-cta {
  background: var(--peri) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 8px 12px;
  padding-top: 20px;
  min-width: 264px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-menu a {
  display: block;
  padding: 11px 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75) !important;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav-dropdown-menu a:hover { color: #fff !important; background: var(--peri) !important; }

/* ─── MOBILE NAV (hamburger) ─────────────────────────────────────────────
   Pure-CSS toggle: a hidden checkbox + label drives an off-canvas panel.
   Hidden on desktop; the checkbox resets on navigation so the menu
   auto-closes when a link is tapped. Works for both .nav (sticky) and
   .nav-home (fixed/transparent over the hero). */
.nav-toggle, .nav-toggle-cb { display: none; }

@media (max-width: 860px) {
  .nav-inner { height: 72px; }

  /* hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  /* the link list becomes a full-width drop panel */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(28, 42, 74, 0.99);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 6px 0 18px;
    box-shadow: 0 24px 44px rgba(0,0,0,0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .nav-toggle-cb:checked ~ .nav-links {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    opacity: 1;
    pointer-events: auto;
  }

  /* hamburger morphs into an X when open */
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-cb:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* top-level items */
  .nav-links > li { width: 100%; }
  .nav-links > li > a {
    display: block;
    padding: 13px clamp(20px, 5vw, 60px);
    font-size: 0.95rem;
    color: #fff;
  }

  /* sub-menus are shown inline & indented (no hover on touch) */
  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex !important;
    position: static;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    padding: 0 0 4px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .nav-dropdown-menu a {
    padding: 10px clamp(20px, 5vw, 60px);
    padding-left: calc(clamp(20px, 5vw, 60px) + 18px);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.68) !important;
    border-radius: 0;
  }

  /* Contact button: full-width pill inside the panel */
  .nav-cta {
    display: block !important;
    margin: 12px clamp(20px, 5vw, 60px) 0 !important;
    text-align: center;
  }
}

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--peri);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--peri-dark); transform: translateY(-2px); }

.btn-coral {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,117,95,0.3);
}
.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,117,95,0.4);
}

.btn-peri {
  display: inline-block;
  background: var(--peri);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(139,156,228,0.3);
}
.btn-peri:hover {
  background: var(--peri-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(139,156,228,0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #fff; color: #fff; }

.btn-outline-dark {
  display: inline-block;
  border: 2px solid rgba(14,26,43,0.22);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-dark:hover { border-color: var(--peri); color: var(--peri); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  padding: clamp(80px, 11vw, 128px) 0 0;
}
.hero-bg-1 {
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(107,124,217,0.2) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-bg-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,117,95,0.14) 0%, transparent 70%);
  bottom: 80px; left: -60px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.05;
  max-width: 840px;
  margin: 0 auto 24px;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--coral); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.09);
}
.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--peri);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; }
.section.cream { background: var(--cream); }
.section.white { background: #fff; }
.section.dark  { background: var(--dark); }
.section.navy  { background: var(--navy); }
.section.peri-bg { background: var(--peri-bg); }
.section.coral-section { background: var(--coral); }
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.section-eyebrow.peri  { color: var(--peri); }
.section-eyebrow.coral { color: var(--coral); }
.section-eyebrow.coral::before  { background: var(--coral); }
.section-eyebrow.coral::after   { background: var(--coral); }
.section-eyebrow.white { color: rgba(255,255,255,0.75); }

/* ── STATS GRID ─────────────────────────────────────────────────────── */
.poi-stats-eyebrow {
  font-family: var(--font-head);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peri);
  text-align: center;
  margin-bottom: 24px;
}
.poi-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.poi-stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--cream-dark);
}
.poi-stat-cell:last-child { border-right: none; }
.poi-stat-number {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.poi-stat-plus {
  color: var(--peri);
}
.poi-stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.48);
  margin-top: 6px;
  line-height: 1.4;
}
.poi-stat-label--feature {
  font-size: 0.68rem;
  margin-top: 6px;
}
.poi-stat-ai-chip {
  background: var(--peri);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 4px 9px;
  margin-bottom: 8px;
  display: inline-block;
}
@media (max-width: 860px) {
  .poi-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .poi-stat-cell { border-bottom: 1px solid var(--cream-dark); }
  .poi-stat-cell:nth-child(3n) { border-right: none; }
  .poi-stat-cell:last-child, .poi-stat-cell:nth-last-child(-n+3) { border-bottom: none; }
}
@media (max-width: 560px) {
  .poi-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .poi-stat-cell:nth-child(3n) { border-right: 1px solid var(--cream-dark); }
  .poi-stat-cell:nth-child(2n) { border-right: none; }
}
.section-eyebrow.white::before { background: rgba(255,255,255,0.75); }
.section-eyebrow.centred,
.section-header.centered .section-eyebrow { justify-content: center; }
.section-eyebrow.centred::after,
.section-header.centered .section-eyebrow::after {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.section-eyebrow.centred.white::after,
.section-header.centered .section-eyebrow.white::after { background: rgba(255,255,255,0.75); }
.section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section.dark h2, .section.navy h2, .section.coral-section h2, .section.mid-navy h2 { color: #fff; }
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.56rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-header.dark-bg h2 { color: #fff; }

/* ─── ABOUT STRIP ────────────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip-text p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.75;
  margin-bottom: 18px;
}
.founders-tags {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.founder-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-dark);
  border-radius: 40px;
  padding: 6px 16px 6px 6px;
}
.founder-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.founder-avatar.coral { background: var(--coral); }
.founder-avatar.peri  { background: var(--peri); }
.founder-tag-name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}
.services-preview {
  background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-preview-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
}
.services-preview-icon { font-size: 1.3rem; flex-shrink: 0; }
.services-preview-label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

/* ─── SERVICE CARDS ──────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
  display: block;
  color: var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-card-icon.coral { background: rgba(232,117,95,0.14); }
.service-card-icon.peri  { background: rgba(107,124,217,0.14); }
.service-card-icon.navy  { background: rgba(14,26,43,0.1); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  color: var(--ink);
  text-transform: uppercase;
}
.service-card p { font-size: 0.92rem; color: rgba(14,26,43,0.65); line-height: 1.68; }
.service-card-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri);
  font-weight: 600;
}

/* ─── CLIENT LOGOS ───────────────────────────────────────────────────── */
.clients-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.7;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.client-logo-badge {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.5);
}
.clients-footnote {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(14,26,43,0.4);
  font-style: italic;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.testimonial-card.light {
  background: #fff;
  border-color: var(--cream-dark);
}
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card.light .testimonial-quote { color: rgba(14,26,43,0.7); }
.testimonial-attribution {}
.testimonial-name {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 3px;
}
.testimonial-role { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.testimonial-card.light .testimonial-role { color: rgba(14,26,43,0.42); }

/* ─── VIDEO CARDS ────────────────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card { border-radius: var(--radius-lg); overflow: hidden; }
.video-thumbnail {
  aspect-ratio: 16/9;
  background: var(--dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.video-thumbnail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,124,217,0.2), rgba(232,117,95,0.1));
}
.video-play {
  width: 52px; height: 52px;
  background: rgba(139,156,228,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding-left: 3px;
  padding-top: 4px;
}
.video-info { padding: 16px 4px 0; }
.video-speaker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 6px;
}
.video-title {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────── */
.cta-section { padding: var(--section-pad) 0; text-align: center; }
.cta-section.coral  { background: var(--coral); }
.cta-section.dark   { background: var(--dark); }
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cta-sub { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.68; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--mid-navy) 0%, var(--dark-card) 100%);
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 7vw, 90px);
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.page-hero-network {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(107,124,217,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.page-hero-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.38); }
.page-hero-breadcrumb span { margin: 0 8px; }
.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.07;
  margin-bottom: 20px;
  max-width: 720px;
}
.page-hero h1 .accent { color: var(--coral); }
.page-hero h1 .accent-peri { color: var(--peri); }
.page-hero h1 .accent-muted { color: #fff; }
.page-hero-sub {
  font-size: clamp(1.18rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  max-width: 760px;
  line-height: 1.75;
}
.page-hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: rgba(255,255,255,0.88);
  max-width: 740px;
  line-height: 1.55;
  font-style: italic;
  margin-top: 12px;
}

/* ─── INNER SECTIONS ─────────────────────────────────────────────────── */
.inner-section { padding: var(--section-pad) 0; }
.inner-section.cream   { background: var(--cream); }
.inner-section.white   { background: #fff; }
.inner-section.dark    { background: var(--dark); }
.inner-section.peri-bg { background: var(--peri-bg); border-top: 1px solid rgba(107,124,217,0.1); }
.inner-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.section-header-inner { margin-bottom: 36px; }
.section-eyebrow-inner {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow-inner::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.section-eyebrow-inner.peri { color: var(--peri); }
.section-eyebrow-inner.centred { justify-content: center; }
.section-eyebrow-inner.centred::after {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.section-h2-inner {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

/* ─── DIAGNOSTIC PAGE COMPONENTS ─────────────────────────────────────── */
.diag-section-title {
  font-family: var(--font-head);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.diag-section-title::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--peri);
  opacity: 0.8;
  flex-shrink: 0;
}
.diag-section-title.coral { color: var(--coral); }
.diag-section-title.coral::before { background: var(--coral); }
.diag-col-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.diag-col-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 16px;
}
.diag-text {
  font-size: 1rem;
  color: rgba(14,26,43,0.78);
  line-height: 1.75;
  max-width: 760px;
}
.diag-text + .diag-text { margin-top: 18px; }
.diag-text em { font-style: italic; }
.inner-section.dark .section-h2-inner { color: #fff; }

/* ─── TEAM CARDS ─────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
}
.team-card.featured {
  background: var(--dark-card);
  border-color: rgba(255,255,255,0.07);
  grid-column: span 1;
}
.team-avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.team-card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card.featured .team-card-name { color: #fff; }
.team-card-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 16px;
}
.team-card-bio {
  font-size: 0.88rem;
  color: rgba(14,26,43,0.68);
  line-height: 1.72;
}
.team-card.featured .team-card-bio { color: rgba(255,255,255,0.62); }
.team-card-fun {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(14,26,43,0.1);
  font-size: 0.82rem;
  color: rgba(14,26,43,0.5);
  font-style: italic;
  line-height: 1.6;
}
.team-card.featured .team-card-fun { border-top-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); }

/* ─── VALUES ─────────────────────────────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.value-row:last-child { border-bottom: none; }
.value-row-left { display: flex; gap: 24px; align-items: flex-start; }
.value-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.value-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-body { font-size: 1rem; color: rgba(14,26,43,0.75); line-height: 1.72; }
.value-quote {
  font-size: 0.9rem;
  color: rgba(14,26,43,0.5);
  line-height: 1.7;
  font-style: italic;
  align-self: center;
}

/* ─── VISION CARDS ───────────────────────────────────────────────────── */
.vision-list { display: flex; flex-direction: column; gap: 0; }
.vision-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.vision-row:last-child { border-bottom: none; }
.vision-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.vision-row-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.vision-row-body { font-size: 1rem; color: rgba(14,26,43,0.75); line-height: 1.72; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vision-card {
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  border: 1px solid rgba(255,255,255,0.1);
}
.vision-card.grim   { background: rgba(232,117,95,0.08); border-color: rgba(232,117,95,0.18); }
.vision-card.future { background: rgba(107,124,217,0.08); border-color: rgba(107,124,217,0.18); }
.vision-card.bridge { background: rgba(255,255,255,0.04); }
.vision-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 10px;
}
.vision-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.vision-card p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.72; }

/* ─── TOOL CARDS ─────────────────────────────────────────────────────── */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tool-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tool-badge {
  display: inline-block;
  background: rgba(139,156,228,0.16);
  color: var(--peri);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.tool-card h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tool-card-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 14px;
}
.tool-card p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.72; }

/* ─── WORKSHOP LIST ──────────────────────────────────────────────────── */
.workshop-list { display: flex; flex-direction: column; gap: 10px; }
.workshop-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  font-size: 0.92rem;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.workshop-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peri);
  flex-shrink: 0;
}
.workshop-item.peri::before { background: var(--peri); }

/* ─── ACTIVITY CARDS ─────────────────────────────────────────────────── */
.activities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.activity-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--cream-dark);
}
.activity-badge {
  display: inline-block;
  background: rgba(107,124,217,0.1);
  color: var(--peri);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(107,124,217,0.25);
  margin-bottom: 14px;
}
.sim-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 3vw, 40px);
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(14,26,43,0.05);
  margin-bottom: 20px;
}
.sim-row:last-child { margin-bottom: 0; }
.sim-content h3 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.sim-content p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.72;
  margin-bottom: 16px;
}
.sim-img {
  aspect-ratio: 4/3;
  background: rgba(14,26,43,0.06);
  border: 2px dashed rgba(14,26,43,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.25);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* When the image is present, drop the placeholder box so the artwork sits on its own */
.sim-img:has(img) {
  aspect-ratio: auto;
  background: none;
  border: none;
  border-radius: 0;
  display: block;
}
/* Phones: stack each simulation with its image above the title (same as the
   Simulations page) instead of cramming the two columns side by side. */
@media (max-width: 768px) {
  .sim-row { grid-template-columns: 1fr; gap: 18px; }
  .sim-row .sim-img { order: -1; }
}
.sim-vid-placeholder {
  aspect-ratio: 16/9;
  background: var(--dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.theme-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.theme-tag {
  background: rgba(14,26,43,0.06);
  color: rgba(14,26,43,0.62);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
}

/* ─── OUTCOME LIST ───────────────────────────────────────────────────── */
/* "What you get" checklist — bordered boxes + circle-tick icons (matches the
   Leadership Engine site). */
.outcome-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  /* Lift the white cards off the white section so they read as cards. */
  box-shadow: 0 5px 18px rgba(14,26,43,0.07);
}
.outcome-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  /* Solid peri tick badge so it pops instead of blending into the card. */
  background: var(--peri);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}
.outcome-text { font-size: 1.05rem; color: rgba(14,26,43,0.72); line-height: 1.55; }
.outcome-text strong { color: var(--ink); font-weight: 600; }
/* Large dark column title + mono sub-label (replaces the small coral caps) */
.whatyouget-sub {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.whatyouget-sub.peri { color: var(--peri); }
.wyg-for {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 4px;
}
.wyg-for.peri { color: var(--peri); }

/* ─── FULL TESTIMONIALS PAGE ─────────────────────────────────────────── */
.testimonials-full { display: flex; flex-direction: column; }
.testimonial-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  align-items: center;
  padding: clamp(48px,6vw,72px) 0;
  border-bottom: 1px solid var(--cream-dark);
}
.testimonial-full:last-child { border-bottom: none; }
.testimonial-full:nth-child(even) .testimonial-full-logo { order: -1; }
@media (max-width: 768px) {
  /* Stack on phones: logo on top, then the quote, then the person's title +
     client name (name/org live inside .content after the quote). */
  .testimonial-full { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .testimonial-full .testimonial-full-logo { order: -1; justify-content: flex-start; }
}
.testimonial-full-quote {
  font-size: 1.12rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-full-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.testimonial-full-org { font-size: 0.98rem; font-weight: 600; color: rgba(14,26,43,0.6); }
.testimonial-full-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-logo-img img {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* ─── VIDEOS FULL PAGE ───────────────────────────────────────────────── */
.video-section-label {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--peri);
  display: inline-block;
  margin-bottom: 28px;
}
.videos-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.vid-car-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.vid-car-hd .video-section-label { margin-bottom: 0; }

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 40px; }
.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.6);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--peri); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--peri);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--peri-dark); }
.contact-team { display: flex; flex-direction: column; gap: 20px; }
.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}
.contact-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.contact-person-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-person-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
}

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--mid-navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px clamp(24px, 5vw, 80px) 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo { display: block; line-height: 1; }
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.footer-newsletter { display: flex; gap: 8px; }
.footer-newsletter input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #fff;
  outline: none;
  width: 220px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter button {
  background: var(--peri);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.35); }
@media (max-width: 760px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-newsletter input { width: 160px; }
}

/* ── ACCORDION ────────────────────────────────────────────── */
.poi-acc-stack { display: flex; flex-direction: column; gap: 14px; }
/* Each accordion is its own white panel that pops against the cream section
   background behind it (matches the Leaders and Teams pages). */
.poi-acc {
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  background: #fff;
  padding: 0 clamp(16px, 2.5vw, 28px);
  transition: background 0.3s ease;
}
/* Behavioural Simulations: while this accordion is expanded, deepen its
   background so the white Wall Street sim cards pop. It returns to white when
   collapsed (or when another accordion is opened and this one closes). */
.poi-acc--sims.is-open { background: #EFE8D6; }
.poi-acc-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  gap: 24px;
}
.poi-acc-hd:hover .poi-acc-title { color: var(--peri); }
.poi-acc-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 6px;
}
.poi-acc-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.poi-acc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--peri);
  color: var(--peri);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.18s;
}
.poi-acc-btn:hover, .poi-acc-btn.active {
  background: var(--peri);
  color: #fff;
}
.poi-acc-icon {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s;
  display: inline-block;
}
.poi-acc-btn.active .poi-acc-icon { transform: rotate(45deg); }
.poi-acc-bd { display: none; padding-bottom: 48px; }
.poi-acc-bd.open { display: block; }

/* Video list inside accordions */
.acc-video-groups { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.acc-video-group-hd { padding-bottom: 10px; border-bottom: 2px solid var(--cream-dark); margin-bottom: 12px; }
.acc-video-group-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 2px;
}
.acc-video-group-sub {
  font-size: 0.8rem;
  color: rgba(14,26,43,0.5);
  font-style: italic;
}
.acc-video-list { display: flex; flex-direction: column; gap: 8px; }
.acc-video-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.acc-video-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 3px;
}
.acc-video-card-presenter {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.4);
}

/* ─── INNER PAGE PLACEHOLDERS ─────────────────────────────────────────── */
.inner-img-placeholder {
  aspect-ratio: 4/3;
  background: rgba(14,26,43,0.06);
  border: 2px dashed rgba(14,26,43,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.3);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}
.track-record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.track-record-img {
  aspect-ratio: 4/3;
  background: rgba(14,26,43,0.06);
  border: 2px dashed rgba(14,26,43,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.28);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── HOW WE DRIVE BEHAVIOUR CHANGE ──────────────────────────────────── */
.bchange-section {
  background: #fff;
  padding-top: clamp(80px, 10vw, 112px);
  padding-bottom: clamp(80px, 10vw, 112px);
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}
.bchange-inner {
  max-width: var(--max-width);
  margin-inline: auto;
}
.bchange-hd {
  text-align: center;
  margin-bottom: 44px;
}
.bchange-hd h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 14px 0 0;
}
.bchange-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 48px;
  position: relative;
}
.bchange-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(14, 26, 43, 0.12);
}
.bchange-conn { display: none; }
.bchange-step {
  position: relative;
  padding-top: 32px;
}
.bchange-step::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--peri);
}
.bchange-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--peri);
  line-height: 1;
  margin-bottom: 16px;
}
.bchange-label {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1;
}
.bchange-desc {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(14, 26, 43, 0.6);
  margin: 0;
}
@media (max-width: 700px) {
  .bchange-steps { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .bchange-steps::before { display: none; }
  .bchange-step { border-top: 1px solid rgba(14, 26, 43, 0.15); }
}
@media (max-width: 420px) {
  .bchange-steps { grid-template-columns: 1fr; gap: 36px; }
}

/* ─── ACCORDION HEADER WITH IMAGE ─────────────────────────────────────── */
.poi-acc-hd-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.poi-acc-hd-img {
  width: 168px;
  height: 112px;
  flex-shrink: 0;
  background: rgba(14,26,43,0.06);
  border: 2px dashed rgba(14,26,43,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.25);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
}
.poi-acc-hd-img:has(img) { border: none; background: none; }
.poi-acc-hd-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ─── IN-ACCORDION VIDEO CAROUSELS ────────────────────────────────────── */
.acc-car-group { margin-bottom: 52px; }
.acc-car-group:last-child { margin-bottom: 0; }
.acc-car-group-hd {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.acc-car-group-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
}
.acc-car-group-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(14,26,43,0.6);
  margin-top: 4px;
}
.acc-car-outer { position: relative; }
.acc-car-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.acc-car-scroll::-webkit-scrollbar { display: none; }
.acc-vid-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.acc-vid-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(14,26,43,0.1); }
.acc-vid-thumb {
  aspect-ratio: 16/9;
  background: var(--dark) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.acc-vid-play {
  width: 44px;
  height: 44px;
  background: var(--peri);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  padding-left: 3px;
  padding-top: 4px;
}
.acc-vid-info {
  padding: 14px 14px 16px;
}
.acc-vid-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.acc-vid-author {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(14,26,43,0.55);
}
.acc-car-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.acc-car-arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--peri);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: background 0.18s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(107,124,217,0.35);
}
.acc-car-arrow:hover { background: var(--peri-dark); transform: scale(1.08); }

/* ─── LEADERSHIP ENGINE INTRO ─────────────────────────────────────────── */
.le-intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 44px;
}
.le-brand-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.18s;
}
.le-brand-card:hover { opacity: 0.88; }
.le-brand-card--hd { padding: 14px 16px; gap: 5px; width: 120px; height: 120px; flex-shrink: 0; justify-content: center; }
.le-brand-card--hd .le-brand-wordmark { font-size: 18px; line-height: 1.2; }
.le-brand-card--hd .le-brand-sub { font-size: 10px; }
.le-brand-wordmark {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.le-brand-engine { color: var(--coral); }
.le-brand-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(250,247,240,0.55);
  letter-spacing: 0.01em;
}
.le-brand-sub strong { color: rgba(250,247,240,0.85); font-weight: 600; }
.le-intro-copy p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.78;
  margin-bottom: 14px;
}
.le-intro-copy p:last-of-type { margin-bottom: 0; }
@media (max-width: 700px) {
  .le-intro { grid-template-columns: 1fr; }
  .le-brand-card { padding: 24px 22px; }
}

/* ─── ASSESSMENT TOOL ROWS ────────────────────────────────────────────── */
.elev-divider {
  margin: 44px 0 28px;
}
.elev-divider:first-child { margin-top: 0; }
.elev-divider-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.elev-divider-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--peri);
  font-weight: 500;
}
.elev-divider-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.elev-divider-line {
  height: 2px;
  background: var(--cream-dark);
}

.tool-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px 28px;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(14,26,43,0.05);
  margin-bottom: 16px;
}
.tool-row:last-child { margin-bottom: 0; }
.tool-row-img {
  aspect-ratio: 1/1;
  background: rgba(14,26,43,0.06);
  border: 2px dashed rgba(14,26,43,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.28);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tool-row-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peri);
  background: rgba(139,156,228,0.1);
  border: 1px solid rgba(139,156,228,0.22);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.tool-row-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.tool-row-tagline {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.62);
  margin-bottom: 12px;
}
.tool-row-desc {
  font-size: 1.18rem;
  color: rgba(14,26,43,0.68);
  line-height: 1.75;
}

.tool-row-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--peri);
  border-radius: var(--radius);
  padding: 8px 18px;
  transition: background 0.2s;
}
.tool-row-link:hover { background: var(--peri-dark); }

/* ─── WORKSHOP LIST ───────────────────────────────────────────────────── */
.workshop-list { display: flex; flex-direction: column; margin-bottom: 40px; }
.workshop-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.workshop-item:first-child { border-top: 1px solid var(--cream-dark); }
.workshop-round-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(14,26,43,0.07);
  border: 2px dashed rgba(14,26,43,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.28);
}
.workshop-item-title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.workshop-item-sub {
  font-size: 0.84rem;
  color: rgba(14,26,43,0.55);
  line-height: 1.45;
}

/* ─── WORKSHOP CAROUSEL CARDS ────────────────────────────────────────────── */
.ws-carousel-wrap { position: relative; }
.ws-carousel-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ws-carousel-scroll::-webkit-scrollbar { display: none; }
.ws-card {
  flex: 0 0 450px;
  scroll-snap-align: start;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.ws-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(14,26,43,0.1); }
.ws-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 16px 0;
}
.ws-card-img:has(svg),
.tool-row-img:has(svg) { background: none; border-color: transparent; display: flex; align-items: center; justify-content: center; }
.ws-card-img:has(img),
.tool-row-img:has(img) { background: none; border: none; padding: 0; overflow: hidden; }
.ws-card-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; display: block; }
.tool-row-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ws-card-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(14,26,43,0.07);
  border: 2px dashed rgba(14,26,43,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.28);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ws-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.ws-card-body {
  padding: 12px 16px 14px;
  flex: 1;
}
.ws-card-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.6;
}
.ws-card-video {
  aspect-ratio: 16/9;
  background: var(--dark) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ws-card-play {
  width: 44px;
  height: 44px;
  background: var(--peri);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  padding-left: 3px;
  padding-top: 4px;
}

/* ─── WORKSHOP SECTIONS (Teams page) ────────────────────────────────── */
.ws-section { margin-bottom: 48px; }
.ws-section:last-child { margin-bottom: 0; }
.ws-section-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 12px;
  border-bottom: 2px solid;
  margin-bottom: 20px;
}
.ws-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ─── WORKSHOP IMAGE CARDS (Teams page) ─────────────────────────────── */
.ws-img-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.ws-img-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,26,43,0.09); }
.ws-img-thumb {
  aspect-ratio: 16/9;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  overflow: hidden;
}
.ws-img-thumb-title { display: none; }
.ws-img-thumb-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.55;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ws-img-name {
  padding: 12px 14px;
  /* Fixed height = 3 lines of title (+ padding) so every coloured band is
     the same size; shorter titles are vertically centred. */
  height: calc(3 * 1.3em + 24px);
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  background: var(--ink);
}
.ws-section--coral .ws-img-name  { background: var(--coral); }
.ws-section--peri  .ws-img-name  { background: var(--peri); }
.ws-section--teal  .ws-img-name  { background: #2F8B8B; }
.ws-section--navy  .ws-img-name  { background: var(--mid-navy); }
.ws-section--muted .ws-img-name  { background: rgba(14,26,43,0.4); }

/* ─── PROGRAMME CARDS ─────────────────────────────────────────────────── */
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.programme-card {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.programme-card-img {
  aspect-ratio: 16/9;
  background: rgba(14,26,43,0.07);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,26,43,0.28);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.programme-card-body { padding: 24px; }
.programme-card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.programme-card-desc {
  font-size: 0.88rem;
  color: rgba(14,26,43,0.62);
  line-height: 1.7;
  margin-bottom: 16px;
}
.programme-card-link {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri);
  border-bottom: 1px solid rgba(139,156,228,0.4);
  padding-bottom: 2px;
  text-decoration: none;
}
.programme-card-link:hover { border-bottom-color: var(--peri); }

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — NAV TRANSPARENT STATES
══════════════════════════════════════════════════════════════════════ */

.nav-home {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent !important;
  border-bottom-color: transparent !important;
  transition: background 0.35s ease, border-bottom-color 0.35s ease;
}
.nav-home.nav-scrolled {
  background: rgba(45, 67, 115, 0.97) !important;
  border-bottom-color: rgba(255,255,255,0.07) !important;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — HERO V2
══════════════════════════════════════════════════════════════════════ */

.hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /* Dark base so the hero is never "empty" before the poster/video load. */
  background: linear-gradient(135deg, #0b1628 0%, #1c2e4c 55%, #0e2040 100%);
}
.hero-v2-vid-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1628 0%, #1c2e4c 55%, #0e2040 100%);
}
.hero-v2 video,
.hero-v2-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b1628;
}
/* Keep Michelle (right-of-centre in the frame) in view. On mobile the hero
   crops to a narrow centre strip, so push the focal point further right. */
.hero-v2-photo { object-position: 60% 35%; }
@media (max-width: 768px) {
  .hero-v2-photo { object-position: 72% center; }
}
.hero-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 22, 40, 0.85) 0%,
    rgba(11, 22, 40, 0.55) 55%,
    rgba(11, 22, 40, 0.2) 100%
  );
}
.hero-v2-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px) clamp(80px, 10vw, 120px);
  width: 100%;
}
.hero-v2 h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.hero-v2 h1 .accent { color: var(--peri); }
.hero-v2-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — VIDEO MODAL
══════════════════════════════════════════════════════════════════════ */

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: min(900px, 90vw);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-modal-close {
  position: absolute;
  top: -52px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.72);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.video-modal-close:hover { color: #fff; }
.video-modal iframe,
.video-modal video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — ABOUT TWO-COL
══════════════════════════════════════════════════════════════════════ */

.about-two-col {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
}
.about-two-col-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 28px;
}
.about-two-col-text p {
  font-size: 1.18rem;
  color: rgba(14,26,43,0.7);
  line-height: 1.78;
  margin-bottom: 16px;
}
.about-photo-placeholder {
  aspect-ratio: 5 / 6;
  background: var(--peri-bg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(107,124,217,0.25);
  color: rgba(107,124,217,0.45);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
/* Homepage intro photo grid: green portrait left, two landscapes stacked right.
   Green height tracks the landscape width; equal gaps, no overlap. */
.intro-section .intro-lead {
  max-width: 52em;
  margin-bottom: 40px;
}
.intro-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 clamp(60px, 15vw, 200px);
}
.intro-photo-grid .ipg-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro-photo-grid .ipg-col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(14,26,43,0.20);
}
.ipg-crop {
  width: 100%;
  padding-top: 66.67%;
  background-size: 125% auto;
  background-position: right top;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(14,26,43,0.20);
}
@media (max-width: 768px) {
  /* The 2x2 intro grid was ~122px-wide photos on a phone (huge side padding
     + 2 columns). Stack to a single full-width column so faces are clear. */
  .intro-photo-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 16px;
  }
  .intro-photo-grid .ipg-col { gap: 16px; }
}
@media (max-width: 760px) {
  .about-two-col { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — MID-NAVY SECTION
══════════════════════════════════════════════════════════════════════ */

.section.mid-navy { background: var(--mid-navy); }

.max-impact-inner { max-width: 800px; }
.max-impact-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 24px;
}
.max-impact-inner p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
  max-width: 640px;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — ENERGY & PRACTICALITY
══════════════════════════════════════════════════════════════════════ */

.ep-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ep-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 24px;
}
.ep-text p {
  font-size: 1.18rem;
  color: rgba(14,26,43,0.7);
  line-height: 1.78;
}
.ep-callout {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px 44px 44px 52px;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.58;
  font-style: italic;
  position: relative;
}
.ep-callout::before {
  content: '\201C';
  position: absolute;
  top: 6px;
  left: 18px;
  font-size: 5.5rem;
  color: var(--coral);
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1;
  opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — SERVICES CAROUSEL
══════════════════════════════════════════════════════════════════════ */

.services-car-wrap { position: relative; }
.services-car-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.services-car-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.services-car-slide { min-width: 100%; }
.services-car-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  min-height: 420px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.services-car-card:hover { box-shadow: 0 12px 48px rgba(14,26,43,0.1); }
.services-car-photo {
  background: var(--peri-bg);
  border-right: 1px solid var(--cream-dark);
  overflow: hidden;
}
.services-car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services-car-content {
  padding: clamp(36px, 4vw, 60px) clamp(32px, 3.5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-car-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 8px;
}
.services-car-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.services-car-body {
  font-size: 1.18rem;
  color: rgba(14,26,43,0.65);
  line-height: 1.72;
}
.services-car-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri);
}

/* ══════════════════════════════════════════════════════════════════════
   CAROUSEL DOTS (shared)
══════════════════════════════════════════════════════════════════════ */

.car-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.car-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(14,26,43,0.16);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.car-dot.active {
  background: var(--coral);
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — OUR CLIENTS / LOGO CAROUSELS
══════════════════════════════════════════════════════════════════════ */

.clients-section {
  background: var(--cream);
  padding: 80px clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--cream-dark);
}
.clients-inner {
  max-width: var(--max-width);
  margin-inline: auto;
}
.clients-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
/* logo carousel rules removed — replaced by animated grid */

.logo-badge-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — SEE US IN ACTION
══════════════════════════════════════════════════════════════════════ */

.see-in-action {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sia-vid-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628 0%, #1e3050 55%, #0d1f3a 100%);
}
.see-in-action video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sia-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 40, 0.58);
}
.sia-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
}
.sia-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — TESTIMONIAL CAROUSEL
══════════════════════════════════════════════════════════════════════ */

.test-car-wrap { position: relative; }
.test-car-track-wrap { overflow: hidden; transition: height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.test-car-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.test-car-slide { min-width: 100%; padding: 4px; display: flex; align-items: center; justify-content: center; }
.test-car-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 56px) clamp(36px, 5vw, 72px);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 32px rgba(14,26,43,0.06);
}
.test-car-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 24px;
}
.test-car-avatar.coral { background: var(--coral); }
.test-car-avatar.peri  { background: var(--peri); }
.test-car-company {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.38);
  margin-bottom: 24px;
}
.test-car-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--peri);
  text-align: left;
  margin-bottom: 14px;
}
.test-car-quote {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: var(--ink);
  line-height: 1.65;
  text-align: left;
  margin-bottom: 20px;
}
.test-car-attribution {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--coral);
  text-align: left;
}
.btn-pill-outline {
  display: inline-block;
  border: 2px solid rgba(14,26,43,0.22);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-pill-outline:hover { border-color: var(--peri); color: var(--peri); }

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — SECTION HEADERS
══════════════════════════════════════════════════════════════════════ */

.home-section-hd {
  text-align: center;
  margin-bottom: 48px;
}
.home-section-hd h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO — SUBHEADLINE
══════════════════════════════════════════════════════════════════════ */
.hero-v2-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.68;
  max-width: 580px;
  margin: 20px 0 32px;
}

/* ══════════════════════════════════════════════════════════════════════
   INTRO — subtitle moved out of hero
══════════════════════════════════════════════════════════════════════ */
.intro-lead {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: rgba(14,26,43,0.78);
  line-height: 1.65;
  font-weight: 400;
}

/* ══════════════════════════════════════════════════════════════════════
   WHY CLIENTS CHOOSE — 3-column with image
══════════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 40px);
}
.why-card {
  display: flex;
  flex-direction: column;
}
.why-card-photo {
  aspect-ratio: 4 / 3;
  background: var(--peri-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(107,124,217,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(107,124,217,0.45);
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  overflow: hidden;
}
.why-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.why-card-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 16px;
}
.why-card-body {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(14,26,43,0.7);
  line-height: 1.72;
  flex: 1;
}
.wwd-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.wwd-card:hover { transform: translateY(-4px); }
.wwd-card:hover .why-card-photo img { transform: scale(1.03); }
.why-card-photo img { transition: transform 0.35s ease; }
.wwd-card-link {
  display: inline-block;
  align-self: flex-start;
  margin-top: 18px;
  background: var(--peri);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(139,156,228,0.3);
  transition: background 0.2s, transform 0.15s;
}
.wwd-card:hover .wwd-card-link {
  background: var(--peri-dark);
  transform: translateY(-2px);
}
@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ══ LEADERSHIP TECHNOLOGY CARD — mini diagnostic mockup ═══════════════
   Recreates the LE diagnostic card style with 3D perspective tilt
══════════════════════════════════════════════════════════════════════ */
.letih-photo {
  background: linear-gradient(145deg, #eeeae2 0%, #e4dfd5 100%);
  overflow: visible !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.letih-wrap {
  transform: perspective(560px) rotateY(-17deg) rotateX(5deg) rotate(-1.5deg);
  filter: drop-shadow(14px 20px 30px rgba(14,26,43,0.32));
  width: 84%;
  max-width: 252px;
}
.letih-card {
  background: #0e1a2b;
  border-radius: 11px;
  padding: 15px 17px 13px;
  border: 1px solid rgba(255,255,255,0.08);
}
.letih-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.letih-cohort {
  font-family: var(--font-mono);
  font-size: 7.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}
.letih-badge {
  background: #F5A832;
  color: #1a1100;
  font-family: var(--font-head);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.6;
}
.letih-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}
.letih-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.letih-metric-name, .letih-metric-score {
  font-family: var(--font-body);
  font-size: 8.5px;
  color: rgba(255,255,255,0.58);
}
.letih-bar-bg {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 5.5px;
  margin-bottom: 9px;
  overflow: hidden;
}
.letih-bar-fill {
  height: 100%;
  border-radius: 50px;
}
.letih-bar-fill--copper { background: #E8A83A; }
.letih-bar-fill--brick  { background: #C84B38; }
.letih-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.09);
  margin: 10px 0 8px;
}
.letih-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.letih-le-logo {
  height: 14px;
  width: auto;
  display: block;
}

/* ══ LEADERSHIP TECHNOLOGY CARD — laptop mockup ════════════════════════ */
.ltop-photo {
  background: linear-gradient(145deg, #eeeae2 0%, #e4dfd5 100%);
  overflow: visible !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltop-wrap {
  transform: perspective(560px) rotateY(-14deg) rotateX(4deg) rotate(-1deg);
  filter: drop-shadow(14px 20px 30px rgba(14,26,43,0.30));
  width: 88%;
  max-width: 268px;
}
/* Lid / screen */
.ltop-lid {
  background: #1a2d47;
  border-radius: 7px 7px 2px 2px;
  padding: 5px 5px 3px 5px;
}
.ltop-screen {
  background: #0e1a2b;
  border-radius: 3px;
  padding: 11px 13px 10px;
}
.ltop-diag-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 9px;
}
.ltop-cohort {
  font-family: var(--font-mono);
  font-size: 6.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  line-height: 1.5;
}
.ltop-badge {
  background: #F5A832;
  color: #1a1100;
  font-family: var(--font-head);
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.6;
}
.ltop-diag-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.ltop-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.ltop-metric, .ltop-score {
  font-family: var(--font-body);
  font-size: 8px;
  color: rgba(255,255,255,0.56);
}
.ltop-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 5px;
  margin-bottom: 8px;
  overflow: hidden;
}
.ltop-bar-fill {
  height: 100%;
  border-radius: 50px;
}
.ltop-copper { background: #E8A83A; }
.ltop-brick  { background: #C84B38; }
.ltop-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 9px 0 7px;
}
.ltop-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ltop-le-logo {
  height: 13px;
  width: auto;
  display: block;
}
/* Hinge */
.ltop-hinge {
  background: linear-gradient(to bottom, #0c1625, #182e4a);
  height: 5px;
}
/* Base / keyboard */
.ltop-base {
  background: linear-gradient(to bottom, #1d2f4a, #223256);
  border-radius: 0 0 6px 6px;
  height: 34px;
  margin: 0 -7px;
  padding: 6px 12px 4px;
  position: relative;
}
.ltop-keys {
  height: 9px;
  border-radius: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.07) 0px, rgba(255,255,255,0.07) 7px,
    transparent 7px, transparent 9px
  );
  margin-bottom: 4px;
}
.ltop-trackpad {
  width: 34px;
  height: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
  margin: 0 auto;
}

/* ══ ELEVATIONS OF INFLUENCE MODEL ════════════════════════════════════ */
.elevations-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}
.elevations-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.elev-rings {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  flex-shrink: 0;
}
.elev-svg {
  display: block;
  width: 100%;
  height: auto;
}
.elev-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.elev-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
  cursor: default;
}
.elev-item:last-child { border-bottom: none; }
.elev-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--peri);
  padding-top: 3px;
  min-width: 24px;
  opacity: 0.7;
}
.elev-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.elev-content p {
  font-size: 0.92rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.6;
}
.elev-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peri);
  background: rgba(107,124,217,0.08);
  border: 1px solid rgba(107,124,217,0.15);
  padding: 3px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .elevations-layout { grid-template-columns: 1fr; }
  .elev-rings { max-width: 400px; }
}

/* ══════════════════════════════════════════════════════════════════════
   MEET — two-column with portrait placeholders
══════════════════════════════════════════════════════════════════════ */
.meet-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.meet-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}
.meet-text p {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(14,26,43,0.72);
  line-height: 1.72;
  margin-bottom: 18px;
}
.meet-text .btn-primary { margin-top: 16px; }
.meet-portraits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 85%;
}
.meet-portrait-ph {
  aspect-ratio: 3 / 4;
  background: var(--peri-bg);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(107,124,217,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(107,124,217,0.45);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.meet-btn-mob { display: none; }
@media (max-width: 768px) {
  /* Stack the Meet section so the Michelle & Shaun portraits run full
     width instead of being crammed into half the screen. */
  .meet-layout { grid-template-columns: 1fr; gap: 32px; }
  .meet-portraits { width: 100%; }
  /* Show the "Meet the Team" button below the portraits on phones. */
  .meet-btn-desk { display: none; }
  .meet-btn-mob { display: inline-block; }
}

/* ══════════════════════════════════════════════════════════════════════
   HOMEPAGE — FOOTER NEWSLETTER LABEL
══════════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════════════════
   OUR CLIENTS — ANIMATED GRID
══════════════════════════════════════════════════════════════════════ */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client-logo {
  background: var(--cream);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.client-logo:hover { background: white; }
.client-logo img {
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.client-logo:hover img { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════════════════
   SEE US IN ACTION — RESTRUCTURED (heading above + full-screen video)
══════════════════════════════════════════════════════════════════════ */

.sia-hd-section {
  background: var(--cream);
  padding: var(--section-pad) 0;
  text-align: center;
}
.sia-hd-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.see-in-action-full {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.see-in-action-full video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sia-full-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════
   CAROUSEL — ARROW BUTTONS (shared across carousels)
══════════════════════════════════════════════════════════════════════ */

.car-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.car-nav-row .car-dots { margin-top: 0; }

.car-btn {
  background: #fff;
  border: 2px solid var(--cream-dark);
  color: var(--ink);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  line-height: 1;
  flex-shrink: 0;
}
.car-btn:hover { background: var(--peri); border-color: var(--peri); color: #fff; }

/* Testimonial carousel — arrows flanking the box at a fixed elevation */
.test-car-stage { position: relative; }
.test-car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: #fff;
  border: 2px solid var(--cream-dark);
  color: var(--ink);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  box-shadow: 0 6px 20px rgba(14,26,43,0.14);
}
.test-car-arrow:hover { background: var(--peri); border-color: var(--peri); color: #fff; }
.test-car-arrow--prev { left: 0; }
.test-car-arrow--next { right: 0; }

/* "Our Thinking" carousel — arrows in a side gutter so they don't sit over the videos */
.thinking-car-stage { position: relative; }
.thinking-car-stage > .thinking-car-wrap { margin: 0 84px; }
.thinking-arrow--prev { left: 0; }
.thinking-arrow--next { right: 0; }
@media (max-width: 768px) {
  .thinking-car-stage > .thinking-car-wrap { margin: 0; }
  .thinking-arrow--prev { left: 2px; }
  .thinking-arrow--next { right: 2px; }
}
@media (max-width: 900px) {
  .test-car-arrow { width: 42px; height: 42px; font-size: 1.2rem; }
  .test-car-arrow--prev { left: 2px; }
  .test-car-arrow--next { right: 2px; }
}

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIAL — CLIENT LOGO PLACEHOLDER
══════════════════════════════════════════════════════════════════════ */

.test-car-logo {
  width: 180px;
  height: 60px;
  background: var(--cream);
  border: 2px dashed var(--cream-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.3);
  margin: 0 auto 28px;
}

/* ══════════════════════════════════════════════════════════════════════
   OUR THINKING — CAROUSEL
══════════════════════════════════════════════════════════════════════ */

.thinking-car-wrap { position: relative; overflow: hidden; }
.thinking-car-scroll {
  display: flex;
  gap: 36px;
  overflow: hidden;
}
.thinking-video-card {
  min-width: calc(50% - 18px);
  flex-shrink: 0;
  cursor: pointer;
  border-radius: var(--radius-lg);
  transition: transform 0.2s;
}
.thinking-video-card:hover { transform: translateY(-3px); }
.thinking-video-thumb {
  aspect-ratio: 16 / 9;
  background: var(--dark-card) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.thinking-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,124,217,0.22), rgba(232,117,95,0.12));
}
.thinking-video-thumb .video-play {
  width: 64px; height: 64px;
  font-size: 1.4rem;
}
.thinking-video-speaker {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 12px;
}
.thinking-video-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO CLIENT LOGO TICKER
══════════════════════════════════════════════════════════════════════ */
@keyframes scrollLTR {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.hero-logo-ticker {
  background: var(--mid-navy);
  overflow: hidden;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollLTR 45s linear infinite;
}
.hero-ticker-track .ribbon-logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  margin: 0 64px;
  filter: brightness(0) invert(1);
  opacity: 0.65;
}
.hero-ticker-track { will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
/* Logo ribbon is a desktop-only flourish; on phones the static client grid
   (with its scatter-in animation) carries the logos instead. */
@media (max-width: 768px) {
  .hero-logo-ticker { display: none; }
}

/* ══════════════════════════════════════════════════════════════════════
   WHO WE WORK WITH — two-column layout
══════════════════════════════════════════════════════════════════════ */
.who-we-work-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-we-work-image {
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.28);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.who-we-work-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-bottom: 24px;
}
.who-we-work-text p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.78;
}

/* ══════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════ */
.reveal-from-left,
.reveal-from-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-from-left  { transform: translateX(-52px); }
.reveal-from-right { transform: translateX(52px); }
.reveal-up         { transform: translateY(36px); }
.reveal-from-left.revealed,
.reveal-from-right.revealed,
.reveal-up.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-from-left, .reveal-from-right, .reveal-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   TYPEWRITER CURSOR
══════════════════════════════════════════════════════════════════════ */
.tw-cursor {
  display: inline-block;
  color: var(--peri);
  font-weight: 300;
  animation: tw-blink 0.65s step-end infinite;
  margin-left: 1px;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════════════
   SPLIT CTA — POI left / LE right (homepage)
══════════════════════════════════════════════════════════════════════ */
.poi-cta-split-section {
  padding: 76px clamp(24px, 5vw, 80px);
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.poi-cta-split-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,95,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.poi-cta-eyebrow {
  font-family: var(--font-head);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.poi-cta-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: rgba(255,255,255,0.85);
  opacity: 0.8;
  flex-shrink: 0;
}
.poi-cta-split {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.poi-cta-split--single {
  grid-template-columns: 1fr;
  max-width: 500px;
}
.poi-cta-card {
  padding: 8px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.poi-cta-card--poi { border-right: 1px solid rgba(255,255,255,0.1); }
.poi-cta-card-logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.poi-cta-card--poi .poi-cta-card-logo img { height: 44px; width: auto; }
.poi-cta-card--le  .poi-cta-card-logo img { height: 44px; width: auto; }
.poi-cta-card-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
  max-width: 430px;
}
.poi-cta-card-text strong { font-weight: 700; color: #fff; }
.poi-cta-card--poi .poi-cta-card-text strong { color: var(--peri); }
.poi-cta-card--le  .poi-cta-card-text strong { color: var(--coral); }
.poi-cta-card .btn-primary {
  letter-spacing: 0.06em;
  box-shadow: 0 4px 20px rgba(107,124,217,0.3);
}
.poi-cta-card .btn-primary:hover { box-shadow: 0 6px 28px rgba(107,124,217,0.4); }
@media (max-width: 760px) {
  .poi-cta-split { grid-template-columns: 1fr; }
  .poi-cta-card { padding: 0 16px; }
  .poi-cta-card--poi { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 44px; }
  .poi-cta-card--le { padding-top: 44px; }
}

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIAL — HEADSHOT + LOGO IMAGES
══════════════════════════════════════════════════════════════════════ */
.test-car-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.test-car-avatars {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
.test-car-avatar-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0;
}
.test-car-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  margin: 0;
  opacity: 0.6;
}
.test-car-logo-text {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(14,26,43,0.3);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
@media (max-width: 768px) {
  /* The logo + two headshots row is far too wide for a phone, so stack it
     vertically and shrink it. Everything stays visible and fits the card. */
  .test-car-header { flex-direction: column; gap: 14px; margin-bottom: 22px; }
  .test-car-avatars { gap: 14px; }
  .test-car-avatar-img { width: 58px; height: 58px; }
  .test-car-logo-img { height: 40px; max-width: 150px; }
}

@media (max-width: 760px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .client-logo { padding: 24px 12px; }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo { padding: 22px 12px; min-width: 0; }
  .client-logo img { max-width: 104px; max-height: 30px; }
}

/* ─── EXTRAORDINARY TEAMS MODEL TABLE ─── */
.bet-matrix{width:100%;border-collapse:collapse;table-layout:fixed;font-family:'Source Sans 3',sans-serif;}
.bet-matrix th,.bet-matrix td{text-align:left;vertical-align:top;padding:14px 13px;}
.bet-matrix tbody tr{height:50%;}
.bet-matrix tbody tr+tr{border-top:1px solid rgba(107,124,217,.16);}
.bet-axis{font-family:'Oswald',sans-serif;font-size:1.15rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding-top:14px;padding-bottom:14px;}
.bet-axis.bet-rel{color:var(--peri);background:rgba(107,124,217,.10);}
.bet-axis.bet-res{color:var(--coral);background:rgba(232,117,95,.10);border-left:1px solid rgba(107,124,217,.16);}
.bet-rowhead{width:12%;font-family:'Oswald',sans-serif;font-weight:600;font-size:1rem;letter-spacing:.01em;background:rgba(14,26,43,.02);}
.bet-rowhead-rel{color:var(--peri);}
.bet-rowhead-res{color:var(--coral);border-left:1px solid rgba(107,124,217,.16);}
.bet-cell{width:38%;border-left:1px solid rgba(107,124,217,.16);}
.bet-subgroup{font-family:'JetBrains Mono',monospace;font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(14,26,43,.55);margin-bottom:8px;}
.bet-subgroup+.bet-list{margin-bottom:16px;}
.bet-list{list-style:none;margin:0;padding:0;}
.bet-list li{position:relative;padding-left:16px;font-size:.9rem;line-height:1.5;color:#0E1A2B;}
.bet-list li+li{margin-top:6px;}
.bet-list li::before{content:"";position:absolute;left:0;top:.5em;width:6px;height:6px;border-radius:50%;}
.bet-list-rel li::before{background:var(--peri);}
.bet-list-res li::before{background:var(--coral);}

/* ─── EXTRAORDINARY TEAMS MATRIX — cqw units so sizing is relative to its column, not viewport ─── */
.mx-fig { --mx-sq:clamp(112px,33cqw,170px); --mx-gap:10px; --mx-accent:#6B7CD9; display:grid; grid-template-columns:auto auto auto; grid-template-rows:auto auto auto; column-gap:6px; row-gap:4px; align-items:stretch; justify-content:center; max-width:580px; margin-inline:auto; }
.mx-ylabel { grid-column:1; grid-row:1; display:flex; flex-direction:column; justify-content:center; align-items:flex-end; text-align:right; width:clamp(92px,38cqw,140px); }
.mx-xlabel { grid-column:3; grid-row:3; width:calc(var(--mx-sq)*2 + var(--mx-gap)); text-align:center; margin-top:2px; }
.mx-xlabel .mx-axis-sub { max-width:215px; margin-inline:auto; text-wrap:balance; }
.mx-axis { font-family:var(--font-head); font-weight:700; font-size:clamp(17px,8cqw,26px); line-height:1; letter-spacing:.01em; }
.mx-axis-sub { margin-top:6px; font-family:var(--font-body); font-size:clamp(9.7px,4.8cqw,12.1px); line-height:1.34; }
.mx-hilo { grid-column:2; grid-row:1; display:flex; flex-direction:column; justify-content:space-between; align-items:center; }
.mx-hilo span { display:inline-flex; flex-direction:column; align-items:center; gap:1px; line-height:1.05; }
.mx-hilo span i { font-style:normal; font-size:14.2px; line-height:1; }
.mx-lohi { grid-column:3; grid-row:2; width:calc(var(--mx-sq)*2 + var(--mx-gap)); display:flex; justify-content:space-between; align-items:center; }
.mx-hilo span, .mx-lohi span { font-family:var(--font-body); font-weight:600; font-size:10.4px; letter-spacing:.02em; color:rgba(14,26,43,.5); white-space:nowrap; }
.mx-cells { grid-column:3; grid-row:1; display:grid; grid-template-columns:repeat(2,var(--mx-sq)); gap:var(--mx-gap); }
.mx-cell { width:var(--mx-sq); height:var(--mx-sq); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:9px 5px; border-radius:8px; overflow:hidden; }
.mx-cell--plain { background:#fff; border:2px solid var(--ink); }
.mx-cell--driven { background:#15233A; border-radius:14px; color:#fff; box-shadow:0 12px 26px rgba(14,26,43,.18); }
.mx-cell-title { font-family:var(--font-head); font-weight:700; font-size:clamp(14px,6cqw,20px); line-height:1.04; letter-spacing:.005em; }
.mx-cell--plain .mx-cell-title { color:var(--ink); }
.mx-cell--driven .mx-cell-title { color:#fff; }
.mx-cell-text { margin-top:5px; font-family:var(--font-body); font-size:clamp(9.7px,4.3cqw,12.1px); line-height:1.26; text-wrap:balance; }
.mx-cell--plain .mx-cell-text { color:rgba(14,26,43,.82); }
.mx-cell--driven .mx-cell-text { color:rgba(255,255,255,.92); }
@media (max-width:960px) { .mx-fig { margin-inline:auto; } }
@media (max-width:560px) {
  /* Bigger boxes + Oswald text on phones, matching the Leadership Engine
     matrix. Uses vw (not cqw) so it scales predictably and stays within the
     viewport. The long "Relationships" axis on the Teams page is shrunk
     separately in that page's own <style> so the boxes can stay full size. */
  .mx-fig { --mx-sq:clamp(104px,30vw,116px) !important; column-gap:4px; }
  .mx-fig .mx-ylabel { width:clamp(76px,22vw,104px) !important; }
  .mx-fig .mx-axis { font-size:clamp(0.95rem,3.8vw,1.18rem) !important; letter-spacing:0; }
  .mx-fig .mx-axis-sub { font-size:clamp(0.58rem,2vw,0.7rem) !important; }
  /* Title sized so the longest quadrant word ("Dysfunctional", "Extraordinary")
     fits inside the square without clipping. */
  .mx-fig .mx-cell-title { font-size:clamp(0.9rem,4vw,0.98rem) !important; line-height:1.04 !important; }
  .mx-fig .mx-cell-text { font-size:clamp(0.6rem,2.3vw,0.72rem) !important; line-height:1.22 !important; }
  .mx-fig .mx-cell { padding:8px 5px !important; }
}

/* ══════════════════════════════════════════════════════════════════════
   PLAY BUTTONS — CSS triangle instead of the ▶ text glyph
   iOS renders ▶ as a colour emoji superimposed on the styled button. Drawing
   the arrow as a CSS triangle is identical on desktop and mobile. Placed last
   so it wins source order over each button's own base rule. Covers every
   play button site-wide (homepage, conferences, teams).
══════════════════════════════════════════════════════════════════════ */
.video-play,
.thinking-video-thumb .video-play,
.ws-card-play,
.acc-vid-play {
  font-size: 0;
  padding: 0;
  text-indent: 0;
}
.video-play::after,
.ws-card-play::after,
.acc-vid-play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

/* ══════════════════════════════════════════════════════════════════════
   MOBILE FIXES — inner pages (leaders/teams/conferences share these classes)
   Placed last so they win source order; !important only where overriding
   inline styles in the markup.
══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero title had inline white-space:nowrap, so it ran off the right edge.
     Let it wrap on phones (desktop keeps the single-line look). */
  .page-hero h1 { white-space: normal !important; }

  /* Two-column challenge/perspective stacks into one column. */
  .two-col { grid-template-columns: 1fr; gap: 36px; }

  /* Accordion header: image + title + button no longer fit in a row, so
     stack them and shrink the thumbnail + title. */
  .poi-acc-hd { flex-direction: column; align-items: flex-start; gap: 14px; }
  .poi-acc-hd-inner { gap: 14px; }
  .poi-acc-hd-img { width: 72px; height: 52px; flex-shrink: 0; }
  .poi-acc-btn { align-self: flex-end; }
  .poi-acc-title { font-size: 1.18rem; line-height: 1.2; }

  /* Diagnostic "tool rows": a fixed 180px image column pushed the text off
     the right edge. Stack them with a small circle image on top. */
  .tool-row { grid-template-columns: 1fr; gap: 16px; padding: 22px 20px; }
  .tool-row-img { width: 64px; }
  .tool-row-title { font-size: 1.25rem; }
  .tool-row-desc { font-size: 1rem; line-height: 1.65; }

  /* Leadership Engine hero: stack to one column, bigger wordmark, smaller
     subtitle, and the platform image runs full width below the text. */
  .le-hero-grid { grid-template-columns: 1fr !important; gap: 22px !important; align-items: start !important; }
  .le-hero-wordmark { height: 54px !important; margin-bottom: 14px !important; }
  .le-hero-grid .page-hero-sub { font-size: 0.98rem; }
  .le-hero-card-wrap { display: block !important; }
  .le-hero-card { width: 100% !important; }

  /* Leadership Engine intro: stack the text and platform image full width. */
  .le-intro-grid { grid-template-columns: 1fr !important; gap: 26px !important; }

  /* Workshop / Experiences cards: 4 columns crushed them into tiny portrait
     slivers. Drop to 2 columns on phones. */
  .ws-section-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  /* Let each card's box grow to fit its full description instead of clamping
     it to 4 lines with an ellipsis. */
  .ws-img-thumb { aspect-ratio: auto; height: auto; min-height: 116px; padding: 16px 14px; }
  .ws-img-thumb-desc { -webkit-line-clamp: unset; display: block; font-size: 0.8rem; }

  /* Photo montage bands: 3 columns x fixed 300px height squashed the photos
     into tall slivers. Drop to 2 columns at a sensible height. */
  .photo-band-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .photo-band-grid img { height: 180px !important; }

  /* Workshop / YT cards carousel: fixed 450px width overflows on phones.
     Snap each card to ~90vw so the next card peeks, indicating scroll. */
  .ws-card { flex: 0 0 calc(90vw - 32px); }
  .ws-carousel-scroll { gap: 14px; padding-left: clamp(16px,4vw,32px); padding-right: clamp(16px,4vw,32px); scroll-padding-left: clamp(16px,4vw,32px); }
}
