:root {
  --navy: #0b1f33;
  --navy-deep: #07141f;
  --gold: #c5a073;
  --gold-soft: #d4b56a;
  --ink: #121820;
  --steel: #5c6b7a;
  --fog: #f7f8fa;
  --line: #e5e8ec;
  --white: #ffffff;
  --font-sans: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-serif: "Syne", "Segoe UI", sans-serif;
  --container: min(1180px, calc(100% - 2.5rem));
  --header-h: 72px;
  --topbar-h: 36px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .bn-drop__title, .bn-hero-slide h1 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
}
.bn-logo { font-family: var(--font-display); letter-spacing: -.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin-inline: auto; }

/* Top utility bar — Bain */
.bn-topbar {
  position: relative;
  z-index: 120;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--steel);
}
.bn-topbar__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.bn-topbar__left, .bn-topbar__right { display: flex; align-items: center; gap: 1.1rem; }
.bn-topbar a:hover { color: var(--gold); }
.bn-topbar a i,
.bn-locale-trigger i { font-size: .58rem; margin-left: .2rem; }
.bn-topbar .fa-globe,
.bn-topbar .fa-bookmark { font-size: .75rem; margin-left: 0; margin-right: .35rem; }
.bn-locale-trigger {
  appearance: none;
  border: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: var(--steel);
  cursor: pointer;
}
.bn-locale-trigger .fa-globe { color: var(--gold); }
.bn-locale-trigger:hover,
.bn-locale-trigger[aria-expanded="true"] { color: var(--gold); }

/* Region & language panel */
.bn-locale {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--topbar-h);
  z-index: 115;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(7,20,31,.08);
}
.bn-locale[hidden] { display: none !important; }
body { position: relative; }
.bn-locale__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 1.75rem 0 2rem;
}
.bn-locale__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.bn-locale__head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.01em;
}
.bn-locale__close {
  appearance: none;
  border: 0;
  background: none;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.bn-locale__close:hover { color: var(--navy); }
.bn-locale__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}
.bn-locale__col h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.bn-locale__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.bn-locale__col a {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.bn-locale__col a:hover { color: var(--gold); }
.bn-locale__col a.is-active { color: var(--gold); font-weight: 700; }
.bn-locale__flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.bn-locale__globe {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef1f4;
  color: var(--steel);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .7rem;
}
.bn-locale__ext {
  font-size: .7rem;
  color: var(--steel);
  margin-left: .15rem;
}
.bn-locale__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.bn-locale__note p {
  margin: 0;
  max-width: 72ch;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.65;
  text-transform: none;
  letter-spacing: 0;
}
.bn-locale__note a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.bn-locale__note a:hover { color: var(--navy); }

/* Header — Bain */
.bn-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

/* Home: video under transparent menu (dark look), fixed sticky */
body.is-home .bn-topbar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 120;
  background: transparent;
  border-bottom: 0;
  color: rgba(255,255,255,.78);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
body.is-home .bn-topbar a:hover,
body.is-home .bn-locale-trigger:hover,
body.is-home .bn-locale-trigger[aria-expanded="true"] { color: #fff; }
body.is-home .bn-locale-trigger .fa-globe { color: var(--gold); }
body.is-home .bn-header {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--topbar-h);
  z-index: 110;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: background .2s ease, border-color .2s ease;
}
body.is-home .bn-locale {
  position: fixed;
  top: var(--topbar-h);
}
body.is-home .bn-nav__link,
body.is-home .bn-search-btn,
body.is-home .bn-bookmark {
  color: rgba(255,255,255,.92);
}
body.is-home .bn-nav__link i { color: var(--gold); }
body.is-home .bn-nav__link:hover,
body.is-home .bn-nav__link.is-active,
body.is-home .bn-nav__item.is-active > .bn-nav__link,
body.is-home .bn-nav__item.is-open > .bn-nav__link {
  color: #fff;
  border-bottom-color: #fff;
}
body.is-home .bn-search-btn:hover,
body.is-home .bn-bookmark:hover { color: #fff; }
body.is-home .bn-menu-toggle {
  border-color: rgba(255,255,255,.35);
  background: transparent;
}
body.is-home .bn-menu-toggle span { background: #fff; }

/* Mega menu open OR scrolled → solid white sticky header */
body.is-home.nav-solid .bn-topbar,
body.is-home.is-scrolled .bn-topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--steel);
}
body.is-home.nav-solid .bn-topbar a:hover,
body.is-home.nav-solid .bn-locale-trigger:hover,
body.is-home.nav-solid .bn-locale-trigger[aria-expanded="true"],
body.is-home.is-scrolled .bn-topbar a:hover,
body.is-home.is-scrolled .bn-locale-trigger:hover,
body.is-home.is-scrolled .bn-locale-trigger[aria-expanded="true"] { color: var(--gold); }
body.is-home.nav-solid .bn-header,
body.is-home.is-scrolled .bn-header {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
body.is-home.nav-solid .bn-nav__link,
body.is-home.nav-solid .bn-search-btn,
body.is-home.nav-solid .bn-bookmark,
body.is-home.is-scrolled .bn-nav__link,
body.is-home.is-scrolled .bn-search-btn,
body.is-home.is-scrolled .bn-bookmark { color: var(--ink); }
body.is-home.nav-solid .bn-nav__link:hover,
body.is-home.nav-solid .bn-nav__item.is-open > .bn-nav__link,
body.is-home.is-scrolled .bn-nav__link:hover,
body.is-home.is-scrolled .bn-nav__item.is-open > .bn-nav__link {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
body.is-home.nav-solid .bn-menu-toggle,
body.is-home.is-scrolled .bn-menu-toggle {
  border-color: var(--line);
  background: #fff;
}
body.is-home.nav-solid .bn-menu-toggle span,
body.is-home.is-scrolled .bn-menu-toggle span { background: var(--navy); }
.bn-header__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.bn-logo {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  font-family: var(--font-display);
  white-space: nowrap;
  margin-right: .65rem;
  color: var(--navy);
  text-decoration: none;
}
.bn-logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.03em;
  line-height: 1;
  color: inherit;
}
.bn-logo__business {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  position: relative;
  top: -.05em;
}
/* Home dark hero: white logo like the original */
body.is-home .bn-logo { color: #fff; }
body.is-home .bn-logo__business { color: rgba(255,255,255,.55); }
body.is-home.nav-solid .bn-logo,
body.is-home.is-scrolled .bn-logo { color: var(--navy); }
body.is-home.nav-solid .bn-logo__business,
body.is-home.is-scrolled .bn-logo__business { color: var(--steel); }
.bn-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
  min-width: 0;
}
.bn-nav__item { position: static; }
.bn-nav__link {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: 1.55rem .75rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 3px solid transparent;
}
.bn-nav__link i { font-size: .65rem; color: var(--gold); }
.bn-nav__link:hover,
.bn-nav__link.is-active,
.bn-nav__item.is-active > .bn-nav__link,
.bn-nav__item.is-open > .bn-nav__link {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.bn-header__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.bn-search-btn {
  appearance: none;
  border: 0;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
}
.bn-search-btn:hover { color: var(--gold); }
.bn-bookmark {
  color: var(--ink);
  font-size: 1rem;
  display: inline-flex;
}
.bn-bookmark:hover { color: var(--gold); }
.bn-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.bn-menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
}

/* Dropdowns — Bain mega */
.bn-drop {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 18px 36px rgba(7,20,31,.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: .15s ease;
  z-index: 90;
}
.bn-nav__item.is-open .bn-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.bn-drop__inner {
  width: var(--container);
  margin: 0 auto;
  padding: 1.75rem 0 2.25rem;
}
.bn-drop__title {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.35rem;
}
.bn-drop__title:hover { color: var(--gold); }
.bn-drop__heading {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #9aa3ad;
}
.bn-drop__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .35rem 2.5rem;
}
.bn-drop__cols--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bn-drop__cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bn-drop__cols--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bn-drop__cols > div,
.bn-drop__side-links {
  display: grid;
  gap: .85rem;
  align-content: start;
}
.bn-drop__cols a,
.bn-drop__side-links a {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.35;
}
.bn-drop__cols a:hover,
.bn-drop__side-links a:hover { color: var(--gold); }
.bn-drop__cta {
  display: inline-block;
  margin-top: .85rem;
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.bn-drop__cta:hover { color: var(--navy) !important; }

/* Insights mega */
.bn-drop__inner--insights {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.bn-drop__side {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}
.bn-drop__side .bn-drop__title { margin-bottom: 1.1rem; }
.bn-drop__side-links { margin-bottom: .5rem; }
.bn-drop__main { padding-left: 2.25rem; }

/* About mega */
.bn-drop__inner--about {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}
.bn-drop__about-links {
  padding-right: 2.25rem;
  border-right: 1px solid var(--line);
}
.bn-drop__further { padding-left: 2.25rem; }
.bn-drop__further .bn-drop__heading { margin-bottom: 1.1rem; }

.bn-nav__item.is-open > .bn-nav__link i {
  transform: rotate(180deg);
}
.bn-nav__link i { transition: transform .15s ease; }

/* Buttons */
.bn-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s ease;
}
.bn-btn:hover, .btn-dark:hover { background: #14304a; }
.bn-btn--gold, .btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.bn-btn--gold:hover, .btn-primary:hover { background: var(--gold-soft); }
.bn-btn--ghost, .btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.bn-btn--outline, .btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* Home — full-screen hero under transparent menu */
.bn-hero-stage {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  background: var(--navy-deep);
  overflow: hidden;
}
.bn-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
  pointer-events: none;
}
.bn-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.bn-hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a1420 center/cover no-repeat;
}
.bn-hero-slide__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}
.bn-hero-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,20,31,.82) 0%, rgba(7,20,31,.45) 50%, rgba(7,20,31,.3) 100%),
    linear-gradient(180deg, rgba(7,20,31,.45) 0%, transparent 38%, rgba(7,20,31,.58) 100%);
}
.bn-hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 2rem) 0 8.5rem;
  color: #fff;
  max-width: min(720px, var(--container));
  margin-left: max(1.25rem, calc((100% - var(--container)) / 2));
  margin-right: auto;
}
@media (prefers-reduced-motion: reduce) {
  .bn-hero-slide__video { display: none; }
}
.bn-hero-slide__label {
  margin: 0 0 .85rem;
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.bn-hero-slide h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 700;
  max-width: 16ch;
}
.bn-hero-slide__cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  width: fit-content;
}
.bn-hero-slide__cta:hover { color: #fff; }
.bn-hero-stage__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 0 1.5rem;
}
.bn-hero-stage__bar-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.bn-hero-tabs {
  display: flex;
  flex: 1;
  gap: 0;
  min-width: 0;
  overflow-x: auto;
}
.bn-hero-tabs__item {
  appearance: none;
  border: 0;
  background: none;
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  font-weight: 600;
  padding: 1.1rem 1.15rem .35rem 0;
  margin-right: 1.75rem;
  cursor: pointer;
  position: relative;
  text-align: left;
  white-space: nowrap;
}
.bn-hero-tabs__progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.25);
  overflow: hidden;
}
.bn-hero-tabs__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}
.bn-hero-tabs__item:hover { color: #fff; }
.bn-hero-tabs__item.is-active { color: #fff; }
.bn-hero-tabs__item.is-active .bn-hero-tabs__progress::after {
  animation: bnHeroProgress 7s linear forwards;
}
@keyframes bnHeroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.bn-hero-scroll {
  display: grid;
  justify-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-bottom: .15rem;
}
.bn-hero-scroll i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .7rem;
}
.bn-hero-scroll:hover { color: #fff; }
.bn-hero-scroll:hover i { border-color: #fff; }

.bn-section { padding: 4.5rem 0; }
.bn-section--fog { background: var(--fog); }
.bn-section--navy { background: var(--navy); color: #fff; }
.bn-kicker {
  margin: 0 0 .55rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bn-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.bn-section__lead {
  margin: 0 0 2rem;
  color: var(--steel);
  max-width: 52ch;
  font-size: 1.05rem;
}
.bn-section--navy .bn-section__lead { color: rgba(255,255,255,.72); }

/* Home industries — independent floating video pills */
.bn-industries-rail {
  padding: 3.75rem 0 4.75rem;
  background: #fff;
  overflow: hidden;
}
.bn-industries-rail__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.bn-industries-rail__head .bn-section__lead { margin-bottom: 0; max-width: 48ch; }
.bn-industries-rail__all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--navy);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, gap .2s ease;
}
.bn-industries-rail__all:hover { color: var(--gold); gap: .65rem; }
.bn-industries-rail__viewport {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
  cursor: grab;
}
.bn-industries-rail__viewport.is-dragging { cursor: grabbing; }
.bn-industries-rail__viewport.is-paused .bn-industries-rail__track {
  animation-play-state: paused;
}
.bn-industries-rail__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1.15rem;
  padding: 0 1.25rem;
  animation: bnRailScroll 140s linear infinite;
  will-change: transform;
}
@keyframes bnRailScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.bn-pill {
  --pill-y: 0px;
  --pill-amp: 18px;
  --pill-dur: 7s;
  --pill-delay: 0s;
  /* ~4.5 cards across a typical desktop (gap included) */
  --pill-w: min(240px, calc((100vw - 6rem) / 4.5));
  position: relative;
  flex: 0 0 auto;
  width: var(--pill-w);
  height: calc(var(--pill-w) * 2.15);
  border-radius: 999px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 14px 34px rgba(11, 31, 51, .16);
  transform: translate3d(0, var(--pill-y), 0);
  animation: bnPillFloat var(--pill-dur) ease-in-out var(--pill-delay) infinite;
  transition: box-shadow .35s ease, filter .35s ease;
  will-change: transform;
}
@keyframes bnPillFloat {
  0%, 100% { transform: translate3d(0, calc(var(--pill-amp) * .55), 0); }
  50% { transform: translate3d(0, calc(var(--pill-amp) * -1), 0); }
}
.bn-pill__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  pointer-events: none;
  background: var(--navy-deep);
}
.bn-pill__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,20,31,.05) 28%, rgba(7,20,31,.55) 62%, rgba(7,20,31,.9) 100%);
  pointer-events: none;
}
.bn-pill__label {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(.8rem, 1vw, .95rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.22;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
  white-space: normal;
  overflow-wrap: break-word;
  word-break: keep-all;
  hyphens: none;
}
.bn-pill:hover {
  box-shadow: 0 22px 44px rgba(11, 31, 51, .26);
  z-index: 2;
  animation-play-state: paused;
  filter: brightness(1.05);
}
.bn-pill:hover .bn-pill__video { transform: scale(1.12); transition: transform .7s ease; }
@media (prefers-reduced-motion: reduce) {
  .bn-industries-rail__track,
  .bn-pill { animation: none; }
}

.bn-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}
.bn-split__media {
  min-height: 320px;
  background:
    linear-gradient(140deg, rgba(11,31,51,.25), rgba(184,148,74,.2)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1400&q=80") center/cover;
}

/* Home path — process band over motion */
.bn-path {
  position: relative;
  padding: 4.75rem 0 5.25rem;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}
.bn-path__inner {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
}
.bn-path__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: 2rem 4.5rem;
  align-items: end;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--line);
}
.bn-path__copy h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.35rem, 4.6vw, 3.65rem);
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--navy);
}
.bn-path__aside {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding-bottom: .2rem;
}
.bn-path__lead {
  margin: 0;
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.55;
}
.bn-path__steps {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bn-path__steps::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .9s cubic-bezier(.22, 1, .36, 1);
  z-index: 1;
}
.bn-path__steps.is-visible::before {
  width: 100%;
  transition-delay: .12s;
}
.bn-path__step {
  position: relative;
  min-height: 15.5rem;
  padding: 2rem 1.75rem 2.25rem;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.bn-path__step:first-child { padding-left: 0; }
.bn-path__step:last-child {
  border-right: 0;
  padding-right: 0;
}
.bn-path__num {
  display: block;
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.bn-path__step h3 {
  margin: 0 0 .7rem;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: var(--navy);
}
.bn-path__step p {
  margin: 0;
  max-width: 30ch;
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.5;
}
.bn-path__steps.is-visible .bn-path__step {
  opacity: 1;
  transform: translateY(0);
}
.bn-path__steps.is-visible .bn-path__step:nth-child(1) { transition-delay: .05s; }
.bn-path__steps.is-visible .bn-path__step:nth-child(2) { transition-delay: .18s; }
.bn-path__steps.is-visible .bn-path__step:nth-child(3) { transition-delay: .31s; }
@media (max-width: 980px) {
  .bn-path { padding: 3.25rem 0 3.5rem; }
  .bn-path__inner { gap: 2rem; }
  .bn-path__intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    align-items: start;
  }
  .bn-path__copy h2 { max-width: none; }
  .bn-path__steps {
    grid-template-columns: 1fr;
    border-top: 0;
    border-bottom: 0;
  }
  .bn-path__steps::before { display: none; }
  .bn-path__step {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 1.5rem 0;
  }
  .bn-path__step:last-child { border-bottom: 1px solid var(--line); }
  .bn-path__num { font-size: 2.1rem; margin-bottom: 1rem; }
}

.bn-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2rem 0;
}
.bn-stats article {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--line);
}
.bn-stats article:last-child { border-right: 0; }
.bn-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: .35rem;
}
.bn-stats span { color: var(--steel); font-size: .95rem; }

.bn-tabs {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}
.bn-tabs__nav {
  display: grid;
  gap: .15rem;
  border-right: 1px solid var(--line);
  padding-right: 1.25rem;
}
.bn-tabs__nav button {
  appearance: none;
  border: 0;
  background: none;
  text-align: left;
  padding: .85rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border-left: 3px solid transparent;
  padding-left: .85rem;
}
.bn-tabs__nav button.is-active {
  color: var(--gold);
  border-left-color: var(--gold);
}
.bn-tabs__panel { display: none; color: var(--steel); font-size: 1.05rem; }
.bn-tabs__panel.is-active { display: block; }
.bn-tabs__panel h3 {
  margin: 0 0 .75rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.bn-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bn-card {
  display: grid;
  gap: .65rem;
  padding-bottom: 1rem;
}
.bn-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, var(--navy), #2a4560);
}
.bn-card__label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.bn-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}
.bn-card p {
  margin: 0;
  color: var(--steel);
  font-size: .95rem;
}
.bn-card:hover h3 { color: var(--gold); }

.bn-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bn-cta p { margin: 0; color: rgba(255,255,255,.72); max-width: 42ch; }

/* Inner pages */
.page-hero, .bn-page-hero {
  padding: 3.5rem 0 2.75rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero h1, .bn-page-hero h1 {
  margin: .35rem 0 .75rem;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  letter-spacing: -.02em;
}
.page-hero p, .bn-page-hero p {
  margin: 0;
  color: var(--steel);
  max-width: 48ch;
  font-size: 1.05rem;
}
.hero__eyebrow, .bn-crumb {
  margin: 0;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section { padding: 4rem 0; }
.section--white { background: #fff; }
.section--fog { background: var(--fog); }
.section--navy, .section--dark { background: var(--navy); color: #fff; }
.section-kicker {
  margin: 0 0 .55rem;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-head { max-width: 42rem; margin-bottom: 2rem; }
.section-head h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.section-head p { margin: 0; color: var(--steel); }

.sector-grid, .partner-grid, .product-group-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sector-tile, .partner-tile, .product-card {
  background: #fff;
  padding: 1.5rem;
  transition: background .15s ease;
}
.sector-tile:hover, .partner-tile:hover, .product-card:hover { background: var(--fog); }
.sector-tile__icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  color: var(--navy);
}
.sector-tile h3, .partner-tile h3, .product-card__body h3 {
  margin: 0 0 .45rem;
  font-size: 1.15rem;
}
.sector-tile p, .partner-tile p, .product-card__body p {
  margin: 0;
  color: var(--steel);
  font-size: .95rem;
}
.partner-tile__meta, .tile-arrow {
  display: inline-block;
  margin-top: .9rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tile-arrow { font-size: .85rem; letter-spacing: 0; text-transform: none; }

.steps, .chain, .about-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.step, .chain__step, .about-tab {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  background: #fff;
}
.step:last-child, .chain__step:last-child, .about-tab:last-child { border-right: 0; }
.step::before, .chain__num {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .85rem;
  letter-spacing: .06em;
}
.steps { counter-reset: step; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
}
.step h3, .chain__step h3, .about-tab h3 { margin: 0 0 .45rem; font-size: 1.15rem; }
.step p, .chain__step p, .about-tab p { margin: 0; color: var(--steel); }

.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
}
.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-bottom: 1.25rem;
}
.need-option {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #fff;
}
.need-option:hover, .need-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(184,148,74,.05);
}
.need-option input { position: absolute; opacity: 0; pointer-events: none; }
.need-option strong { display: block; margin-bottom: .25rem; }
.need-option small { color: var(--steel); font-size: .82rem; }

.profile-panel, .aside-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: grid; gap: .35rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 600; color: var(--steel); }
.form-field input, .form-field select, .form-field textarea,
.filters input, .filters select {
  width: 100%;
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  background: #fff;
}
.filters { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.5rem; }
.filters input, .filters select { width: auto; min-width: 180px; }
.note-banner {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(184,148,74,.1);
  border-left: 3px solid var(--gold);
}
.alert { padding: 1rem; margin-bottom: 1rem; }
.alert-success { background: #e8f6ee; color: #14532d; }
.alert-danger { background: #fdecec; color: #7f1d1d; }

.reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Partner detail leftovers */
.partner-hero__sector { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .5rem; }
.page-index {
  position: sticky;
  top: calc(var(--header-h));
  z-index: 40;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}
.page-index__inner { display: flex; align-items: center; gap: 1rem; min-height: 52px; overflow-x: auto; width: var(--container); margin: 0 auto; }
.page-index__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); font-weight: 700; }
.page-index__links { display: flex; gap: .2rem; min-width: max-content; }
.page-index__links a {
  padding: .55rem .8rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 2px solid transparent;
}
.page-index__links a.is-active, .page-index__links a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.partner-section { padding: 4.5rem 0; scroll-margin-top: calc(var(--header-h) + 60px); }
.partner-kicker { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.partner-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: .5rem 0 .75rem; }
.partner-lead { color: var(--steel); max-width: 54ch; }
.partner-block { margin-top: 1.25rem; padding: 1.15rem; border: 1px solid var(--line); }
.partner-section__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; }
.partner-gallery { display: grid; gap: .75rem; }
.partner-gallery figure, .partner-gallery__placeholder { margin: 0; min-height: 200px; background: #dce3ea; }
.partner-gallery img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }
.partner-gallery__placeholder { display: grid; place-items: center; color: var(--steel); border: 1px dashed var(--line); }
.product-card img, .product-card__media { width: 100%; height: 170px; object-fit: cover; background: linear-gradient(145deg, var(--navy), #35506a); }
.product-card__media { display: grid; place-items: center; color: rgba(255,255,255,.5); }
.product-card__body { padding: 1.15rem 0 0; }
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.cert-card { display: flex; gap: .9rem; align-items: center; padding: 1rem; border: 1px solid var(--line); }
.cert-card__icon { width: 42px; height: 42px; display: grid; place-items: center; background: rgba(184,148,74,.12); color: var(--gold); }
.catalog-band { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.catalog-band h2 { color: #fff; margin: 0 0 .5rem; }
.catalog-band p { margin: 0; color: rgba(255,255,255,.72); max-width: 42ch; }

/* Footer */
.bn-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.74);
  padding: 3.5rem 0 1.5rem;
}
.bn-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.bn-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  margin-bottom: .65rem;
}
.bn-footer__brand span {
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.5);
  margin-left: .35rem;
}
.bn-footer h4 { color: #fff; margin: 0 0 .85rem; font-size: .95rem; }
.bn-footer a, .bn-footer span { display: block; margin-bottom: .45rem; color: rgba(255,255,255,.72); }
.bn-footer a:hover { color: var(--gold-soft); }
.bn-footer .bn-btn { display: inline-flex; margin-top: .5rem; }
.bn-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .85rem;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(7,20,31,.7);
  display: grid;
  place-items: start center;
  padding-top: 18vh;
}
.search-overlay[hidden] { display: none !important; }
.search-overlay__form {
  width: min(640px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  background: #fff;
  padding: 1.25rem;
  position: relative;
}
.search-overlay__form input { border: 1px solid var(--line); padding: .9rem 1rem; }
.search-overlay__close {
  position: absolute;
  top: -2.4rem;
  right: 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .bn-menu-toggle { display: grid; }
  .bn-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-h) - var(--topbar-h));
    overflow: auto;
  }
  .bn-nav.is-open { display: flex; }
  .bn-nav__link { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); width: 100%; justify-content: space-between; }
  .bn-drop {
    position: static;
    box-shadow: none;
    border: 0;
    border-bottom: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: var(--fog);
  }
  .bn-nav__item.is-open .bn-drop { display: block; }
  .bn-drop__inner,
  .bn-drop__inner--insights,
  .bn-drop__inner--about,
  .bn-drop__cols,
  .bn-drop__cols--2,
  .bn-drop__cols--3,
  .bn-drop__cols--4 { grid-template-columns: 1fr; width: 100%; padding: 1rem; }
  .bn-drop__side,
  .bn-drop__about-links {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
  }
  .bn-drop__main,
  .bn-drop__further { padding-left: 0; }
  .bn-hero-slide__content {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding-bottom: 9.5rem;
    max-width: none;
  }
  .bn-hero-slide h1 { max-width: none; font-size: clamp(2rem, 8vw, 2.8rem); }
  .bn-hero-stage__bar-inner { flex-direction: column; align-items: stretch; }
  .bn-hero-scroll { align-self: flex-end; }
  .bn-hero-tabs__item { margin-right: 1.1rem; font-size: .85rem; }
  .bn-split, .bn-tabs, .bn-cards, .bn-stats, .sector-grid, .partner-grid, .steps, .chain, .about-tabs, .split-intro, .need-grid, .form-grid, .bn-footer__grid, .partner-section__grid, .product-group-grid, .cert-grid { grid-template-columns: 1fr; }
  .bn-industries-rail__head { flex-direction: column; align-items: flex-start; }
  .bn-industries-rail__track { gap: .85rem; }
  .bn-pill {
    --pill-w: min(170px, calc((100vw - 2.5rem) / 2.35));
  }
  .bn-pill__label {
    left: .75rem;
    right: .75rem;
    font-size: .8rem;
  }
  .bn-stats article, .step, .chain__step, .about-tab { border-right: 0; border-bottom: 1px solid var(--line); }
  .bn-topbar__left a:nth-child(n+3) { display: none; }
  .bn-locale__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .bn-locale__head { align-items: flex-start; }
  .bn-locale__head h2 { font-size: 1.15rem; }
  .page-index__label { display: none; }
  .bn-search-btn span { display: none; }
  .bn-bookmark { display: none; }
}

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

/* ========== Bain industry page (sector detail) ========== */
.ix-hero {
  padding: 2.5rem 0 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ix-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2.5rem;
}
.ix-hero__copy h1 {
  margin: 0 0 .85rem;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #111;
  font-weight: 700;
}
.ix-hero__copy p {
  margin: 0;
  font-size: 1.2rem;
  color: #555;
  max-width: 28ch;
  line-height: 1.45;
}
.ix-hero__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eef1f4;
}
.ix-hero__media video,
.ix-hero__media img,
.ix-feature__media img,
.ix-band__media img,
.ix-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ix-stats {
  padding: 2.75rem 0 2.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.ix-stats h2 {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
  color: #111;
}
.ix-stats__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.ix-stats__item {
  padding: 0 1.5rem 0 0;
  border-right: 1px solid var(--line);
  margin-right: 1.5rem;
}
.ix-stats__item:last-child {
  border-right: 0;
  margin-right: 0;
}
.ix-stats__value {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #111;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .55rem;
}
.ix-stats__desc {
  color: #666;
  font-size: .98rem;
  max-width: 22ch;
  line-height: 1.4;
}

.ix-overview {
  padding: 3.5rem 0;
  background: #fff;
}
.ix-overview__inner { max-width: 820px; margin: 0 auto; }
.ix-overview__text {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.75;
  max-height: none;
  overflow: visible;
}
.ix-overview__text p {
  margin: 0 0 1.1rem;
}
.ix-overview__text p:last-child { margin-bottom: 0; }
.ix-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-size: .95rem;
}
.ix-link:hover { color: var(--navy); }
.ix-link--lg { margin-top: 1.75rem; font-size: 1rem; }

.ix-wwd {
  padding: 4.5rem 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ix-wwd__head {
  max-width: 46rem;
  margin-bottom: 2.25rem;
}
.ix-wwd__head h2 {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #111;
  letter-spacing: -.02em;
}
.ix-wwd__head p {
  margin: 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
}
.ix-wwd__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.ix-wwd__card {
  display: grid;
  gap: .7rem;
  align-content: start;
  padding: 1.35rem 1.25rem 1.5rem;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 1px 0 rgba(7, 20, 31, .04);
}
.ix-wwd__num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
}
.ix-wwd__card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
  color: #111;
}
.ix-wwd__card p {
  margin: 0;
  color: #555;
  font-size: .92rem;
  line-height: 1.55;
}

.ix-feature { padding: 4rem 0 3rem; background: #fff; }
.ix-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
.ix-feature__copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #111;
}
.ix-feature__copy p { color: #555; font-size: 1.05rem; line-height: 1.65; }
.ix-feature__label { font-weight: 700; color: #111 !important; margin-top: 1.25rem; margin-bottom: .35rem; }
.ix-feature__list,
.ix-feature__copy ul {
  list-style: disc;
  margin: .35rem 0 1.35rem;
  padding-left: 1.35rem;
  color: #555;
  line-height: 1.7;
}
.ix-feature__list li {
  margin: .35rem 0;
  padding-left: .15rem;
}
.ix-wwd__panel h3 {
  margin: 0 0 .85rem;
  font-size: 1.35rem;
  color: #111;
}
.ix-feature__media { aspect-ratio: 16/10; overflow: hidden; background: #111; }
.ix-feature__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.ix-feature__split h3 { margin: 0 0 .65rem; font-size: 1.25rem; color: #111; }
.ix-feature__split p { margin: 0; color: #555; line-height: 1.6; }

.ix-cards { padding: 4rem 0; background: #fff; }
.ix-cards--insights { background: #f7f8fa; border-top: 1px solid var(--line); }
.ix-cards h2 {
  margin: 0 0 1.75rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #111;
}
.ix-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ix-cards__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ix-card {
  display: grid;
  gap: .65rem;
  align-content: start;
}
.ix-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dde3ea;
}
.ix-card__tag {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ix-card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #111;
  line-height: 1.3;
}
.ix-card p { margin: 0; color: #666; font-size: .95rem; line-height: 1.5; }
.ix-card:hover h3 { color: var(--gold); }

/* Selected partners — Bain-like brand grid */
.ix-brands {
  padding: 4.5rem 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.ix-brands__head {
  max-width: 52rem;
  margin-bottom: 2rem;
}
.ix-brands__head h2 {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #111;
  letter-spacing: -.02em;
}
.ix-brands__head p {
  margin: 0;
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 48ch;
}
.ix-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.15rem;
}
.ix-brand {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.ix-brand:hover {
  border-color: rgba(197,160,115,.55);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(7,20,31,.08);
}
.ix-brand__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1f33, #24384d);
}
.ix-brand__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.ix-brand:hover .ix-brand__media img { transform: scale(1.04); }
.ix-brand__body {
  display: grid;
  gap: .4rem;
  padding: 1rem 1rem 1.1rem;
  align-content: start;
}
.ix-brand__body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #111;
  line-height: 1.25;
}
.ix-brand__body p {
  margin: 0;
  color: #666;
  font-size: .88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ix-brand__meta {
  color: #8a94a0;
  font-size: .78rem;
  line-height: 1.4;
}
.ix-brand__cta {
  margin-top: .25rem;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
}
.ix-brand:hover .ix-brand__cta { color: var(--navy); }
.ix-brands__foot {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}

.ix-band {
  padding: 0;
  background: #f4f6f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ix-band__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 340px;
  padding: 3rem 0;
}
.ix-band__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.ix-band h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #111;
}
.ix-band p { margin: 0 0 1.5rem; color: #555; max-width: 38ch; line-height: 1.6; }
.ix-band__media {
  min-height: 260px;
  overflow: hidden;
  background: #dde3ea;
}
.ix-band__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.ix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border: 0;
  cursor: pointer;
}
.ix-btn:hover { background: var(--navy); color: #fff; }

.ix-help { padding: 4rem 0; background: #fff; }
.ix-help h2 {
  margin: 0 0 1.75rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #111;
}
.ix-help__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ix-help__card {
  background: #fff;
  padding: 1.5rem;
  display: grid;
  gap: .65rem;
  align-content: start;
}
.ix-help__card h3 { margin: 0; font-size: 1.1rem; color: #111; }
.ix-help__card p { margin: 0; color: #666; font-size: .92rem; line-height: 1.5; }
.ix-help__card .ix-link { margin-top: .35rem; }

.ix-talk {
  padding: 4rem 0;
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}
.ix-talk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ix-talk h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: #111;
}
.ix-talk p { margin: 0; color: #555; line-height: 1.65; max-width: 40ch; }
.ix-talk__form {
  display: grid;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.ix-talk__form label {
  font-size: .85rem;
  font-weight: 600;
  color: #666;
}
.ix-talk__form select,
.ix-talk__form input {
  width: 100%;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  background: #fff;
}
.ix-talk__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .65rem;
}

@media (max-width: 1100px) {
  .ix-brands__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .ix-hero__grid,
  .ix-wwd__grid,
  .ix-feature__grid,
  .ix-feature__split,
  .ix-cards__grid,
  .ix-cards__grid--3,
  .ix-band__grid,
  .ix-help__grid,
  .ix-talk__grid,
  .ix-stats__list { grid-template-columns: 1fr; }
  .ix-stats__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin: 0 0 1rem;
    padding: 0 0 1rem;
  }
  .ix-band__grid { padding: 2rem 0; gap: 1.5rem; }
  .ix-talk__row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ix-brands__grid { grid-template-columns: 1fr; }
}
