:root {
  --navy-950: #001a33;
  --navy-900: #002a58;
  --blue-700: #00568a;
  --blue-600: #0874ad;
  --blue-100: #dcebf4;
  --gold-500: #ffc000;
  --gold-300: #ffd866;
  --ink-900: #14212b;
  --ink-700: #3f5260;
  --ink-500: #667784;
  --mist-100: #edf3f6;
  --mist-50: #f6f8fa;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 36, 71, 0.13);
  --content: 1180px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: "Montserrat", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(0, 42, 88, 0.11);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 215px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.mobile-nav-cta {
  display: none;
}

.nav-item {
  position: relative;
}

.nav-parent {
  display: flex;
  align-items: center;
}

.nav-link,
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  color: var(--ink-700);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link {
  padding: 0 9px;
}

.nav-parent .nav-link {
  padding-right: 4px;
}

.submenu-toggle {
  width: 24px;
  padding: 0 7px 0 2px;
}

.nav-link:hover,
.nav-link:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: var(--blue-700);
}

.nav-link.is-current {
  color: var(--blue-700);
  font-weight: 600;
}

.nav-link.is-current + .submenu-toggle {
  color: var(--blue-700);
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  padding: 10px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 160ms ease;
}

.nav-item:last-of-type .dropdown {
  right: 0;
  left: auto;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink-700);
  font-size: 0.84rem;
  line-height: 1.35;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  color: var(--navy-900);
  background: var(--mist-100);
}

.dropdown .dropdown-featured {
  margin-bottom: 5px;
  color: var(--blue-700);
  font-weight: 800;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.35;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.header-cta,
.button-primary {
  color: var(--navy-950);
  background: var(--gold-500);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--gold-300);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(0, 26, 51, 0.2);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy-900);
  content: "";
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(105deg, var(--navy-950) 0%, var(--navy-900) 50%, #064f76 100%);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: -205px;
  width: 52%;
  height: 270px;
  border-top: 2px solid rgba(255, 192, 0, 0.55);
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(-8deg);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0 0 0 43%;
  overflow: hidden;
  background: linear-gradient(135deg, #164f6d, #092f49);
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, rgba(0, 42, 88, 0.42) 35%, rgba(0, 26, 51, 0.08) 100%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  width: min(650px, 61%);
  padding: 82px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 17px;
  color: var(--blue-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--gold-500);
  content: "";
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(3.15rem, 6.2vw, 5.45rem);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 0.95;
}

.hero-lead {
  max-width: 605px;
  margin: 25px 0 29px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -54px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 108px;
  padding: 21px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--gold-500);
  font-size: 1.52rem;
  letter-spacing: -0.025em;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--mist-50);
}

.intro-grid,
.team-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
}

.section h2,
.dark-section h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-copy {
  color: var(--ink-700);
  font-size: 1.05rem;
}

.section-copy p:first-child {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 150ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 730px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-card,
.solution-card,
.insight-card {
  position: relative;
  min-height: 260px;
  padding: 29px;
  border: 1px solid #dae4ea;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.industry-card {
  min-height: 292px;
  padding: 31px 31px 34px;
  background:
    linear-gradient(145deg, rgba(0, 86, 138, 0.035), transparent 50%),
    var(--white);
}

.industry-card::before,
.solution-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue-700);
  content: "";
}

.industry-card:hover,
.solution-card:hover,
.insight-card:hover {
  border-color: #b8ccd8;
  box-shadow: 0 18px 38px rgba(0, 42, 88, 0.1);
  transform: translateY(-4px);
}

.card-number {
  position: absolute;
  top: 34px;
  right: 30px;
  color: #a9bbc6;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.industry-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 86, 138, 0.18);
  border-radius: 10px;
  color: var(--blue-700);
  background: var(--mist-50);
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease;
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card:hover .industry-icon {
  border-color: var(--blue-700);
  color: var(--white);
  background: var(--blue-700);
}

.industry-card h3,
.solution-card h3,
.insight-card h3 {
  margin: 42px 0 11px;
  color: var(--navy-900);
  font-size: 1.25rem;
  line-height: 1.25;
}

.industry-card h3 {
  margin-top: 31px;
}

.industry-card p,
.solution-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.9rem;
  line-height: 1.55;
}

.card-arrow {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--blue-700);
  font-size: 1.25rem;
  font-weight: 800;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  color: var(--white);
  background: var(--navy-950);
}

.dark-section::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255, 192, 0, 0.18);
  transform: rotate(28deg);
  content: "";
}

.captive-grid,
.results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.dark-section h2 {
  color: var(--white);
}

.dark-section .section-copy {
  color: rgba(255, 255, 255, 0.75);
}

.benefits-specialist-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.benefits-specialist-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: var(--navy-900);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.benefits-specialist-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.benefits-specialist-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 3px;
  padding: 64px 28px 25px;
  background: linear-gradient(0deg, rgba(0, 26, 51, 0.96), rgba(0, 26, 51, 0));
}

.benefits-specialist-photo strong {
  color: var(--white);
  font-size: 1.15rem;
}

.benefits-specialist-photo span {
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-specialist-copy .readiness-panel {
  margin: 30px 0;
}

.leader-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.leader-photo {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.leader-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.leader-photo figcaption,
.specialist-profile figure figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 70px 28px 26px;
  background: linear-gradient(0deg, rgba(0, 26, 51, 0.97), rgba(0, 26, 51, 0));
}

.leader-photo figcaption strong,
.specialist-profile figcaption strong {
  color: var(--white);
  font-size: 1.18rem;
}

.leader-photo figcaption span,
.specialist-profile figcaption span {
  color: var(--gold-300);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

.leader-title {
  margin: 14px 0 25px;
  color: var(--blue-700);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.5;
}

.leader-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 27px 0 31px;
}

.leader-focus span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 86, 138, 0.18);
  color: var(--navy-900);
  background: var(--mist-50);
  font-size: 0.76rem;
  font-weight: 700;
}

.section-heading-copy {
  max-width: 500px;
  margin: 0;
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.65;
}

.specialist-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.specialist-profile {
  overflow: hidden;
  border: 1px solid rgba(0, 86, 138, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 42, 88, 0.07);
}

.specialist-profile figure {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  margin: 0;
  background: var(--navy-900);
}

.specialist-profile figure > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.specialist-profile figure > .martin-profile-image {
  object-position: 50% 8%;
}

.specialist-profile > div {
  padding: 28px 29px 31px;
}

.specialist-profile p,
.specialist-profile li {
  color: var(--ink-500);
  font-size: 0.94rem;
  line-height: 1.62;
}

.specialist-profile p {
  margin-top: 0;
}

.specialist-profile ul {
  margin: 20px 0;
  padding-left: 20px;
}

.specialist-profile li + li {
  margin-top: 5px;
}

.champion-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.champion-principles {
  display: grid;
  border-top: 3px solid var(--gold-500);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.champion-principles > div {
  position: relative;
  padding: 29px 34px 29px 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.champion-principles > div:last-child {
  border-bottom: 0;
}

.champion-principles span {
  position: absolute;
  top: 31px;
  left: 30px;
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 800;
}

.champion-principles h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.champion-principles p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.awards-heading {
  align-items: end;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.award-card {
  grid-column: span 4;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 25px 27px;
  border: 1px solid rgba(0, 86, 138, 0.16);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(0, 42, 88, 0.055);
  text-align: center;
}

.award-card:nth-child(n + 4) {
  grid-column: span 3;
}

.award-card-compact {
  min-height: 230px;
}

.award-mark {
  display: grid;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  margin-bottom: 24px;
  color: var(--navy-950);
  line-height: 1;
}

.award-mark span {
  color: var(--blue-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-mark strong {
  margin-top: 9px;
  color: var(--navy-950);
  font-size: clamp(1.42rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.93;
  text-transform: uppercase;
}

.award-mark img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 125px;
  object-fit: contain;
}

.award-logo {
  width: 100%;
}

.award-logo-horizontal img {
  max-width: 260px;
  max-height: 130px;
}

.award-logo-standard img {
  max-width: 225px;
  max-height: 132px;
}

.award-logo-wide img {
  max-width: 100%;
}

.award-logo-badge img {
  max-width: 135px;
  max-height: 135px;
}

.award-mark-simple {
  min-height: 110px;
  margin-bottom: 18px;
}

.award-card h3 {
  margin: 0 0 7px;
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1.35;
}

.award-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.5;
}

.legacy-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(50px, 8vw, 105px);
}

.legacy-portrait {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.legacy-portrait > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.legacy-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 76px 27px 25px;
  background: linear-gradient(0deg, rgba(0, 26, 51, 0.98), rgba(0, 26, 51, 0));
}

.legacy-portrait figcaption strong {
  color: var(--white);
  font-size: 1.16rem;
}

.legacy-portrait figcaption span {
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.legacy-tenure {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  min-width: 92px;
  padding: 15px 17px;
  border-top: 3px solid var(--gold-500);
  color: var(--white);
  background: rgba(0, 26, 51, 0.93);
  text-align: center;
}

.legacy-tenure strong {
  color: var(--gold-500);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.legacy-tenure span {
  margin-top: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-hero .interior-hero-inner > p:not(.eyebrow) {
  max-width: 700px;
}

.review-page-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(42px, 7vw, 90px);
}

.review-context {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.review-context h2 {
  font-size: clamp(2.15rem, 3.6vw, 3.2rem);
}

.review-context > p:not(.eyebrow) {
  color: var(--ink-500);
  font-size: 1rem;
  line-height: 1.65;
}

.review-context > small {
  display: block;
  color: var(--ink-500);
  font-size: 0.76rem;
  line-height: 1.55;
}

.review-routing {
  margin: 28px 0;
  padding: 25px 26px;
  border-top: 3px solid var(--gold-500);
  background: var(--navy-950);
}

.review-routing > strong {
  color: var(--gold-300);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-routing p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  line-height: 1.5;
}

.review-routing b {
  color: var(--white);
}

.review-form-card {
  padding: clamp(30px, 5vw, 55px);
  border: 1px solid rgba(0, 86, 138, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.review-form-card.zapier-review-form {
  min-width: 0;
  padding: clamp(14px, 2.2vw, 24px);
  overflow: hidden;
}

.zapier-review-form zapier-interfaces-page-embed {
  width: 100%;
  margin-inline: auto;
}

.zapier-embed-fallback {
  margin: 0;
  padding: 28px;
  color: var(--slate-700);
  font-size: 0.95rem;
  text-align: center;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-section {
  min-width: 0;
  margin: 0 0 38px;
  padding: 0 0 38px;
  border: 0;
  border-bottom: 1px solid var(--mist-100);
}

.form-section legend {
  width: 100%;
  margin-bottom: 23px;
  color: var(--navy-900);
  font-size: 1.18rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span,
.form-field > label {
  color: var(--navy-900);
  font-size: 0.83rem;
  font-weight: 750;
  line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #b8c9d4;
  border-radius: 2px;
  color: var(--ink-700);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(0, 86, 138, 0.13);
}

.form-span-2 {
  grid-column: 1 / -1;
}

.form-helper {
  margin: -13px 0 18px;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.checkbox-grid label,
.radio-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-field .checkbox-grid input,
.form-field .radio-row input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  margin: 0;
  accent-color: var(--blue-700);
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 25px;
  padding-top: 5px;
}

.conditional-form-panel {
  padding: 27px;
  border: 1px solid rgba(0, 86, 138, 0.16);
  border-top: 3px solid var(--gold-500);
  background: var(--mist-50);
}

.conditional-form-panel[hidden] {
  display: none;
}

.form-submit {
  width: 100%;
  justify-content: center;
}

.form-consent {
  margin: 17px 0 0;
  color: var(--ink-500);
  font-size: 0.72rem;
  line-height: 1.55;
}

.form-status {
  margin: 15px 0 0;
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.result-callout {
  padding: 35px 0 35px 48px;
  border-left: 2px solid var(--gold-500);
}

.result-callout small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-callout strong {
  display: block;
  margin: 7px 0 2px;
  color: var(--gold-500);
  font-size: clamp(4.7rem, 9vw, 7.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.result-callout p {
  max-width: 410px;
  margin: 17px 0;
  color: rgba(255, 255, 255, 0.78);
}

.result-callout a {
  color: var(--gold-300);
  font-weight: 800;
}

.result-callout .result-disclaimer {
  display: block;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.55;
}

.solution-card {
  min-height: 235px;
  background: var(--mist-50);
}

.solution-card::before {
  background: var(--gold-500);
}

.solution-card h3 {
  margin-top: 34px;
}

.results-section {
  background: var(--mist-100);
}

.results-proof .proof-item strong {
  font-size: clamp(1.28rem, 2vw, 1.72rem);
}

.featured-result-stat {
  padding: 42px 0 42px 48px;
  border-left: 2px solid var(--gold-500);
}

.featured-result-stat > span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-result-stat > strong {
  display: block;
  margin: 8px 0 0;
  color: var(--gold-500);
  font-size: clamp(4.2rem, 8vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.featured-result-stat h3 {
  margin: 8px 0 16px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.featured-result-stat p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.featured-result-stat small {
  display: block;
  max-width: 460px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  line-height: 1.55;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.case-study-card {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(0, 86, 138, 0.14);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 42, 88, 0.07);
}

.case-study-number {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--mist-100);
}

.case-study-number small {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-number strong {
  display: block;
  color: var(--blue-700);
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.case-study-number strong span {
  color: var(--gold-600);
}

.case-study-number b {
  display: block;
  margin-top: 12px;
  color: var(--navy-900);
  font-size: 0.92rem;
}

.case-study-card h3 {
  margin: 27px 0 13px;
  color: var(--navy-900);
  font-size: 1.22rem;
}

.case-study-card p,
.case-study-card li {
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.62;
}

.case-study-card ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.case-study-card li {
  position: relative;
  padding-left: 17px;
}

.case-study-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 2px;
  background: var(--gold-500);
  content: "";
}

.case-study-note {
  max-width: 900px;
  margin: 25px auto 0;
  color: var(--ink-500);
  font-size: 0.74rem;
  line-height: 1.6;
  text-align: center;
}

.result-case-split {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.result-case-figure {
  padding: 46px;
  border-top: 4px solid var(--gold-500);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.result-case-figure span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-case-figure strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--gold-500);
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.result-case-figure p {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.metric {
  min-height: 148px;
  padding: 27px;
  border: 1px solid rgba(0, 86, 138, 0.13);
  border-radius: var(--radius-md);
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--blue-700);
  font-size: 1.8rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.metric span {
  display: block;
  margin-top: 11px;
  color: var(--ink-500);
  font-size: 0.8rem;
  line-height: 1.45;
}

.team-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 455px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.team-grid > div:last-child {
  min-width: 0;
}

.team-grid h2 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.team-grid .section-copy {
  line-height: 1.8;
}

.team-grid .section-copy p + p {
  margin-top: 1.35rem;
}

.team-portrait {
  position: relative;
  min-width: 0;
  min-height: 455px;
  margin: 0;
  overflow: hidden;
}

.team-portrait:first-child {
  border-right: 3px solid var(--gold-500);
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-portrait:first-child img {
  object-position: 50% 28%;
}

.team-portrait:last-child img {
  object-position: 50% 25%;
}

.team-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 20px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 26, 51, 0.94));
}

.team-portrait strong,
.team-portrait span {
  display: block;
}

.team-portrait strong {
  font-size: 0.95rem;
}

.team-portrait span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  line-height: 1.35;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.insight-card .topic {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-top: 22px;
  font-size: 1.42rem;
}

.insight-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.insight-card .text-link {
  margin-top: auto;
  font-size: 0.85rem;
}

.insights-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.featured-insight-panel {
  padding: clamp(30px, 4vw, 46px);
  border-top: 5px solid var(--gold-500);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.featured-insight-panel > span {
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-insight-panel ul {
  display: grid;
  gap: 15px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.featured-insight-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.featured-insight-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--gold-500);
  content: "";
}

.featured-insight-panel .text-link {
  color: var(--white);
}

.insight-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8e3e9;
  border-left: 1px solid #d8e3e9;
}

.insight-topic-grid > a,
.insight-topic-grid > div {
  min-height: 220px;
  padding: 29px;
  border-right: 1px solid #d8e3e9;
  border-bottom: 1px solid #d8e3e9;
  color: var(--navy-900);
  background: var(--white);
  transition: color 170ms ease, background 170ms ease;
}

.insight-topic-grid > a:hover {
  color: var(--white);
  background: var(--blue-700);
}

.insight-topic-grid span {
  color: var(--gold-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.insight-topic-grid h3 {
  margin: 40px 0 10px;
  color: inherit;
  font-size: 1.16rem;
}

.insight-topic-grid p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.84rem;
  line-height: 1.55;
}

.insight-topic-grid > a:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.survival-legacy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.legacy-inline-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 32px 0 22px;
}

.legacy-inline-stat strong {
  color: var(--gold-400);
  font-size: 3.2rem;
  line-height: 0.9;
}

.legacy-inline-stat span {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legacy-story-link {
  color: var(--white);
}

.publication-timeline {
  width: min(100%, 490px);
  justify-self: end;
}

.publication-stage {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #eef2f4;
  box-shadow: 0 26px 60px rgba(0, 10, 24, 0.36);
}

.publication-stage::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 10px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  content: "";
}

.publication-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 650ms ease, transform 900ms ease, visibility 650ms ease;
}

.publication-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.publication-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.publication-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 23px 18px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 26, 51, 0.97) 42%);
}

.publication-slide figcaption strong {
  color: var(--gold-400);
  font-size: 2rem;
  line-height: 1;
}

.publication-slide figcaption span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.publication-controls {
  display: grid;
  grid-template-columns: 42px 1fr 42px auto;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.publication-controls > button {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.publication-controls > button:hover {
  border-color: #00aeef;
  color: #ffffff;
  background: #00568a;
}

.publication-controls .publication-pause {
  min-width: 70px;
  padding: 0 14px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.publication-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.publication-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.publication-dots button.is-active {
  border-color: var(--gold-400);
  background: var(--gold-400);
}

.contributor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contributor-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 280px;
  border: 1px solid #d8e3e9;
  background: var(--white);
}

.contributor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.contributor-card > div {
  padding: 31px 29px;
}

.contributor-card span {
  color: var(--blue-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.contributor-card h3 {
  margin: 12px 0 12px;
  color: var(--navy-900);
  font-size: 1.42rem;
}

.contributor-card p {
  margin: 0 0 20px;
  color: var(--ink-500);
  font-size: 0.84rem;
  line-height: 1.6;
}

.subscribe-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.subscribe-copy ul {
  display: grid;
  gap: 11px;
  margin: 25px 0;
  padding-left: 19px;
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.5;
}

.subscribe-copy small {
  color: var(--ink-500);
  font-size: 0.74rem;
  line-height: 1.5;
}

.mailerlite-form-shell {
  min-width: 0;
  padding: clamp(14px, 2vw, 24px);
  border: 1px solid #d8e3e9;
  border-radius: var(--radius-md);
  background: #f6f8fa;
  box-shadow: var(--shadow);
}

.mailerlite-form-shell #mlb2-45805614.ml-form-embedContainer .ml-form-embedWrapper {
  max-width: none;
}

.contact-form-section {
  padding-top: clamp(62px, 8vw, 100px);
}

.contact-form-card {
  align-self: start;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-path-grid article {
  position: relative;
  min-height: 300px;
  padding: clamp(31px, 4vw, 48px);
  border: 1px solid #d8e3e9;
  background: var(--white);
}

.contact-path-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue-700);
  content: "";
}

.contact-path-grid span {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-path-grid h3 {
  margin: 40px 0 14px;
  color: var(--navy-900);
  font-size: 1.52rem;
}

.contact-path-grid p {
  margin: 0 0 30px;
  color: var(--ink-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.contact-next-grid article {
  min-height: 250px;
  padding: 35px;
  background: var(--navy-950);
}

.contact-next-grid strong {
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.contact-next-grid h3 {
  margin: 40px 0 13px;
  color: var(--white);
  font-size: 1.15rem;
}

.contact-next-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--navy-950);
  background: var(--gold-500);
}

.final-cta::after {
  position: absolute;
  inset: 0 0 0 68%;
  background: repeating-linear-gradient(-55deg, rgba(0, 42, 88, 0.09) 0 2px, transparent 2px 18px);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.final-cta .eyebrow {
  color: var(--navy-900);
}

.final-cta .eyebrow::before {
  background: var(--navy-900);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.final-cta h2 {
  max-width: 760px;
  color: var(--navy-950);
}

.final-cta p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(0, 26, 51, 0.75);
}

.button-dark {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--navy-950);
}

.button-dark:hover {
  background: var(--blue-700);
  transform: translateY(-1px);
}

.site-footer {
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.85rem;
}

.footer-heading {
  display: block;
  margin-bottom: 15px;
  color: var(--gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  font-size: 0.82rem;
}

.footer-column a:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.interior-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(110deg, var(--navy-950), var(--navy-900));
}

.interior-hero::after {
  position: absolute;
  right: -8%;
  bottom: -150px;
  width: 50%;
  height: 210px;
  border-top: 2px solid rgba(255, 192, 0, 0.55);
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(-7deg);
  content: "";
}

.interior-hero-media {
  position: absolute;
  inset: 0 0 0 53%;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.interior-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-900), rgba(0, 42, 88, 0.2));
  content: "";
}

.interior-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 540px;
  padding-block: 76px;
}

.interior-hero .eyebrow {
  color: var(--gold-300);
}

.interior-hero h1 {
  width: min(760px, 68%);
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.interior-hero-inner > p:not(.eyebrow) {
  width: min(650px, 62%);
  margin: 25px 0 29px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.industry-jump {
  position: sticky;
  z-index: 45;
  top: var(--header-height);
  border-bottom: 1px solid var(--blue-100);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 20px rgba(0, 42, 88, 0.06);
  backdrop-filter: blur(12px);
}

.industry-jump-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.industry-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 10px 13px;
  border-right: 1px solid var(--mist-100);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.industry-jump a:first-child {
  border-left: 1px solid var(--mist-100);
}

.industry-jump a:hover,
.industry-jump a:focus-visible {
  color: var(--blue-700);
  background: var(--mist-50);
}

.industries-intro .section-copy p + p {
  margin-top: 1.3rem;
}

.industry-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.industry-profile {
  position: relative;
  min-height: 520px;
  padding: 38px;
  border: 1px solid #d8e3e9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  scroll-margin-top: calc(var(--header-height) + 86px);
}

.industry-profile::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-700) 0 72%, var(--gold-500) 72%);
  content: "";
}

.industry-profile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.profile-number {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.profile-category {
  color: var(--ink-500);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.industry-profile h2 {
  max-width: 520px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.industry-profile > p {
  color: var(--ink-700);
  font-size: 0.93rem;
}

.industry-profile h3 {
  margin: 27px 0 12px;
  color: var(--navy-900);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exposure-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.exposure-list li {
  position: relative;
  padding-left: 15px;
  color: var(--ink-500);
  font-size: 0.76rem;
  line-height: 1.45;
}

.exposure-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold-500);
  content: "";
}

.industry-profile .text-link {
  font-size: 0.82rem;
}

.industry-principle .button {
  margin-top: 14px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sector-card {
  min-height: 190px;
  padding: 27px;
  border-left: 4px solid var(--blue-700);
  background: var(--mist-50);
}

.sector-card:nth-child(2n) {
  border-left-color: var(--gold-500);
}

.sector-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.3;
}

.sector-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.83rem;
  line-height: 1.6;
}

.path-list {
  display: grid;
  gap: 12px;
}

.path-list a {
  position: relative;
  padding: 23px 54px 23px 24px;
  border: 1px solid rgba(0, 86, 138, 0.13);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.path-list a::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--blue-700);
  font-size: 1.2rem;
  transform: translateY(-50%);
  content: "→";
}

.path-list a:hover {
  box-shadow: 0 12px 30px rgba(0, 42, 88, 0.09);
  transform: translateX(4px);
}

.path-list strong,
.path-list span {
  display: block;
}

.path-list strong {
  color: var(--navy-900);
}

.path-list span {
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 0.78rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--blue-700);
}

.breadcrumb span[aria-current="page"] {
  color: var(--ink-700);
}

.detail-hero,
.detail-hero .interior-hero-inner {
  min-height: 590px;
}

.detail-jump {
  position: sticky;
  z-index: 45;
  top: var(--header-height);
  border-bottom: 1px solid var(--blue-100);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 20px rgba(0, 42, 88, 0.06);
  backdrop-filter: blur(12px);
}

.detail-jump-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.detail-jump a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 10px 14px;
  border-right: 1px solid var(--mist-100);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.detail-jump a:first-child {
  border-left: 1px solid var(--mist-100);
}

.detail-jump a:hover,
.detail-jump a:focus-visible {
  color: var(--blue-700);
  background: var(--mist-50);
}

.detail-jump a.is-active {
  color: var(--blue-700);
  background: rgba(0, 86, 138, 0.075);
  box-shadow: inset 0 -3px 0 rgba(0, 86, 138, 0.72);
}

#operation,
#exposures,
#coverages,
#claims-result,
#customer-property,
#production-continuity,
#recall-readiness,
#contract-risk,
#property-exposures,
#equipment-breakdown,
#business-interruption,
#valuation,
#review,
#general-liability,
#product-liability,
#completed-operations,
#coverage-review,
#recall-risk,
#recall-coverage,
#manufacturers-eo,
#coverage-gap,
#response-planning,
#fleet-risk,
#cargo-risk,
#mobile-equipment,
#driver-safety,
#transportation-review,
#manufacturing-cyber-risk,
#operational-technology,
#cyber-coverage,
#crime-fraud,
#incident-readiness,
#alternative-risk-overview,
#captive-readiness,
#captive-economics,
#evaluation-process,
#captive-result,
#loss-analysis,
#safety-strategy,
#employee-engagement,
#claims-advocacy,
#return-to-work,
#experience-modification,
#manufacturing-workforce,
#benefits-strategy,
#employee-experience,
#funding-strategy,
#benefits-review,
#alternative-risk {
  scroll-margin-top: calc(var(--header-height) + 76px);
}

.engagement-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  align-items: start;
  gap: clamp(42px, 6vw, 82px);
}

.engagement-layout h2 {
  max-width: 760px;
}

.engagement-idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
}

.engagement-idea-grid article {
  padding: 22px;
  border: 1px solid #d8e3e9;
  border-radius: var(--radius-md);
  background: var(--white);
}

.engagement-idea-grid h3 {
  margin: 0 0 9px;
  color: var(--navy-900);
  font-size: 1rem;
  line-height: 1.3;
}

.engagement-idea-grid p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.82rem;
  line-height: 1.58;
}

.safety-incentive-note {
  margin-top: 17px;
  padding: 22px 24px;
  border-left: 4px solid var(--gold-500);
  background: #fff9e7;
}

.safety-incentive-note strong {
  color: var(--navy-900);
}

.safety-incentive-note p {
  margin: 7px 0 0;
  color: var(--ink-500);
  font-size: 0.82rem;
  line-height: 1.6;
}

.safety-specialist-card {
  position: sticky;
  top: calc(var(--header-height) + 92px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
  box-shadow: var(--shadow);
}

.safety-specialist-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.93;
  object-fit: cover;
  object-position: 50% 18%;
}

.safety-specialist-card div {
  padding: 27px;
}

.safety-specialist-card span {
  display: block;
  color: var(--gold-400);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.safety-specialist-card h3 {
  margin: 10px 0 12px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.25;
}

.safety-specialist-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.65;
}

.exposure-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.exposure-card {
  min-height: 250px;
  padding: 29px;
  border: 1px solid #d8e3e9;
  border-radius: var(--radius-md);
  background: var(--white);
}

.exposure-card > span {
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.exposure-card h3 {
  margin: 37px 0 12px;
  color: var(--navy-900);
  font-size: 1.2rem;
  line-height: 1.25;
}

.exposure-card p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.83rem;
  line-height: 1.6;
}

.coverage-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #cedce4;
  border-left: 1px solid #cedce4;
}

.coverage-detail-grid article {
  min-height: 205px;
  padding: 29px 31px;
  border-right: 1px solid #cedce4;
  border-bottom: 1px solid #cedce4;
}

.coverage-detail-grid article:nth-child(4n + 2),
.coverage-detail-grid article:nth-child(4n + 3) {
  background: var(--mist-50);
}

.coverage-detail-grid h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.05rem;
  line-height: 1.35;
}

.coverage-detail-grid p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.82rem;
  line-height: 1.62;
}

.result-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
}

.claim-case .section-copy {
  margin-top: 23px;
}

.result-stat {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  padding: 34px 0 34px 45px;
  border-left: 2px solid var(--gold-500);
}

.result-stat small,
.result-stat p {
  grid-column: 1 / -1;
}

.result-stat small {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-stat strong {
  color: var(--gold-500);
  font-size: clamp(3.25rem, 6vw, 5.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.result-stat > span {
  padding: 0 11px 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.result-stat p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.result-stat-stacked {
  display: block;
}

.result-stat-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.result-stat-line > span {
  padding: 0 11px 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.result-stat-stacked > b {
  display: block;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.claims-collaboration .section-copy p + p {
  margin-top: 1.3rem;
}

.risk-focus-grid {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.9fr;
  align-items: center;
  gap: clamp(35px, 6vw, 75px);
}

.risk-focus-number {
  align-self: start;
  color: rgba(0, 86, 138, 0.13);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.risk-checklist {
  padding: 29px;
  border-left: 4px solid var(--gold-500);
  background: var(--white);
}

.risk-checklist > strong {
  color: var(--navy-900);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-checklist ul,
.readiness-panel ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.risk-checklist li,
.readiness-panel li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  color: var(--ink-700);
  font-size: 0.8rem;
}

.risk-checklist li::before,
.readiness-panel li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--blue-700);
  content: "";
}

.readiness-panel {
  padding: 37px;
  border: 1px solid rgba(0, 86, 138, 0.14);
  border-radius: var(--radius-md);
  background: var(--mist-50);
}

.readiness-panel h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.35rem;
}

.readiness-panel li {
  padding: 11px 0 11px 21px;
  border-bottom: 1px solid #d8e3e9;
}

.readiness-panel li:last-child {
  border-bottom: 0;
}

.readiness-panel li::before {
  top: 1.25em;
  background: var(--gold-500);
}

.readiness-panel-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.readiness-panel-dark h3,
.readiness-panel-dark li {
  color: var(--white);
}

.readiness-panel-dark li {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 110px);
}

.faq-list details {
  border-top: 1px solid #cbdbe4;
}

.faq-list details:last-child {
  border-bottom: 1px solid #cbdbe4;
}

.faq-list summary {
  position: relative;
  padding: 24px 45px 24px 0;
  color: var(--navy-900);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--blue-700);
  font-size: 1.3rem;
  transform: translateY(-50%);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -4px 45px 24px 0;
  color: var(--ink-500);
  font-size: 0.88rem;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .insights-page-grid,
  .insight-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contributor-card {
    grid-template-columns: 145px 1fr;
  }

  .review-page-layout {
    grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
    gap: 35px;
  }

  .leader-feature,
  .champion-about-grid,
  .legacy-grid {
    gap: 45px;
  }

  .leader-photo {
    min-height: 590px;
  }

  .specialist-profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .award-card,
  .award-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .award-card:last-child {
    grid-column: 1 / -1;
  }

  .specialist-profile:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  }

  .specialist-profile:last-child figure {
    min-height: 430px;
  }

  .benefits-specialist-grid {
    grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
    gap: 42px;
  }

  .benefits-specialist-photo {
    min-height: 510px;
  }

  .engagement-layout {
    grid-template-columns: 1fr;
  }

  .safety-specialist-card {
    position: static;
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) 1fr;
  }

  .safety-specialist-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 24px 45px rgba(0, 26, 51, 0.14);
  }

  .primary-nav.is-open .nav-link,
  .primary-nav.is-open .submenu-toggle {
    min-height: 54px;
    padding-inline: 10px;
    border-bottom: 1px solid var(--mist-100);
    font-size: 1rem;
  }

  .primary-nav.is-open > .nav-link {
    display: flex;
    width: 100%;
  }

  .primary-nav.is-open .nav-parent {
    border-bottom: 1px solid var(--mist-100);
  }

  .primary-nav.is-open .nav-parent .nav-link {
    flex: 1;
    border-bottom: 0;
  }

  .primary-nav.is-open .nav-parent .submenu-toggle {
    flex: 0 0 54px;
    width: 54px;
    border-bottom: 0;
  }

  .primary-nav.is-open .dropdown {
    position: static;
    display: none;
    width: 100%;
    padding: 6px 8px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav.is-open .nav-item.is-open .dropdown {
    display: block;
  }

  .primary-nav.is-open .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin: 22px 10px;
    padding: 12px 20px;
    color: var(--navy-950);
    background: var(--gold-500);
    font-size: 0.96rem;
    font-weight: 700;
  }

  .hero-copy {
    width: min(690px, 76%);
  }

  .hero-media {
    left: 55%;
    opacity: 0.76;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-jump-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-profile {
    padding: 32px;
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exposure-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .risk-focus-grid {
    grid-template-columns: 0.3fr 1fr;
  }

  .risk-checklist {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .contact-path-grid,
  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .featured-insight-grid,
  .survival-legacy-grid,
  .contributor-grid,
  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  .publication-timeline {
    justify-self: start;
  }

  .legacy-inline-stat {
    padding: 30px 0 0;
  }

  .subscribe-layout {
    gap: 38px;
  }

  .engagement-idea-grid,
  .safety-specialist-card {
    grid-template-columns: 1fr;
  }

  .safety-specialist-card img {
    height: auto;
    aspect-ratio: 1.2;
  }

  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 0.91rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-media {
    inset: 0;
    opacity: 0.35;
    clip-path: none;
  }

  .interior-hero,
  .interior-hero-inner {
    min-height: 570px;
  }

  .interior-hero-media {
    inset: 0;
    opacity: 0.32;
    clip-path: none;
  }

  .interior-hero-media::after {
    background: linear-gradient(90deg, rgba(0, 26, 51, 0.95), rgba(0, 42, 88, 0.62));
  }

  .interior-hero h1,
  .interior-hero-inner > p:not(.eyebrow) {
    width: 100%;
  }

  .interior-hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .industry-jump {
    overflow-x: auto;
  }

  .industry-jump-grid {
    width: 720px;
    grid-template-columns: repeat(6, 120px);
  }

  .industry-profile-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .detail-jump {
    overflow-x: auto;
  }

  .detail-jump-grid {
    width: 600px;
    grid-template-columns: repeat(5, 120px);
  }

  .exposure-card-grid,
  .coverage-detail-grid,
  .result-story-grid,
  .case-study-grid,
  .result-case-split,
  .risk-focus-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .featured-result-stat {
    padding: 30px 0 0;
    border-top: 2px solid var(--gold-500);
    border-left: 0;
  }

  .case-study-card ul {
    grid-template-columns: 1fr;
  }

  .result-case-figure {
    padding: 35px 30px;
  }

  .coverage-detail-grid article:nth-child(n) {
    background: var(--white);
  }

  .coverage-detail-grid article:nth-child(2n) {
    background: var(--mist-50);
  }

  .result-stat {
    padding: 30px 0 0;
    border-top: 2px solid var(--gold-500);
    border-left: 0;
  }

  .risk-focus-number {
    display: none;
  }

  .risk-checklist {
    grid-column: auto;
  }

  .industry-profile {
    min-height: 0;
    padding: 30px 26px;
  }

  .exposure-list {
    grid-template-columns: 1fr;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgba(0, 26, 51, 0.94), rgba(0, 42, 88, 0.65));
  }

  .hero-copy {
    width: 100%;
    padding: 70px 0 120px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .proof-strip {
    margin-top: -70px;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section,
  .dark-section {
    padding: 76px 0;
  }

  .intro-grid,
  .team-grid,
  .captive-grid,
  .results-grid,
  .benefits-specialist-grid,
  .leader-feature,
  .champion-about-grid,
  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .review-page-layout {
    grid-template-columns: 1fr;
  }

  .review-context {
    position: static;
    max-width: 700px;
  }

  .leader-photo {
    width: min(100%, 540px);
    min-height: 620px;
  }

  .legacy-portrait {
    width: min(100%, 540px);
    min-height: 620px;
  }

  .specialist-profile-grid {
    grid-template-columns: 1fr;
  }

  .specialist-profile:last-child {
    grid-column: auto;
    display: block;
  }

  .specialist-profile figure,
  .specialist-profile:last-child figure {
    min-height: 500px;
  }

  .benefits-specialist-photo {
    width: min(100%, 540px);
    min-height: 560px;
  }

  .section-heading,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .industry-card,
  .solution-card,
  .insight-card {
    min-height: 225px;
  }

  .result-callout {
    padding: 30px 0 0;
    border-top: 2px solid var(--gold-500);
    border-left: 0;
  }

  .team-visual {
    min-height: 360px;
  }

  .team-portrait,
  .team-visual {
    min-height: 390px;
  }

  .team-grid h2 {
    line-height: 1.14;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

.article-hero .interior-hero-inner {
  max-width: 920px;
}

.article-hero h1 {
  max-width: 850px;
}

.article-byline {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.article-byline img {
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  height: 62px;
  object-fit: cover;
  width: 62px;
}

.article-byline span {
  display: grid;
  gap: 3px;
}

.article-byline strong {
  color: #fff;
  font-size: 0.95rem;
}

.article-byline small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.35;
}

.article-layout {
  display: grid;
  gap: clamp(48px, 7vw, 94px);
  grid-template-columns: minmax(0, 1fr) 310px;
  padding-bottom: clamp(72px, 8vw, 116px);
  padding-top: clamp(62px, 7vw, 100px);
}

.article-body {
  color: #33475b;
  font-size: 1.03rem;
  line-height: 1.78;
  max-width: 780px;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body .article-lead {
  color: var(--navy);
  font-size: clamp(1.24rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.48;
  margin-bottom: 26px;
}

.article-body h2 {
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 60px 0 20px;
  scroll-margin-top: 170px;
}

.article-body ul {
  margin: 0 0 26px;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.article-checklist {
  display: grid;
  gap: 10px 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  padding: 0 !important;
}

.article-checklist li {
  align-items: center;
  border-bottom: 1px solid #dce4ea;
  color: var(--navy);
  display: flex;
  font-weight: 650;
  gap: 10px;
  margin: 0;
  padding: 11px 0;
}

.article-checklist li::before {
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

.article-pullquote {
  border-left: 5px solid var(--gold);
  color: var(--navy);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-style: normal;
  font-weight: 650;
  line-height: 1.4;
  margin: 46px 0;
  padding: 7px 0 7px 28px;
}

.article-pullquote-blue {
  border-color: var(--blue);
}

.article-link-panel {
  align-items: end;
  background: #f1f6f9;
  border-left: 5px solid var(--blue);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 42px 0 52px;
  padding: 30px 32px;
}

.article-link-panel span,
.article-sidebar-card > span,
.article-author-card > span,
.article-sidebar-cta > span {
  color: var(--blue);
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.article-link-panel h3,
.article-link-panel p {
  margin: 0;
}

.article-link-panel h3 {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.article-link-panel p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.article-link-panel .text-link {
  white-space: nowrap;
}

.article-disclaimer {
  border-top: 1px solid #ced9e0;
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: 54px;
  padding-top: 24px;
}

.article-disclaimer strong {
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

.article-disclaimer p {
  margin: 0;
}

.article-sidebar {
  align-self: start;
  display: grid;
  gap: 24px;
  position: sticky;
  top: 110px;
}

.article-sidebar-card,
.article-author-card,
.article-sidebar-cta {
  border: 1px solid #dce4ea;
  padding: 28px;
}

.article-sidebar-card {
  display: grid;
  gap: 2px;
}

.article-sidebar-card a {
  border-bottom: 1px solid #e5ebef;
  color: #43576a;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 10px 0;
  text-decoration: none;
}

.article-sidebar-card a:last-child {
  border-bottom: 0;
}

.article-sidebar-card a:hover,
.article-sidebar-card a:focus-visible {
  color: var(--blue);
}

.article-author-card img {
  border-radius: 50%;
  height: 88px;
  margin-bottom: 18px;
  object-fit: cover;
  width: 88px;
}

.article-author-card h3,
.article-sidebar-cta h3 {
  color: var(--navy);
  margin: 0 0 10px;
}

.article-author-card p,
.article-sidebar-cta p {
  color: #536779;
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0 0 18px;
}

.article-sidebar-cta {
  background: var(--navy);
  border-color: var(--navy);
}

.article-sidebar-cta > span {
  color: var(--gold);
}

.article-sidebar-cta h3 {
  color: #fff;
}

.article-sidebar-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.article-sidebar-cta .button {
  font-size: 0.72rem;
  line-height: 1.25;
  padding: 14px 16px;
  text-align: center;
  width: 100%;
}

.article-next {
  background: #f4f7f9;
  border-top: 1px solid #dfe7ec;
  padding: clamp(58px, 7vw, 86px) 0;
}

.article-next-inner {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.article-next h2 {
  color: var(--navy);
  margin: 0 0 12px;
}

.article-next p:not(.eyebrow) {
  color: #536779;
  margin: 0;
  max-width: 760px;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .article-sidebar-card {
    display: none;
  }

  .article-next-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

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

  .award-card,
  .award-card:last-child {
    grid-column: auto;
    min-height: 230px;
  }

  .awards-heading {
    align-items: start;
  }

  .article-sidebar,
  .article-checklist,
  .article-link-panel {
    grid-template-columns: 1fr;
  }

  .article-body {
    font-size: 0.96rem;
  }

  .article-link-panel {
    align-items: start;
    padding: 25px 23px;
  }

  .article-pullquote {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .insights-page-grid,
  .insight-topic-grid,
  .contributor-card {
    grid-template-columns: 1fr;
  }

  .contributor-card img {
    height: 320px;
  }

  .mailerlite-form-shell {
    padding: 8px;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-span-2 {
    grid-column: auto;
  }

  .review-form-card {
    padding: 27px 20px;
  }

  .brand-copy small {
    max-width: 150px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .publication-slide {
    transform: none;
  }
}
