:root {
  --off-white: #f5f4ee;
  --navy: #1f3a64;
  --deep-navy: #152b4e;
  --elevate-blue: #6587b4;
  --light-blue: #dde9ff;
  --teal: #0d9488;
  --slate-text: #3d5068;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--deep-navy);
  font-family: "Plus Jakarta Sans Variable", "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--off-white);
  color: var(--deep-navy);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(100% - 112px, 1360px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-navy);
  color: var(--off-white);
}

.hero > picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: auto;
  width: 122%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.12) contrast(1.5) brightness(0.94);
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(21, 43, 78, 0.34) 0%,
      rgba(21, 43, 78, 0.14) 12%,
      rgba(21, 43, 78, 0) 24%
    ),
    linear-gradient(
      90deg,
      rgba(21, 43, 78, 0.94) 0%,
      rgba(21, 43, 78, 0.88) 29%,
      rgba(31, 58, 100, 0.64) 45%,
      rgba(31, 58, 100, 0.23) 57%,
      rgba(21, 43, 78, 0.04) 66%,
      rgba(21, 43, 78, 0) 73%
    );
}

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 10;
  display: flex;
  width: min(100% - 112px, 1360px);
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(221, 233, 255, 0.3);
  isolation: isolate;
}

.site-header::before {
  position: absolute;
  inset-block: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  background: linear-gradient(90deg, rgba(21, 43, 78, 0.97), rgba(21, 43, 78, 0.88));
  content: "";
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(200px, 18vw, 250px);
  min-height: 44px;
}

.brand:focus-visible {
  outline: 2px solid var(--light-blue);
  outline-offset: 3px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.gtm-noscript {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  visibility: hidden;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.875rem;
  font-weight: 500;
}

.desktop-nav > a:not(.nav-cta),
.language-switch {
  position: relative;
  color: rgba(245, 244, 238, 0.84);
  transition: color 180ms ease;
}

.desktop-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--light-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.nav-cta):hover,
.desktop-nav > a:not(.nav-cta):focus-visible,
.language-switch:hover,
.language-switch:focus-visible {
  color: var(--off-white);
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  cursor: pointer;
  border: 0;
  border-left: 1px solid rgba(221, 233, 255, 0.25);
  padding: 4px 0 4px 25px;
  background: transparent;
  letter-spacing: 0.08em;
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  cursor: pointer;
  align-items: center;
  border: 1px solid rgba(245, 244, 238, 0.78);
  padding: 0 22px;
  background: transparent;
  color: var(--off-white);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--off-white);
  color: var(--deep-navy);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 118px;
}

.hero__copy {
  width: min(920px, 70vw);
}

.kicker {
  display: flex;
  margin: 0 0 32px;
  align-items: center;
  gap: 14px;
  color: rgba(221, 233, 255, 0.78);
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
  animation: copy-in 520ms 100ms ease-out both;
}

.kicker span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
}

h1 {
  max-width: 920px;
  margin: 0;
  color: var(--off-white);
  font-size: clamp(3.25rem, 5.45vw, 5.5rem);
  font-variation-settings: "wght" 800;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
  animation: copy-in 560ms 170ms ease-out both;
}

h1 span {
  display: block;
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(221, 233, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 300;
  line-height: 1.65;
  animation: copy-in 560ms 240ms ease-out both;
}

.hero__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 36px;
  animation: copy-in 560ms 310ms ease-out both;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button--light {
  border: 1px solid var(--off-white);
  background: var(--off-white);
  color: var(--deep-navy);
}

.button--light:hover,
.button--light:focus-visible {
  transform: translateY(-2px);
  background: var(--light-blue);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(221, 233, 255, 0.58);
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.text-link span {
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.hero__proof {
  position: absolute;
  bottom: 38px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  transform: translateX(-50%);
  color: rgba(221, 233, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.hero__proof span {
  padding: 0 22px;
  border-left: 1px solid rgba(221, 233, 255, 0.25);
}

.hero__proof span:first-child {
  padding-left: 0;
  border-left: 0;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section {
  position: relative;
  padding: clamp(88px, 7vw, 112px) 0;
}

.section-anchor {
  scroll-margin-top: 18px;
}

.section-heading h2,
.team-overview h2,
.contact-layout h2 {
  max-width: 760px;
  margin: 0;
  color: var(--deep-navy);
  font-size: clamp(2.3rem, 3.7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 9vw;
}

.section-kicker {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 12px;
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
}

.section-lead,
.team-overview__copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.72;
}

.number {
  color: var(--slate-text);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.section--intro {
  background: var(--off-white);
}

.pillar-grid {
  display: grid;
  margin-top: 84px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(31, 58, 100, 0.22);
}

.pillar {
  min-height: 238px;
  padding: 34px 46px 0 0;
  border-right: 1px solid rgba(31, 58, 100, 0.17);
}

.pillar + .pillar {
  padding-left: 46px;
}

.pillar:last-child {
  border-right: 0;
}

.pillar h3,
.service-row h3,
.audience-grid h3,
.journey-steps h3,
.engagement-tracks h3 {
  margin: 28px 0 12px;
  color: var(--deep-navy);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.pillar p,
.service-row p,
.audience-grid p,
.journey-steps p,
.engagement-tracks p {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.65;
}

.section--services {
  border-top: 1px solid rgba(31, 58, 100, 0.08);
  background: var(--off-white);
}

.boutique-declaration {
  max-width: 1060px;
  margin: 58px 0 0;
  border-left: 1px solid var(--elevate-blue);
  padding: 4px 0 4px 28px;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.75vw, 1.52rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.service-ecosystem {
  display: grid;
  margin-top: 78px;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
}

.ecosystem-hub {
  position: sticky;
  top: 34px;
  min-height: 620px;
  padding: 48px 42px;
  background: var(--deep-navy);
  color: var(--off-white);
}

.ecosystem-hub > p {
  margin: 0;
  color: rgba(221, 233, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ecosystem-hub > strong {
  display: block;
  margin-top: 36px;
  color: var(--light-blue);
  font-size: clamp(4.6rem, 7vw, 6.6rem);
  font-weight: 200;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.ecosystem-hub > p.ecosystem-hub__title {
  max-width: 360px;
  margin: 28px 0 18px;
  color: var(--off-white);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-transform: none;
}

.ecosystem-hub__index {
  display: grid;
  gap: 2px;
}

.ecosystem-hub__index a {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 5px 0 5px 17px;
  color: rgba(221, 233, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 180ms ease;
}

.ecosystem-hub__index a::before {
  position: absolute;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  content: "";
  transition: background 180ms ease;
}

.ecosystem-hub__index a:hover,
.ecosystem-hub__index a:focus-visible,
.ecosystem-hub__index a.is-active {
  color: var(--off-white);
}

.ecosystem-hub__index a.is-active::before {
  background: var(--teal);
}

.ecosystem-hub__close {
  display: block;
  max-width: 370px;
  margin-top: 18px;
  color: rgba(221, 233, 255, 0.84);
  font-size: 0.82rem;
  line-height: 1.6;
}

.service-list {
  position: relative;
  display: grid;
  gap: 12px;
}

.service-list::before {
  position: absolute;
  top: 44px;
  bottom: 82px;
  left: 39px;
  width: 1px;
  background: rgba(101, 135, 180, 0.34);
  content: "";
}

.service-row {
  position: relative;
  display: grid;
  min-height: 248px;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid rgba(31, 58, 100, 0.11);
  padding: 26px 38px 27px;
  background: var(--off-white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-row:hover {
  border-color: rgba(31, 58, 100, 0.24);
  box-shadow: 0 18px 46px rgba(21, 43, 78, 0.1);
}

.service-row__heading {
  position: relative;
  z-index: 1;
}

.service-row__heading .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 58, 100, 0.18);
  background: var(--off-white);
}

.service-row__heading p {
  margin-top: 56px;
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-row__content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.service-row__content > p {
  max-width: 720px;
}

.service-row ul {
  display: grid;
  margin: 18px 0 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  gap: 9px 24px;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 15px;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-row li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.service-cta {
  display: inline-flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid rgba(31, 58, 100, 0.3);
  padding: 0;
  background: transparent;
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
}

.service-cta b {
  font-size: 1rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.service-cta:hover b,
.service-cta:focus-visible b {
  transform: translateX(5px);
}

.service-detail-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 10px;
  align-items: center;
  gap: 9px;
  color: var(--slate-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(61, 80, 104, 0.35);
  text-underline-offset: 4px;
}

.service-detail-link:hover,
.service-detail-link:focus-visible {
  color: var(--deep-navy);
}

.transversal-capability {
  position: relative;
  display: grid;
  margin-top: 18px;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid rgba(31, 58, 100, 0.2);
  padding: 30px 34px;
  background: var(--light-blue);
}

.transversal-capability__marker {
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--teal);
}

.transversal-capability__kicker {
  max-width: 1180px;
  margin: 0;
  color: var(--deep-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.55;
}

.transversal-capability__body {
  max-width: 1180px;
  margin: 12px 0 0;
  color: var(--deep-navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
}

.transversal-capability__title {
  max-width: 1180px;
  margin: 10px 0 0;
  color: var(--deep-navy);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.35;
}

.transversal-capability__cta {
  display: inline-flex;
  min-height: 44px;
  cursor: pointer;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  border: 0;
  border-bottom: 1px solid rgba(31, 58, 100, 0.3);
  padding: 0;
  background: transparent;
  color: var(--deep-navy);
  font-size: 0.875rem;
  font-weight: 700;
}

.transversal-capability__cta b {
  font-size: 1rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.transversal-capability__cta:hover b,
.transversal-capability__cta:focus-visible b {
  transform: translateX(5px);
}

.services-close {
  display: flex;
  min-height: 156px;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px 40px;
  background: var(--deep-navy);
  color: var(--off-white);
}

.services-close p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.services-close .button {
  flex: 0 0 auto;
  cursor: pointer;
  gap: 14px;
}

.section--audiences {
  overflow: hidden;
  background: var(--deep-navy);
  color: var(--off-white);
}

.section--audiences .section-kicker,
.section--contact .section-kicker {
  color: var(--light-blue);
}

.section--audiences::after {
  position: absolute;
  right: -220px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(101, 135, 180, 0.2);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(101, 135, 180, 0.05), 0 0 0 140px rgba(101, 135, 180, 0.035);
}

.section-heading--light h2 {
  max-width: 780px;
  color: var(--off-white);
}

.audience-support {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(221, 233, 255, 0.8);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(221, 233, 255, 0.2);
}

.audience-grid article {
  min-height: 390px;
  padding: 32px 32px 34px 0;
  border-right: 1px solid rgba(221, 233, 255, 0.15);
}

.audience-grid article + article {
  padding-left: 32px;
}

.audience-grid article:last-child {
  border-right: 0;
}

.audience-grid article > span {
  color: var(--light-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.audience-grid h3 {
  color: var(--off-white);
}

.audience-grid p {
  color: rgba(221, 233, 255, 0.84);
}

.audience-close {
  position: relative;
  z-index: 1;
  margin: 0;
  border-top: 1px solid rgba(221, 233, 255, 0.2);
  padding-top: 34px;
  color: var(--off-white);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.55;
}

.section--journey {
  background: var(--off-white);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.1fr);
  gap: 9vw;
}

.journey-copy {
  position: sticky;
  top: 70px;
  align-self: start;
}

.journey-copy .section-lead {
  margin-top: 28px;
}

.journey-panel {
  min-width: 0;
}

.journey-steps {
  border-top: 1px solid rgba(31, 58, 100, 0.23);
}

.journey-steps article {
  position: relative;
  display: grid;
  min-height: 164px;
  grid-template-columns: 78px 1fr;
  padding: 28px 0;
  border-bottom: 1px solid rgba(31, 58, 100, 0.16);
}

.journey-steps article::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 1px;
  background: rgba(101, 135, 180, 0.22);
  content: "";
}

.journey-steps .number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(31, 58, 100, 0.2);
  background: var(--off-white);
}

.journey-steps h3 {
  margin: 7px 0 11px;
}

.journey-steps .timing {
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.engagement-tracks {
  margin-top: 48px;
  border: 1px solid rgba(31, 58, 100, 0.15);
  padding: 28px;
  background: var(--off-white);
}

.engagement-tracks > p {
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.engagement-tracks > div {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(31, 58, 100, 0.14);
}

.engagement-tracks article {
  position: relative;
  min-height: 360px;
  padding: 24px 22px 0 0;
  border-right: 1px solid rgba(31, 58, 100, 0.12);
}

.engagement-tracks article + article {
  padding-left: 22px;
}

.engagement-tracks article:last-child {
  border-right: 0;
}

.engagement-tracks article > span {
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.engagement-tracks h3 {
  margin: 30px 0 10px;
  font-size: 1rem;
}

.engagement-tracks p {
  font-size: 0.9rem;
}

.track-label {
  display: block;
  margin: 18px 0 7px;
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.track-label--includes {
  margin-top: 20px;
}

.track-recommended {
  position: absolute;
  top: 24px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--slate-text);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-recommended i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.engagement-tracks ul {
  display: grid;
  margin: 20px 0 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.engagement-tracks li {
  position: relative;
  padding-left: 13px;
  color: var(--navy);
  font-size: 0.85rem;
  line-height: 1.45;
}

.engagement-tracks li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.engagement-tracks article > strong {
  display: block;
  margin-top: 20px;
  border-top: 1px solid rgba(31, 58, 100, 0.12);
  padding-top: 16px;
  color: var(--deep-navy);
  font-size: 0.85rem;
  line-height: 1.5;
}

.section--team {
  background: var(--light-blue);
}

.section--quote {
  background: var(--off-white);
}

.team-layout {
  display: grid;
  max-width: 1180px;
  gap: clamp(42px, 5vw, 64px);
}

.team-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
  border: 1px solid rgba(31, 58, 100, 0.18);
  padding: clamp(42px, 5.5vw, 70px);
  background: var(--off-white);
}

.team-overview .section-kicker {
  margin-bottom: 20px;
}

.team-overview h2 {
  max-width: 560px;
}

.team-overview__copy > p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
}

.team-capabilities {
  display: grid;
  margin: 30px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  gap: 10px;
  list-style: none;
}

.team-capabilities li {
  position: relative;
  min-height: 64px;
  border: 1px solid rgba(31, 58, 100, 0.14);
  padding: 18px 18px 18px 32px;
  background: rgba(221, 233, 255, 0.42);
  color: var(--deep-navy);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.45;
}

.team-capabilities li::before {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
  transform: translateY(-50%);
}

.team-principle {
  position: relative;
  padding: 46px 48px 52px;
  border-top: 1px solid rgba(31, 58, 100, 0.18);
  border-bottom: 1px solid rgba(31, 58, 100, 0.18);
  color: var(--deep-navy);
  text-align: center;
}

.team-principle > span {
  display: block;
  height: 62px;
  color: var(--elevate-blue);
  font-size: 6rem;
  font-weight: 200;
  line-height: 0.9;
}

.team-principle blockquote {
  max-width: 920px;
  margin: 28px auto 0;
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.team-credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-credentials .section-kicker {
  justify-content: center;
}

.team-highlights {
  display: grid;
  width: 100%;
  margin: 24px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  gap: 10px;
  list-style: none;
}

.team-highlights li {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid rgba(31, 58, 100, 0.16);
  padding: 14px 16px;
  background: rgba(245, 244, 238, 0.62);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.team-highlights li > a,
.team-highlights li > span {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.team-highlights li > a {
  transition: color 180ms ease;
}

.team-highlights li > a b {
  color: var(--elevate-blue);
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 180ms ease, color 180ms ease;
}

.team-highlights li > a:hover,
.team-highlights li > a:focus-visible {
  color: var(--deep-navy);
  outline: none;
}

.team-highlights li > a:hover b,
.team-highlights li > a:focus-visible b {
  color: var(--slate-text);
  transform: translate(2px, -2px);
}

.team-highlights li > a:focus-visible {
  box-shadow: 0 0 0 2px rgba(101, 135, 180, 0.45);
}

.section--faq {
  background: var(--off-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: 9vw;
}

.faq-list {
  border-top: 1px solid rgba(31, 58, 100, 0.22);
}

.faq-list details {
  scroll-margin-top: 28px;
  border-bottom: 1px solid rgba(31, 58, 100, 0.18);
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  cursor: pointer;
  grid-template-columns: 44px 1fr 30px;
  align-items: center;
  gap: 10px;
  color: var(--deep-navy);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.faq-list summary:focus-visible {
  outline-offset: -2px;
}

.faq-list summary h3 {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

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

.faq-list summary > span {
  color: var(--slate-text);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.faq-list summary i {
  color: var(--slate-text);
  font-size: 1.45rem;
  font-style: normal;
  font-weight: 200;
  text-align: right;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 720px;
  margin: -5px 30px 26px 54px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.7;
}

.section--contact {
  background: var(--deep-navy);
  color: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: 9vw;
}

.contact-layout h2 {
  color: var(--off-white);
}

.contact-intro > p {
  color: rgba(221, 233, 255, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-intro > small {
  display: block;
  margin-top: 18px;
  color: var(--light-blue);
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-email-support {
  margin-top: 28px;
  font-size: 0.92rem !important;
}

.contact-email-support a {
  color: var(--off-white);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.discovery-form {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(221, 233, 255, 0.24);
  padding: clamp(28px, 4vw, 46px);
  background: rgba(31, 58, 100, 0.46);
}

.discovery-form__heading h3 {
  margin: 0;
  color: var(--off-white);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: -0.035em;
}

.discovery-form__heading p {
  margin: 10px 0 0;
  color: #c8d4e8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.discovery-form label:not(.form-honeypot) {
  display: grid;
  gap: 8px;
}

.discovery-form label > span {
  color: var(--off-white);
  font-size: 0.82rem;
  font-weight: 700;
}

.discovery-form input,
.discovery-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(221, 233, 255, 0.42);
  border-radius: 0;
  padding: 12px 14px;
  background: var(--off-white);
  color: var(--deep-navy);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

.discovery-form textarea {
  min-height: 116px;
  resize: vertical;
}

.discovery-form input:focus,
.discovery-form textarea:focus {
  border-color: var(--teal);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.discovery-form__privacy {
  margin: 0;
  color: #c8d4e8;
  font-size: 0.78rem;
  line-height: 1.55;
}

.discovery-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.discovery-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status--error {
  color: #ffe1dc;
}

.site-footer {
  padding: 74px 0 28px;
  background: var(--off-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}

.footer-grid img {
  width: 180px;
  height: auto;
}

.footer-grid > p {
  margin: 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  color: var(--navy);
  font-size: 0.82rem;
}

.footer-grid a {
  color: var(--navy);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  margin-top: 66px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(31, 58, 100, 0.14);
  padding-top: 24px;
  color: var(--slate-text);
  font-size: 0.75rem;
}

.footer-bottom a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(31, 58, 100, 0.22);
  color: var(--navy);
}

.pillar-page {
  min-height: 100vh;
  background: var(--off-white);
  color: var(--deep-navy);
}

.pillar-header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  display: flex;
  width: min(100% - 112px, 1360px);
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(221, 233, 255, 0.18);
}

.pillar-header > a {
  display: inline-flex;
  width: 210px;
  min-height: 44px;
  align-items: center;
}

.pillar-header img {
  width: 100%;
  height: auto;
}

.pillar-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--off-white);
  font-size: 0.86rem;
  font-weight: 600;
}

.pillar-header nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.pillar-header__cta {
  border: 1px solid rgba(245, 244, 238, 0.72);
  padding: 0 18px;
}

.pillar-hero {
  padding: 170px 0 104px;
  background:
    radial-gradient(circle at 88% 18%, rgba(13, 148, 136, 0.16), transparent 24%),
    linear-gradient(145deg, var(--deep-navy), var(--navy));
  color: var(--off-white);
}

.pillar-hero .shell {
  max-width: 1160px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 58px;
  align-items: center;
  gap: 10px;
  color: #c8d4e8;
  font-size: 0.78rem;
}

.breadcrumbs a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pillar-byline {
  margin: -34px 0 34px;
  color: #c8d4e8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.pillar-hero h1 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.pillar-hero__definition {
  max-width: 850px;
  margin: 30px 0 0;
  color: var(--off-white);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 600;
  line-height: 1.48;
}

.pillar-hero__context {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c8d4e8;
  font-size: 1rem;
  line-height: 1.7;
}

.pillar-hero__actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 30px;
}

.pillar-priorities h2,
.pillar-process h2,
.pillar-fit h2,
.pillar-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.pillar-priorities__grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(31, 58, 100, 0.17);
  border-left: 1px solid rgba(31, 58, 100, 0.17);
}

.pillar-priorities__grid article {
  min-height: 260px;
  border-right: 1px solid rgba(31, 58, 100, 0.17);
  border-bottom: 1px solid rgba(31, 58, 100, 0.17);
  padding: clamp(28px, 4vw, 46px);
}

.pillar-priorities__grid article > span {
  color: var(--slate-text);
  font-size: 0.72rem;
  font-weight: 700;
}

.pillar-priorities__grid h3 {
  margin: 40px 0 0;
  font-size: 1.34rem;
}

.pillar-priorities__grid p,
.pillar-process p,
.pillar-fit p {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.7;
}

.pillar-process {
  background: var(--light-blue);
}

.pillar-process__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
}

.pillar-process__layout > div > p:last-child {
  margin-top: 28px;
  font-weight: 700;
}

.pillar-process ol {
  margin: 0;
  counter-reset: process;
  padding: 0;
  list-style: none;
}

.pillar-process li {
  position: relative;
  min-height: 132px;
  border-top: 1px solid rgba(31, 58, 100, 0.18);
  padding: 28px 0 24px 66px;
  counter-increment: process;
}

.pillar-process li::before {
  position: absolute;
  top: 30px;
  left: 0;
  color: var(--slate-text);
  content: "0" counter(process);
  font-size: 0.72rem;
  font-weight: 800;
}

.pillar-process li h3 {
  margin: 0;
  font-size: 1.25rem;
}

.pillar-process li p {
  margin: 8px 0 0;
}

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

.pillar-fit article {
  min-height: 360px;
  border: 1px solid rgba(31, 58, 100, 0.17);
  padding: clamp(34px, 5vw, 62px);
  background: white;
}

.pillar-fit article p:last-child {
  margin-top: 28px;
}

.pillar-cta {
  background: var(--deep-navy);
  color: var(--off-white);
}

.pillar-cta .shell {
  max-width: 980px;
  text-align: center;
}

.pillar-cta .section-kicker {
  justify-content: center;
  color: #c8d4e8;
}

.pillar-cta h2 {
  margin-inline: auto;
  color: var(--off-white);
}

.pillar-cta p:not(.section-kicker) {
  margin: 24px 0 0;
  color: #c8d4e8;
}

.pillar-cta .button {
  margin-top: 34px;
}

.pillar-footer {
  padding: 54px 0 26px;
  background: var(--off-white);
}

.pillar-footer .shell {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  color: var(--slate-text);
  font-size: 0.76rem;
}

.pillar-footer img {
  width: 180px;
  height: auto;
}

.pillar-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 800;
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .shell,
  .site-header {
    width: min(100% - 72px, 1080px);
  }

  .desktop-nav {
    gap: 22px;
    font-size: 0.8rem;
  }

  .site-header {
    min-height: 112px;
  }

  .section {
    padding: 92px 0;
  }

  .journey-layout {
    gap: 6vw;
  }

  .engagement-tracks > div {
    grid-template-columns: 1fr;
  }

  .engagement-tracks article,
  .engagement-tracks article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 58, 100, 0.12);
    padding: 24px 0;
  }

  .engagement-tracks article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .shell,
  .site-header {
    width: min(100% - 56px, 900px);
  }

  .desktop-nav {
    display: none;
  }

  .site-header {
    min-height: 104px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(245, 244, 238, 0.62);
    background: rgba(21, 43, 78, 0.35);
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--off-white);
  }

  .mobile-nav {
    position: absolute;
    top: 88px;
    right: 0;
    display: flex;
    width: min(340px, calc(100vw - 56px));
    flex-direction: column;
    padding: 22px;
    border: 1px solid rgba(221, 233, 255, 0.22);
    background: rgba(21, 43, 78, 0.98);
    box-shadow: 0 22px 60px rgba(21, 43, 78, 0.34);
  }

  .mobile-nav a {
    min-height: 52px;
    border: 0;
    border-bottom: 1px solid rgba(221, 233, 255, 0.14);
    padding: 0;
    background: transparent;
    color: var(--off-white);
    text-align: left;
  }

  .hero__copy {
    width: min(720px, 88vw);
  }

  .hero__image {
    left: -8%;
    width: 136%;
    object-position: center 34%;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(21, 43, 78, 0.36) 0%,
        rgba(21, 43, 78, 0.12) 14%,
        rgba(21, 43, 78, 0) 27%
      ),
      linear-gradient(
        90deg,
        rgba(21, 43, 78, 0.93) 0%,
        rgba(21, 43, 78, 0.8) 48%,
        rgba(31, 58, 100, 0.32) 67%,
        rgba(21, 43, 78, 0) 84%
      );
  }

  .section {
    padding: 82px 0;
  }

  .section-heading--split,
  .journey-layout,
  .service-ecosystem,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .audience-grid {
    row-gap: 14px;
  }

  .audience-grid article {
    min-height: 340px;
  }

  .ecosystem-hub,
  .journey-copy {
    position: static;
  }

  .ecosystem-hub {
    min-height: 450px;
  }

  .service-list::before {
    left: 39px;
  }

  .team-overview {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pillar-header {
    width: min(100% - 56px, 900px);
  }

  .pillar-header nav > a:not(.pillar-header__cta) {
    display: none;
  }

  .pillar-process__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 640px) {
  .shell,
  .site-header {
    width: calc(100% - 40px);
  }

  .site-header {
    min-height: 102px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: 780px;
  }

  .hero__image {
    left: -1%;
    width: 112%;
    object-position: center center;
    filter: saturate(1.12) contrast(1.42) brightness(0.92);
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(21, 43, 78, 0.12) 0%, rgba(31, 58, 100, 0.27) 31%, rgba(21, 43, 78, 0.7) 57%, rgba(21, 43, 78, 0.94) 100%),
      linear-gradient(90deg, rgba(31, 58, 100, 0.24), rgba(101, 135, 180, 0.04));
  }

  .hero__content {
    min-height: 780px;
    align-items: flex-end;
    padding-top: 148px;
    padding-bottom: 132px;
  }

  .hero__copy {
    width: 100%;
  }

  .kicker {
    margin-bottom: 18px;
    font-size: 0.62rem;
    letter-spacing: 0.17em;
  }

  h1 {
    font-size: clamp(2.2rem, 9.4vw, 2.85rem);
    line-height: 1.05;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero__actions {
    display: grid;
    margin-top: 24px;
    gap: 12px;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .text-link {
    justify-content: space-between;
  }

  .hero__proof {
    bottom: 24px;
    display: grid;
    gap: 8px;
    font-size: 0.66rem;
  }

  .hero__proof span,
  .hero__proof span:first-child {
    padding: 0;
    border: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .team-overview h2,
  .contact-layout h2 {
    font-size: clamp(1.95rem, 8.7vw, 2.2rem);
    line-height: 1.08;
  }

  .section-heading--split,
  .journey-layout,
  .contact-layout,
  .faq-layout {
    gap: 34px;
  }

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

  .pillar-grid,
  .audience-grid {
    margin-top: 52px;
  }

  .audience-support {
    margin-top: 22px;
  }

  .pillar,
  .pillar + .pillar,
  .audience-grid article,
  .audience-grid article + article {
    min-height: auto;
    padding: 27px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 58, 100, 0.15);
  }

  .audience-grid article,
  .audience-grid article + article {
    border-color: rgba(221, 233, 255, 0.14);
  }

  .audience-close {
    padding-top: 28px;
    font-size: 1.04rem;
  }

  .service-ecosystem {
    margin-top: 52px;
    gap: 14px;
  }

  .boutique-declaration {
    margin-top: 38px;
    padding-left: 20px;
    font-size: 1.04rem;
  }

  .ecosystem-hub {
    min-height: 430px;
    padding: 38px 28px;
  }

  .ecosystem-hub > strong {
    margin-top: 50px;
  }

  .ecosystem-hub__title {
    margin-top: 36px;
  }

  .service-list::before {
    top: 35px;
    bottom: 72px;
    left: 35px;
  }

  .service-row {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 26px 32px;
  }

  .service-row__heading {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .service-row__heading .number {
    width: 38px;
    height: 38px;
  }

  .service-row__heading p {
    margin: 0;
  }

  .service-row ul {
    grid-template-columns: 1fr;
  }

  .transversal-capability {
    grid-template-columns: 12px 1fr;
    gap: 12px;
    padding: 24px 22px;
  }

  .services-close {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
  }

  .services-close .button {
    width: 100%;
  }

  .journey-steps article {
    min-height: 154px;
    grid-template-columns: 58px 1fr;
  }

  .engagement-tracks > div {
    grid-template-columns: 1fr;
  }

  .engagement-tracks article,
  .engagement-tracks article + article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 58, 100, 0.12);
    padding: 22px 0;
  }

  .engagement-tracks article:last-child {
    border-bottom: 0;
  }

  .engagement-tracks h3 {
    margin-top: 16px;
  }

  .track-recommended {
    top: 22px;
    right: 0;
  }

  .team-layout {
    gap: 38px;
  }

  .service-row__content > p,
  .service-row li,
  .audience-grid p,
  .journey-steps p,
  .engagement-tracks p,
  .team-overview__copy > p,
  .faq-list details > p,
  .contact-copy > p {
    font-size: 1rem;
  }

  .team-overview {
    gap: 28px;
    padding: 32px 24px;
  }

  .discovery-form {
    padding: 28px 22px;
  }

  .team-capabilities {
    grid-template-columns: 1fr;
  }

  .team-capabilities li {
    min-height: 56px;
  }

  .team-principle {
    padding: 42px 18px 48px;
  }

  .team-principle blockquote {
    margin-top: 22px;
    font-size: 1.45rem;
  }

  .team-highlights {
    grid-template-columns: 1fr;
  }

  .team-highlights li {
    min-height: 58px;
  }

  .faq-list summary {
    min-height: 84px;
    grid-template-columns: 34px 1fr 24px;
    font-size: 1rem;
  }

  .faq-list details > p {
    margin-left: 44px;
  }

  .footer-grid > div {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-end;
    gap: 28px;
  }

  .pillar-header {
    width: calc(100% - 40px);
    min-height: 96px;
  }

  .pillar-header > a {
    width: 168px;
  }

  .pillar-header__cta {
    display: none !important;
  }

  .pillar-hero {
    padding: 132px 0 76px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .pillar-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .pillar-hero__definition {
    margin-top: 22px;
    font-size: 1.16rem;
  }

  .pillar-hero__actions {
    display: grid;
    gap: 12px;
  }

  .pillar-priorities__grid,
  .pillar-fit__grid {
    grid-template-columns: 1fr;
  }

  .pillar-priorities__grid article,
  .pillar-fit article {
    min-height: auto;
  }

  .pillar-process li {
    padding-left: 46px;
  }

  .pillar-footer .shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

}

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