:root {
  color-scheme: light;
  --ink: #0d0d0d;
  --navy: #06131b;
  --navy-2: #0b1d26;
  --navy-3: #112d36;
  --teal: #2ec4b6;
  --teal-2: #5ee3d8;
  --teal-deep: #159a91;
  --white: #ffffff;
  --paper: #f5f7f8;
  --line: #d8dee2;
  --muted: #47545c;
  --muted-light: #aebbc2;
  --shadow: 0 24px 70px rgba(4, 15, 24, 0.18);
  --radius: 8px;
  --container: 1288px;
  font-family: "Source Sans 3", Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 4px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  transition: transform 160ms ease;
}

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

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-grid;
  grid-template-columns: 78px auto;
  align-items: center;
  gap: 16px;
  min-width: 270px;
}

.brand-mark {
  position: relative;
  width: 72px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: #111820;
  clip-path: polygon(0 12%, 72% 12%, 72% 0, 100% 50%, 72% 100%, 72% 88%, 0 88%);
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: -7px 8px 7px -8px;
  border-left: 6px solid var(--teal);
  border-top: 6px solid var(--teal);
  z-index: -1;
}

.brand-mark::after {
  inset: 7px -9px -7px 9px;
  border: 0;
  border-right: 6px solid var(--teal);
  border-bottom: 6px solid var(--teal);
}

.brand-name {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.brand-name strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.brand-name span {
  display: block;
  color: var(--teal-2);
  font-style: italic;
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 24px);
  font-size: 13px;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .assessment-portal-link {
  padding-inline: 18px;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  border: 1px solid rgba(24, 200, 189, 0.75);
  border-radius: var(--radius);
  background: rgba(6, 23, 34, 0.72);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle svg {
  margin: auto;
}

.nav-icon-open,
.nav-icon-close {
  display: grid;
  place-items: center;
}

.nav-icon-close {
  display: none;
}

body.nav-open .nav-icon-open {
  display: none;
}

body.nav-open .nav-icon-close {
  display: grid;
}

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--teal);
  border-radius: 5px;
  padding: 0 22px;
  background: linear-gradient(135deg, #2dd6ca, #18aaa3);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(24, 200, 189, 0.18);
  cursor: pointer;
}

.button.secondary {
  background: rgba(6, 23, 34, 0.46);
  color: var(--white);
  box-shadow: none;
}

.button.ghost {
  background: transparent;
  color: var(--teal);
  box-shadow: none;
}

.button svg {
  width: 18px;
  height: 18px;
}

.hero-section {
  position: relative;
  min-height: 435px;
  padding: 122px 0 54px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(28, 178, 188, 0.28), transparent 34%),
    linear-gradient(90deg, #020911 0%, #061722 48%, #0a2532 100%);
}

.hero-section.compact {
  min-height: 390px;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  overflow: hidden;
  opacity: 0.9;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 15, 24, 0.9), rgba(6, 15, 24, 0.22));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.96) 0%, rgba(2, 8, 13, 0.82) 34%, rgba(2, 8, 13, 0.28) 76%, rgba(2, 8, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.18), rgba(2, 8, 13, 0.12));
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -36%;
  width: 38%;
  height: 108%;
  background: linear-gradient(135deg, rgba(28, 205, 194, 0.42), rgba(29, 208, 199, 0.9));
  transform: skewX(-24deg);
  z-index: 2;
}

.hero-layout {
  position: relative;
  z-index: 4;
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--teal-2);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.hero-title {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--teal-2);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
}

.hero-rule {
  width: 62px;
  height: 3px;
  margin: 20px 0 18px;
  background: var(--teal);
}

.hero-copy {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.55vw, 20px);
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.proof-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: linear-gradient(90deg, #04111b, #0b2531);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.proof-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.proof-item + .proof-item {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.section {
  padding: 44px 0;
}

.section.dark {
  background: linear-gradient(90deg, #04111b, #082534);
  color: var(--white);
}

.section.tight {
  padding: 28px 0;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.1;
}

.section-head p {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.services {
  grid-template-columns: repeat(4, 1fr);
}

.grid.services.compact {
  grid-template-columns: repeat(5, 1fr);
}

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

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

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(8, 24, 34, 0.04);
}

.assessment-intro {
  max-width: 850px;
  margin: -8px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.assessment-type-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
}

.assessment-type-card h3 {
  margin: 0;
  font-size: 20px;
}

.assessment-type-card p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.factsheet-link {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.factsheet-link:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  background: rgba(46, 196, 182, 0.12);
}

.factsheet-link > span {
  display: flex;
  gap: 10px;
  align-items: center;
}

.factsheet-link .icon {
  color: var(--teal);
}

.factsheet-link small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.7);
}

.factsheet-link > .icon {
  grid-column: 2;
  grid-row: 1 / span 2;
}

body.factsheet-open { overflow: hidden; }

.factsheet-viewer {
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 32px 100px rgba(2, 14, 20, .55);
}

.factsheet-viewer::backdrop { background: rgba(2, 14, 20, .82); backdrop-filter: blur(8px); }
.factsheet-viewer__sheet { min-height: 100%; background: var(--white); }
.factsheet-viewer__header { min-height: 88px; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid rgba(6, 19, 27, .12); background: #06131b; }
.factsheet-viewer__header .brand-logo { width: min(260px, 55vw); filter: none; }
.factsheet-viewer__close { min-height: 44px; padding: 0 16px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: transparent; color: white; font: inherit; font-weight: 700; cursor: pointer; }
.factsheet-viewer__close:hover { background: rgba(46,196,182,.16); border-color: var(--teal); }
.factsheet-viewer__close .icon { width: 18px; height: 18px; }
.factsheet-viewer__hero { padding: clamp(32px, 5vw, 64px); background: linear-gradient(120deg, #edf8f7, #fff 70%); border-bottom: 5px solid var(--teal); }
.factsheet-viewer__hero h2 { max-width: 900px; margin: 8px 0 18px; font-size: clamp(36px, 5vw, 64px); line-height: .98; letter-spacing: -.04em; }
.factsheet-viewer__hero > p:not(.eyebrow) { max-width: 850px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.7; }
.factsheet-viewer__hero dl { margin: 30px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.factsheet-viewer__hero dl > div { padding: 18px; border-left: 4px solid var(--teal); background: white; box-shadow: 0 10px 28px rgba(6,19,27,.07); }
.factsheet-viewer__hero dt { margin-bottom: 5px; color: var(--teal-dark); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.factsheet-viewer__hero dd { margin: 0; font-weight: 700; line-height: 1.5; }
.factsheet-viewer__body { padding: clamp(32px, 5vw, 64px); display: grid; gap: 54px; }
.factsheet-viewer__body h3 { margin: 6px 0 14px; font-size: clamp(24px, 3vw, 34px); line-height: 1.1; }
.factsheet-viewer__body p, .factsheet-viewer__body li { color: var(--muted); line-height: 1.7; }
.factsheet-viewer__overview, .factsheet-viewer__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.factsheet-viewer__overview > div, .factsheet-viewer__columns > div { padding: 28px; border: 1px solid rgba(6,19,27,.12); border-radius: 16px; }
.factsheet-viewer__components { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.factsheet-viewer__components article { padding: 22px; border-top: 5px solid var(--teal); background: #f3f7f8; }
.factsheet-viewer__components span { display: inline-block; margin-bottom: 18px; color: var(--teal-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.factsheet-viewer__components h4 { margin: 0 0 10px; font-size: 18px; }
.factsheet-viewer__components p { margin: 0; font-size: 14px; }
.factsheet-viewer__columns ul { margin: 0; padding-left: 20px; }
.factsheet-viewer__columns li + li { margin-top: 8px; }
.factsheet-viewer__result { padding: 32px; border-radius: 16px; background: #06131b; color: white; }
.factsheet-viewer__result h3 { color: white; }
.factsheet-viewer__result p:not(.eyebrow) { color: rgba(255,255,255,.75); }
.factsheet-viewer__responsible { padding: 22px 26px; border-left: 5px solid var(--teal); background: #edf8f7; }
.factsheet-viewer__responsible p { margin: 8px 0 0; }
.factsheet-viewer__footer { padding: 24px clamp(32px, 5vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(6,19,27,.12); background: #f3f7f8; }
.factsheet-viewer__footer p { margin: 0; font-weight: 800; }

@media (max-width: 760px) {
  .factsheet-viewer { width: 100vw; max-height: 100vh; border-radius: 0; }
  .factsheet-viewer__header { padding: 14px 18px; }
  .factsheet-viewer__close span { display: none; }
  .factsheet-viewer__hero dl,
  .factsheet-viewer__overview,
  .factsheet-viewer__columns,
  .factsheet-viewer__components { grid-template-columns: 1fr; }
  .factsheet-viewer__footer { align-items: stretch; flex-direction: column; }
  .factsheet-viewer__footer .button { justify-content: center; }
}

@media (max-width: 900px) {
  .factsheet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .assessment-type-grid, .factsheet-grid { grid-template-columns: 1fr; }
}

.service-card {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: start;
  min-height: 145px;
  padding: 20px 16px 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 200, 189, 0.55);
  box-shadow: 0 18px 36px rgba(8, 24, 34, 0.1);
}

.icon-tile {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: radial-gradient(circle at 50% 35%, #0f3340, #020911 76%);
  border: 1px solid rgba(24, 200, 189, 0.22);
  color: var(--teal);
}

.icon-tile .icon {
  width: 34px;
  height: 34px;
}

.service-card h3,
.model-card h3,
.industry-card h3,
.case-card h3,
.insight-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.service-card p,
.model-card p,
.industry-card p,
.case-card p,
.insight-card p,
.testimonial-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.service-card > span:nth-child(2) {
  min-width: 0;
}

.grid.services.compact .service-card {
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  min-height: 88px;
  align-items: center;
  padding: 14px;
}

.grid.services.compact .icon-tile {
  width: 56px;
  height: 56px;
}

.grid.services.compact .icon-tile .icon {
  width: 30px;
  height: 30px;
}

.grid.services.compact .service-card h3 {
  font-size: 15px;
}

.grid.services.compact .service-card p {
  display: none;
}

.card-arrow {
  align-self: center;
  color: var(--teal-deep);
}

.banner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 86px;
  padding: 22px 32px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #06202c, #074a4e);
  color: var(--white);
}

.banner::after {
  content: "";
  position: absolute;
  right: -70px;
  inset-block: 0;
  width: 190px;
  background: rgba(24, 200, 189, 0.2);
  transform: skewX(-28deg);
}

.banner h2,
.banner h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 31px);
}

.banner p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.founder-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #061722 0%, #0a2a36 100%);
  color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  align-items: stretch;
  gap: 34px;
}

.founder-photo {
  min-height: 210px;
  overflow: hidden;
  position: relative;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-photo::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -20px;
  width: 90px;
  height: 190px;
  background: rgba(24, 200, 189, 0.62);
  transform: skewX(-30deg);
}

.founder-copy,
.founder-stats {
  padding: 28px 0;
}

.founder-copy h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.founder-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 25px;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.model-card {
  min-height: 148px;
  padding: 22px 18px;
}

.model-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: start;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -22px;
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.step-number {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.process-step h3 {
  margin: 2px 0 4px;
  font-size: 19px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.panel {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
}

.dark-panel {
  border-color: rgba(24, 200, 189, 0.32);
  background: linear-gradient(135deg, #061722, #082b38);
  color: var(--white);
}

.dark-panel p,
.dark-panel li {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
}

.feature-list .icon {
  width: 20px;
  height: 20px;
}

.challenge-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.challenge {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 120px;
  padding: 18px;
  border-left: 1px solid var(--line);
}

.challenge p {
  margin: 0;
  font-size: 12px;
}

.dark-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 0.9fr;
  gap: 28px;
}

.dark-column + .dark-column {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 28px;
}

.dark-column h3 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.case-note {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(24, 200, 189, 0.36);
  border-radius: var(--radius);
  background: rgba(24, 200, 189, 0.07);
}

.outputs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: start;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sample-output {
  min-height: 100px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.sample-output strong {
  display: block;
  font-size: 11px;
  margin-bottom: 12px;
}

.donut {
  width: 70px;
  height: 70px;
  margin-inline: auto;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0 72%, #b6dd65 72% 100%);
  display: grid;
  place-items: center;
}

.donut span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  font-weight: 900;
  color: var(--navy);
}

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

.heatmap i {
  display: block;
  aspect-ratio: 1;
  background: var(--teal);
  opacity: calc(0.25 + (var(--i) * 0.08));
}

.bars {
  display: grid;
  gap: 7px;
}

.bars i {
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--teal), #4da7c8);
  width: var(--w);
}

.industry-card {
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 122px;
  object-fit: cover;
}

.industry-card .industry-content {
  padding: 18px;
}

.industry-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #061722;
  color: var(--teal);
}

.region-band {
  background: linear-gradient(90deg, #061722, #092936);
  color: var(--white);
  overflow: hidden;
}

.region-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.region-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 0;
}

.region-item + .region-item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 28px;
}

.dot-map {
  justify-self: end;
  width: 190px;
  height: 96px;
  opacity: 0.95;
  background-image: radial-gradient(circle, var(--teal) 1.2px, transparent 1.4px);
  background-size: 8px 8px;
  clip-path: polygon(12% 28%, 32% 12%, 58% 22%, 72% 46%, 94% 42%, 100% 72%, 78% 88%, 56% 74%, 40% 92%, 20% 76%, 0 60%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: 22px;
  align-items: stretch;
}

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

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

.form-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.form-field input,
.form-field textarea,
.form-field select,
.newsletter input,
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  padding: 12px;
  color: var(--ink);
}

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

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-method {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.contact-method .icon-wrap {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.contact-method strong {
  display: block;
}

.map-card img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  margin: 16px 0;
}

.faq-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.faq-item {
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--white);
}

.faq-item:last-child {
  border-right: 1px solid var(--line);
}

.faq-item summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}

.filter-bar {
  background: #06131d;
  color: var(--white);
}

.filter-inner {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(210px, 300px);
  gap: 20px;
  align-items: center;
  padding: 14px 0;
}

.filter-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-button {
  min-height: 32px;
  padding: 0 18px;
  border: 1px solid rgba(24, 200, 189, 0.55);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.filter-button.is-active {
  background: linear-gradient(135deg, #2bd4ca, #179f9a);
}

.search-box {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
}

.search-box input {
  border: 0;
  background: transparent;
  color: var(--white);
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.featured-article {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.featured-article img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.featured-copy {
  padding: 24px 28px 24px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.insight-card {
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.insight-card .content {
  padding: 14px;
}

.insight-card time {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.newsletter {
  background: linear-gradient(90deg, #072630, #0b4d4f);
  color: var(--white);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: auto 1fr minmax(360px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: 26px 0;
}

.newsletter .icon {
  width: 64px;
  height: 64px;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

.newsletter input {
  border-color: rgba(24, 200, 189, 0.6);
  background: rgba(6, 23, 34, 0.7);
  color: var(--white);
}

.newsletter-status {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.case-card {
  overflow: hidden;
}

.case-head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(90deg, #061722, #082b38);
  color: var(--white);
}

.case-head p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.case-number {
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.case-body {
  display: grid;
  gap: 0;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.case-row strong {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 17px;
}

.case-row p {
  margin: 0;
}

.results-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, #24cfc5, #159d99);
  color: var(--white);
}

.results-row span {
  padding: 12px;
  text-align: center;
  font-size: 12px;
}

.results-row strong {
  display: block;
  font-size: 24px;
}

.testimonial-card {
  min-height: 176px;
  padding: 22px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 16px;
  align-items: center;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track .testimonial-card {
  scroll-snap-align: start;
}

.slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bd4ca, #179f9a);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(24, 200, 189, 0.18);
}

.slider-button.previous .icon {
  transform: rotate(180deg);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.testimonial-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c6cfd4;
}

.testimonial-dots .is-active {
  background: var(--teal);
}

.testimonial-card .quote {
  color: var(--teal);
  font-size: 38px;
  line-height: 0.8;
  font-weight: 900;
}

.person {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #213140;
  color: var(--white);
}

.impact-band {
  background: linear-gradient(90deg, #061722, #082936);
  color: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
}

.impact-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 22px;
}

.impact-metric strong {
  display: block;
  color: var(--teal);
  font-size: 32px;
  line-height: 1;
}

.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 16px;
  height: 1px;
  background: #aebbc2;
}

.journey-item {
  position: relative;
  padding-top: 38px;
  text-align: center;
}

.journey-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}

.journey-item strong {
  display: block;
  color: var(--teal);
  font-size: 20px;
}

.journey-item span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

.journey-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  background: #06111b;
  color: var(--white);
}

.footer-cta {
  background: linear-gradient(90deg, #08343d, #061722);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  max-width: 330px;
}

.footer-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 22px;
  min-height: 58px;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 50%;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.footer-bottom-inner {
  min-height: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  align-items: center;
}

.footer-bottom .admin-sign-in {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(24, 200, 189, 0.7);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
}

.footer-bottom .admin-sign-in .icon {
  width: 16px;
  height: 16px;
  color: var(--teal-2);
}

.footer-bottom .admin-sign-in:hover {
  border-color: var(--teal-2);
  color: var(--teal-2);
}

.status-message {
  margin-top: 12px;
  color: var(--teal-deep);
  font-weight: 700;
}

.hidden {
  display: none !important;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: rgba(4, 13, 20, 0.98);
    font-size: 22px;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 45;
  }

  .header-actions .button {
    display: none;
  }

  .brand {
    min-width: 0;
  }
}

@media (max-width: 1180px) {
  .grid.services,
  .grid.services.compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .container,
  .header-inner,
  .proof-inner,
  .filter-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero-section {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-media {
    inset: 0;
    opacity: 0.55;
  }

  .hero-section::before {
    background: linear-gradient(90deg, rgba(2, 8, 13, 0.95), rgba(2, 8, 13, 0.72));
  }

  .hero-section::after {
    width: 55%;
    opacity: 0.7;
  }

  .proof-inner,
  .grid.services,
  .grid.services.compact,
  .grid.four,
  .grid.three,
  .contact-info-grid,
  .impact-grid,
  .region-grid,
  .dark-columns,
  .sample-grid,
  .challenge-row,
  .journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item + .proof-item,
  .region-item + .region-item,
  .dark-column + .dark-column {
    border-left: 0;
    padding-left: 0;
  }

  .split-panel,
  .outputs-grid,
  .contact-layout,
  .founder-grid,
  .featured-article,
  .newsletter-inner,
  .filter-inner,
  .footer-main,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    gap: 0;
  }

  .founder-photo {
    max-width: 380px;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

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

  .footer-contact {
    border-left: 0;
    padding-left: 0;
  }
}

/* 2026 editorial refinement */
.main-nav {
  gap: clamp(18px, 1.35vw, 28px);
  font-size: 14px;
}

.header-actions .button {
  white-space: nowrap;
}

.hero-media img {
  object-position: center center;
}

.hero-title-row {
  grid-template-columns: clamp(270px, 20vw, 320px) minmax(0, 900px);
  gap: clamp(18px, 2vw, 32px);
}

.hero-arrow-mark {
  width: clamp(270px, 20vw, 320px);
  transform: translateY(34px);
}

.hero-arrow-mark img {
  image-rendering: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
}

.hero-title-copy .hero-title {
  max-width: 900px;
  text-wrap: balance;
}

.hero-title-copy .hero-copy {
  max-width: 760px;
}

body[data-page^="article-"] .hero-title,
body[data-page^="why-how-"] .hero-title {
  font-size: clamp(38px, 3.75vw, 58px);
  line-height: 1.06;
}

body[data-page^="article-"] .hero-copy,
body[data-page^="why-how-"] .hero-copy {
  max-width: 800px;
  font-size: clamp(17px, 1.3vw, 20px);
}

.grid.services {
  align-items: stretch;
}

.service-card {
  height: 100%;
}

.service-card-main {
  height: 100%;
}

.service-outcomes {
  align-items: stretch;
}

.service-outcomes > div {
  height: 100%;
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr;
}

.editorial-explore {
  background: #ffffff;
  border-block: 1px solid rgba(13, 13, 13, 0.08);
}

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

.editorial-link-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 24, 34, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 196, 182, 0.58);
  box-shadow: 0 22px 44px rgba(8, 24, 34, 0.13);
}

.editorial-link-card:focus-visible {
  outline: 3px solid rgba(46, 196, 182, 0.7);
  outline-offset: 3px;
}

.editorial-link-card > img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.editorial-link-content {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
}

.editorial-link-content .eyebrow {
  margin: 0;
}

.editorial-link-content > strong {
  color: var(--navy);
  font-family: Montserrat, Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.2;
}

.editorial-link-content > span:not(.eyebrow):not(.editorial-link-action) {
  color: var(--muted);
  line-height: 1.5;
}

.editorial-link-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal-deep);
  font-family: Montserrat, Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-link-action .icon {
  width: 20px;
  height: 20px;
}

.footer-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-inner {
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--teal-2);
}

.footer-contact a {
  transition: color 160ms ease;
}

@media (max-width: 980px) {
  .editorial-link-grid {
    grid-template-columns: 1fr;
  }

  .editorial-link-card {
    grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
    grid-template-rows: 1fr;
  }

  .editorial-link-card > img {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-arrow-mark {
    transform: translateY(20px);
  }
}

@media (max-width: 640px) {
  .hero-arrow-mark {
    width: min(180px, 54vw);
    transform: none;
  }

  .editorial-link-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .editorial-link-card > img {
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .editorial-link-content {
    padding: 18px;
  }

  .footer-nav-inner {
    justify-content: flex-start;
    padding-block: 18px;
  }
}

/* 3E Culture Map */
.culture-framework-page .framework-detail-summary { padding-bottom:clamp(30px,3.5vw,48px); background:linear-gradient(180deg,var(--paper),var(--white)); }
.culture-detail-hero .hero-media img { object-position:center 52%; }
.culture-summary .framework-detail-summary__grid { align-items:center; }
.culture-metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.culture-metric-grid article { min-height:140px; padding:24px; display:grid; align-content:center; gap:8px; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:19px; background:var(--white); box-shadow:0 14px 36px rgba(6,19,27,.07); }
.culture-metric-grid strong { color:var(--navy); font-size:41px; line-height:1; }
.culture-metric-grid span { color:var(--muted); font-size:14px; font-weight:750; line-height:1.4; }
.culture-model-section { padding:clamp(30px,3.5vw,48px) 0 clamp(72px,8vw,108px); background:linear-gradient(180deg,var(--white),var(--paper)); }
.culture-section-head { max-width:930px; margin-bottom:40px; }
.culture-section-head h2 { margin:8px 0 16px; color:var(--navy); font-size:clamp(38px,4.5vw,60px); line-height:1.04; }
.culture-section-head > p:last-child { color:var(--muted); font-size:17px; line-height:1.7; }
.culture-framework-visual { max-width:1180px; margin:0 auto 44px; padding:clamp(9px,1.4vw,17px); overflow:hidden; border:1px solid rgba(21,154,145,.24); border-radius:30px; background:var(--white); box-shadow:0 26px 68px rgba(6,19,27,.14); }
.culture-framework-visual__viewport { overflow:auto; border-radius:20px; background:var(--white); scrollbar-color:var(--teal-deep) rgba(6,19,27,.08); scrollbar-width:thin; -webkit-overflow-scrolling:touch; }
.culture-framework-visual__viewport:focus-visible { outline:3px solid var(--teal); outline-offset:4px; }
.culture-framework-visual img { display:block; width:100%; max-width:none; height:auto; border-radius:18px; }
.culture-framework-visual figcaption { padding:15px 9px 1px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:var(--muted); font-size:13px; }
.culture-framework-visual figcaption span { color:var(--navy); font-weight:800; }
.culture-framework-visual figcaption a { color:var(--navy-3); font-weight:850; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:3px; }
.culture-pillar-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:15px; }
.culture-pillar-grid > article { min-width:0; padding:27px; display:flex; flex-direction:column; border:1px solid rgba(6,19,27,.12); border-radius:21px; background:var(--white); box-shadow:0 15px 36px rgba(6,19,27,.07); }
.culture-pillar-grid > article > header { display:flex; align-items:center; gap:14px; }
.culture-pillar-grid > article > header > span { display:grid; flex:0 0 48px; width:48px; height:48px; place-items:center; border-radius:50%; color:var(--navy); background:var(--teal); font-size:12px; font-weight:900; }
.culture-pillar-grid header p { margin:0; color:var(--teal-deep); font-size:11px; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.culture-pillar-grid h3 { margin:3px 0 0; color:var(--navy); font-size:28px; line-height:1.1; }
.culture-pillar-grid > article > strong { margin:23px 0 10px; color:var(--navy); font-size:16px; line-height:1.4; }
.culture-pillar-grid > article > p { margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.culture-pillar-grid ul { margin:21px 0; padding:0; display:grid; gap:8px; list-style:none; }
.culture-pillar-grid li { padding:12px 13px; border-radius:11px; color:var(--navy); background:var(--paper); font-size:13px; font-weight:800; }
.culture-pillar-signal { margin-top:auto; padding:16px; display:grid; gap:6px; border-left:4px solid var(--teal); border-radius:0 12px 12px 0; background:rgba(46,196,182,.1); }
.culture-pillar-signal b { color:var(--navy); font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.culture-pillar-signal span { color:var(--muted); font-size:12px; line-height:1.52; }
.culture-balance-callout { margin-top:18px; padding:25px 29px; display:grid; grid-template-columns:auto 1fr; align-items:center; gap:26px; border-radius:18px; color:var(--white); background:var(--navy); }
.culture-balance-callout strong { color:var(--teal); font-size:19px; }
.culture-balance-callout span { color:rgba(255,255,255,.74); line-height:1.62; }
.culture-diagnostic-section .section-head,.culture-assessment-section .section-head,.culture-maturity-section .section-head,.culture-journey-section .section-head { max-width:940px; }
.culture-diagnostic-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; }
.culture-diagnostic-grid article { min-width:0; padding:25px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.065); }
.culture-diagnostic-grid span { color:var(--teal); font-size:13px; font-weight:900; }
.culture-diagnostic-grid h3 { margin:15px 0 10px; color:var(--white); font-size:21px; }
.culture-diagnostic-grid p { margin:0; color:rgba(255,255,255,.7); font-size:14px; line-height:1.58; }
.culture-output-grid { margin-top:14px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.culture-output-grid article { min-width:0; padding:19px; display:grid; gap:7px; border-radius:14px; background:rgba(46,196,182,.1); }
.culture-output-grid strong { color:var(--teal); font-size:14px; }
.culture-output-grid span { color:rgba(255,255,255,.68); font-size:12px; line-height:1.5; }
.culture-assessment-section { background:linear-gradient(180deg,var(--paper),var(--white)); }
.culture-assessment-feature { margin-bottom:16px; padding:clamp(28px,4vw,45px); display:grid; grid-template-columns:minmax(0,1.4fr) minmax(250px,.6fr); gap:36px; align-items:center; border-radius:23px; color:var(--white); background:radial-gradient(circle at 100% 0,rgba(46,196,182,.22),transparent 38%),linear-gradient(145deg,var(--navy),var(--navy-3)); }
.culture-assessment-feature h3 { margin:7px 0 13px; color:var(--white); font-size:clamp(31px,3.5vw,45px); }
.culture-assessment-feature > div:first-child > p:not(.eyebrow) { max-width:760px; color:rgba(255,255,255,.74); line-height:1.65; }
.culture-assessment-feature .button { margin-top:12px; }
.culture-assessment-feature__result { padding:25px; display:grid; gap:6px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.07); }
.culture-assessment-feature__result strong { color:var(--teal); font-size:52px; line-height:1; }
.culture-assessment-feature__result span { color:var(--white); font-size:16px; font-weight:850; }
.culture-assessment-feature__result p { margin:9px 0 0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.55; }
.culture-assessment-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:13px; }
.culture-assessment-grid article { min-width:0; padding:25px; display:flex; flex-direction:column; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:18px; background:var(--white); box-shadow:0 13px 32px rgba(6,19,27,.06); }
.culture-assessment-grid article > span { color:var(--teal-deep); font-size:12px; font-weight:900; letter-spacing:.07em; text-transform:uppercase; }
.culture-assessment-grid h3 { margin:13px 0 9px; color:var(--navy); font-size:20px; line-height:1.25; }
.culture-assessment-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.6; }
.culture-assessment-grid small { margin:17px 0 15px; color:var(--navy-3); font-size:12px; font-weight:800; line-height:1.45; }
.culture-assessment-grid a { margin-top:auto; color:var(--navy); font-size:13px; font-weight:900; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:4px; }
.culture-assessment-boundary { margin-top:17px; padding:23px 27px; display:grid; grid-template-columns:auto 1fr; align-items:center; gap:24px; border-left:5px solid var(--teal); border-radius:0 16px 16px 0; background:var(--navy); }
.culture-assessment-boundary strong { color:var(--teal); font-size:17px; }
.culture-assessment-boundary span { color:rgba(255,255,255,.74); line-height:1.58; }
.culture-maturity-section { background:var(--white); }
.culture-maturity-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; }
.culture-maturity-grid article { min-width:0; padding:25px; border:1px solid rgba(6,19,27,.11); border-radius:18px; background:var(--paper); }
.culture-maturity-grid article:nth-child(4) { color:var(--white); background:var(--navy-3); }
.culture-maturity-grid article > span { color:var(--teal-deep); font-size:12px; font-weight:900; }
.culture-maturity-grid h3 { margin:16px 0 10px; color:var(--navy); font-size:23px; }
.culture-maturity-grid p { min-height:90px; margin:0 0 18px; color:var(--muted); font-size:14px; line-height:1.58; }
.culture-maturity-grid strong { color:var(--teal-deep); font-size:13px; text-transform:uppercase; letter-spacing:.05em; }
.culture-maturity-grid article:nth-child(4) h3 { color:var(--white); }
.culture-maturity-grid article:nth-child(4) p { color:rgba(255,255,255,.72); }
.culture-maturity-grid article:nth-child(4) strong,.culture-maturity-grid article:nth-child(4) > span { color:var(--teal); }
.culture-journey-grid { margin:0; padding:0; display:grid; grid-template-columns:repeat(6,minmax(0,1fr)); gap:10px; list-style:none; }
.culture-journey-grid li { min-width:0; padding:20px; border:1px solid rgba(255,255,255,.14); border-radius:16px; background:rgba(255,255,255,.06); }
.culture-journey-grid li > span { display:grid; width:36px; height:36px; place-items:center; margin-bottom:20px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:11px; font-weight:900; }
.culture-journey-grid h3 { margin:0 0 9px; color:var(--white); font-size:19px; }
.culture-journey-grid p { margin:0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.55; }
.culture-application-grid { margin-top:14px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.culture-application-grid article { min-width:0; padding:19px; display:grid; gap:6px; border-radius:14px; background:rgba(46,196,182,.1); }
.culture-application-grid strong { color:var(--teal); font-size:14px; }
.culture-application-grid span { color:rgba(255,255,255,.68); font-size:12px; line-height:1.5; }
.culture-governance-section { background:linear-gradient(180deg,var(--paper),var(--white)); }
.culture-governance-grid { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(380px,.85fr); gap:48px; align-items:start; }
.culture-governance-grid h2 { margin:8px 0 18px; color:var(--navy); font-size:clamp(37px,4.3vw,56px); line-height:1.05; }
.culture-governance-grid > div:first-child > p:not(.eyebrow) { color:var(--muted); line-height:1.7; }
.culture-governance-principles { display:grid; gap:10px; }
.culture-governance-principles article { padding:20px; display:grid; gap:7px; border:1px solid rgba(6,19,27,.1); border-left:5px solid var(--teal); border-radius:0 15px 15px 0; background:var(--white); }
.culture-governance-principles strong { color:var(--navy); }
.culture-governance-principles span { color:var(--muted); font-size:13px; line-height:1.5; }
.culture-faq-grid { margin-top:35px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; }
.culture-faq-grid details { min-width:0; padding:21px 23px; border:1px solid rgba(6,19,27,.12); border-radius:15px; background:var(--white); }
.culture-faq-grid summary { cursor:pointer; color:var(--navy); font-size:16px; font-weight:850; }
.culture-faq-grid details[open] { border-color:var(--teal); box-shadow:0 13px 30px rgba(6,19,27,.07); }
.culture-faq-grid p { margin:15px 0 0; color:var(--muted); font-size:14px; line-height:1.62; }
@media(max-width:1100px){.culture-pillar-grid{grid-template-columns:1fr}.culture-diagnostic-grid,.culture-maturity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.culture-journey-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.culture-governance-grid{grid-template-columns:1fr}.culture-pillar-grid > article{display:grid;grid-template-columns:1fr}.culture-maturity-grid p{min-height:0}}
@media(max-width:850px){.culture-assessment-feature{grid-template-columns:1fr}.culture-assessment-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.culture-output-grid,.culture-application-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.culture-framework-visual{margin-right:-12px;margin-left:-12px;padding:8px;border-radius:22px}.culture-framework-visual__viewport{border-radius:15px}.culture-framework-visual img{width:900px;border-radius:14px}.culture-framework-visual figcaption{padding:14px 7px 4px;align-items:flex-start;flex-direction:column;gap:6px}.culture-framework-visual figcaption::before{content:"Swipe to explore the full framework";color:var(--navy);font-size:12px;font-weight:850}.culture-assessment-grid,.culture-diagnostic-grid,.culture-maturity-grid,.culture-journey-grid,.culture-output-grid,.culture-application-grid,.culture-faq-grid{grid-template-columns:1fr}.culture-balance-callout,.culture-assessment-boundary{grid-template-columns:1fr;gap:8px}.culture-governance-grid{gap:32px}}
@media(max-width:620px){.culture-metric-grid{grid-template-columns:1fr}.culture-metric-grid article{min-height:116px}.culture-pillar-grid > article,.culture-assessment-feature,.culture-assessment-grid article{padding:23px 21px}}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent a {
  color: var(--teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-method a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(46, 196, 182, 0.55);
  text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .container,
  .header-inner,
  .proof-inner,
  .filter-inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    min-height: 80px;
  }

  .brand {
    grid-template-columns: 58px auto;
    gap: 10px;
  }

  .brand-mark {
    width: 56px;
    height: 34px;
    font-size: 19px;
  }

  .brand-name {
    padding-left: 10px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name span {
    font-size: 10px;
  }

  .hero-section {
    padding: 104px 0 42px;
  }

  .hero-title {
    font-size: clamp(37px, 12vw, 54px);
  }

  .hero-actions-row,
  .banner,
  .footer-cta-inner {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-inner,
  .grid.services,
  .grid.services.compact,
  .grid.two,
  .grid.three,
  .grid.four,
  .contact-info-grid,
  .impact-grid,
  .region-grid,
  .dark-columns,
  .sample-grid,
  .challenge-row,
  .journey,
  .form-grid,
  .faq-row,
  .stat-row,
  .results-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 58px 1fr auto;
  }

  .icon-tile {
    width: 58px;
    height: 58px;
  }

  .banner,
  .newsletter-form,
  .case-row,
  .footer-cta-inner {
    grid-template-columns: 1fr;
  }

  .journey::before {
    display: none;
  }

  .journey-item {
    text-align: left;
    padding-top: 0;
    padding-left: 30px;
  }

  .journey-item::before {
    left: 0;
    top: 6px;
    transform: none;
  }

  .footer-bottom-inner {
    gap: 12px;
    justify-content: flex-start;
  }
}

/* Premium rebuild refinements */
:root {
  --container: 1440px;
  --paper: #f6f8f9;
  --line: #d4dee3;
  --shadow: 0 26px 70px rgba(3, 16, 24, 0.14);
}

html {
  scroll-padding-top: 112px;
  overflow-x: clip;
}

body {
  font-size: 16px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p {
  font-size: 16px;
  line-height: 1.58;
}

.site-header {
  background: linear-gradient(180deg, rgba(2, 10, 16, 0.78), rgba(2, 10, 16, 0));
}

.header-inner {
  min-height: 104px;
  gap: 30px;
}

.brand {
  grid-template-columns: 82px auto;
  min-width: 305px;
}

.brand-mark {
  width: 78px;
  height: 48px;
  font-size: 28px;
}

.brand-name strong {
  font-size: 24px;
}

.brand-name span {
  font-size: 13px;
}

.main-nav {
  gap: clamp(14px, 1.2vw, 24px);
  font-size: 14px;
}

.button {
  min-height: 46px;
  padding-inline: 24px;
  font-size: 15px;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(24, 200, 189, 0.22);
}

.button.secondary:hover,
.button.ghost:hover {
  border-color: var(--teal-2);
  box-shadow: none;
}

.hero-section {
  min-height: 520px;
  padding: 138px 0 76px;
  background:
    radial-gradient(circle at 78% 22%, rgba(27, 203, 194, 0.18), transparent 34%),
    linear-gradient(90deg, #020911 0%, #061722 56%, #0a2532 100%);
}

.hero-media {
  inset: 0 0 0 38%;
}

.hero-media img {
  object-position: center center;
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.98) 0%, rgba(2, 8, 13, 0.9) 34%, rgba(2, 8, 13, 0.45) 72%, rgba(2, 8, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(2, 8, 13, 0.1), rgba(2, 8, 13, 0.2));
}

.hero-layout {
  max-width: 820px;
}

.hero-title {
  font-size: clamp(48px, 4.6vw, 78px);
  max-width: 820px;
}

.hero-copy {
  max-width: 690px;
  font-size: clamp(18px, 1.45vw, 22px);
}

.hero-subtitle {
  font-size: clamp(22px, 2vw, 31px);
}

.proof-item {
  min-height: 66px;
  font-size: 14px;
}

.section {
  padding: 58px 0;
}

.section.tight {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(31px, 2.7vw, 46px);
}

.section-head p {
  font-size: 17px;
}

.grid {
  gap: 20px;
}

.card {
  box-shadow: 0 14px 36px rgba(8, 24, 34, 0.055);
}

.card:focus-visible,
.button:focus-visible,
.main-nav a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid rgba(24, 200, 189, 0.65);
  outline-offset: 3px;
}

.service-card {
  min-height: 172px;
  padding: 24px 20px;
}

.service-card h3,
.model-card h3,
.industry-card h3,
.case-card h3,
.insight-card h3,
.testimonial-card h3 {
  font-size: 19px;
  line-height: 1.25;
}

.service-card p,
.model-card p,
.industry-card p,
.case-card p,
.insight-card p,
.testimonial-card p {
  font-size: 15px;
  line-height: 1.52;
}

.grid.services.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid.services.compact .service-card {
  min-height: 150px;
  align-items: start;
}

.grid.services.compact .service-card p {
  display: block;
  font-size: 13px;
}

.grid.services.compact .service-card h3 {
  font-size: 16px;
}

.service-details {
  background: #ffffff;
}

.service-detail-list {
  display: grid;
  gap: 18px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(360px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(24, 200, 189, 0.045), rgba(255, 255, 255, 0)),
    #ffffff;
  box-shadow: 0 12px 34px rgba(8, 24, 34, 0.045);
}

.service-detail-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.service-detail-heading h3 {
  margin: 2px 0 6px;
  font-size: 22px;
}

.service-detail-heading p {
  margin: 0;
  color: var(--muted);
}

.service-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-outcomes div {
  min-height: 84px;
  padding: 14px;
  border-left: 2px solid var(--teal);
  background: rgba(6, 23, 34, 0.035);
}

.service-outcomes strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
}

.service-outcomes span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.founder-grid {
  grid-template-columns: 310px 1.1fr 1fr;
}

.founder-photo {
  min-height: 250px;
}

.model-card {
  min-height: 168px;
}

.panel {
  padding: 32px;
}

.dark-columns {
  align-items: stretch;
}

.case-note p {
  font-size: 15px;
}

.industry-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.industry-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 200, 189, 0.55);
  box-shadow: var(--shadow);
}

.industry-card img {
  height: 156px;
}

.featured-article {
  grid-template-columns: 0.7fr 1fr;
}

.featured-article img {
  height: 260px;
}

.insight-card {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 200, 189, 0.55);
  box-shadow: var(--shadow);
}

.insight-card img {
  height: 150px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 32px;
  align-items: start;
}

.article-body {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(8, 24, 34, 0.06);
}

.article-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 22px 0;
}

.article-body .lead {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.5;
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.article-list li {
  font-size: 17px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.article-aside {
  position: sticky;
  top: 24px;
}

.related-insights {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.related-insights a {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.related-insights strong {
  color: var(--navy);
  line-height: 1.28;
}

.related-insights span {
  color: var(--muted);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.3fr);
  gap: 28px;
  align-items: start;
}

.legal-card section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.legal-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.footer-main {
  grid-template-columns: 1.45fr repeat(4, 1fr);
}

.footer-bottom-inner a:hover {
  color: var(--teal-2);
}

@media (max-width: 1360px) {
  .grid.services.compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .service-detail-card .button {
    width: fit-content;
  }
}

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

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-panel > .founder-photo {
    align-self: start;
    min-height: 0;
    aspect-ratio: 1.46;
    border: 1px solid var(--line);
    background: #eef3f5;
  }
}

@media (max-width: 980px) {
  .hero-section {
    min-height: 460px;
  }

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

  .service-outcomes,
  .article-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero-title {
    font-size: clamp(38px, 10.5vw, 52px);
  }

  .grid.services.compact,
  .service-outcomes {
    grid-template-columns: 1fr;
  }

  .service-detail-card,
  .article-body {
    padding: 22px;
  }

  .service-detail-heading {
    grid-template-columns: 58px 1fr;
  }

.article-body .lead {
  font-size: 18px;
}

.article-full-text {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.article-full-text p {
  margin: 0;
  color: #27343d;
  font-size: 17px;
  line-height: 1.72;
}

.article-full-text p:last-child {
  margin-bottom: 8px;
}
}

/* Final readability pass */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.24em;
}

.breadcrumb,
.article-meta,
.insight-card time,
.footer-bottom,
.form-field,
.consent,
.stat span,
.journey-item p,
.results-row span,
.sample-output strong {
  font-size: 14px;
}

.feature-list li,
.proof-item,
.footer-brand p,
.footer-contact span,
.filter-button,
.search-box input,
.contact-method p,
.region-item p {
  font-size: 15px;
}

.footer-contact p,
.contact-method p,
.region-item p,
.legal-card p {
  line-height: 1.52;
}

.footer-bottom-inner {
  min-height: 52px;
}

.footer-main {
  padding: 36px 0;
}

.footer-contact {
  min-height: 68px;
}

.form-field input,
.form-field textarea,
.form-field select,
.newsletter input,
.search-box input {
  min-height: 48px;
  font-size: 16px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus,
.newsletter input:focus,
.search-box input:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(24, 200, 189, 0.18);
}

.filter-button {
  min-height: 40px;
}

.sample-output {
  min-height: 118px;
}

@media (max-width: 640px) {
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .proof-item,
  .feature-list li,
  .footer-contact p,
  .contact-method p {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 82px;
    gap: 12px;
  }

  .brand {
    grid-template-columns: 58px auto;
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 56px;
    height: 34px;
    font-size: 19px;
  }

  .brand-name {
    padding-left: 10px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-name span {
    font-size: 10px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    min-height: auto;
    padding: 104px 0 42px;
  }

  .hero-title {
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions-row {
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .proof-inner,
  .grid.services,
  .grid.services.compact,
  .grid.two,
  .grid.three,
  .grid.four,
  .contact-info-grid,
  .impact-grid,
  .region-grid,
  .dark-columns,
  .sample-grid,
  .challenge-row,
  .journey,
  .form-grid,
  .faq-row,
  .stat-row,
  .results-row,
  .service-outcomes {
    grid-template-columns: 1fr;
  }

  .panel,
  .service-detail-card,
  .article-body {
    padding: 22px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-button {
    display: none;
  }

  .testimonial-track {
    grid-auto-columns: 86%;
  }
}

/* Public Team and Leadership frameworks */
.framework-intro {
  padding: clamp(64px, 8vw, 108px) 0;
  background: linear-gradient(180deg, #f7fafb 0%, #fff 100%);
}

.framework-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.framework-intro__copy,
.framework-model__header > div,
.leadership-domain,
.team-framework__practices article > div:last-child {
  min-width: 0;
}

.framework-intro__copy h2,
.framework-model__header h2 {
  margin: 8px 0 18px;
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

.framework-intro__copy > p:last-of-type,
.framework-model__header > div > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.framework-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.framework-intro__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(7, 26, 39, 0.18);
  background: var(--navy);
}

.framework-intro__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.framework-intro__visual figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 3px;
  padding: 17px 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  color: #fff;
  background: rgba(7, 28, 42, .82);
  backdrop-filter: blur(12px);
}

.framework-intro__visual figcaption strong { font-size: 16px; }
.framework-intro__visual figcaption span { color: rgba(255,255,255,.76); font-size: 13px; letter-spacing: .04em; }

.framework-model {
  scroll-margin-top: 24px;
  padding: clamp(76px, 9vw, 126px) 0;
}

.framework-model--team {
  background: #fff;
}

.framework-model--leadership {
  color: #fff;
  background:
    radial-gradient(circle at 94% 10%, rgba(27, 195, 185, .19), transparent 30%),
    linear-gradient(145deg, #061d2a 0%, #0a3044 56%, #0c3c50 100%);
}

.framework-model__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 52px;
  align-items: end;
  margin-bottom: 50px;
}

.framework-model__header aside {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 2px 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f6fafb;
}

.framework-model__header aside strong {
  color: var(--teal-dark);
  font-size: 36px;
  line-height: 1;
}

.framework-model__header aside span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.framework-model__header--light h2,
.framework-model__header--light > div > p:last-child { color: #fff; }
.framework-model__header--light > div > p:last-child { opacity: .8; }

.team-framework__flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 30px;
}

.team-framework__flow a {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 132px;
  padding: 18px 15px;
  border: 1px solid rgba(6, 42, 59, .12);
  border-radius: 16px;
  color: var(--navy);
  background: linear-gradient(180deg, #f7fbfb, #eef7f7);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.team-framework__flow a:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 14px 30px rgba(5, 43, 59, .1);
}

.team-framework__flow span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.team-framework__flow strong {
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.team-framework__practices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-framework__practices article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 31, 43, .055);
}

.team-framework__practices article:last-child { grid-column: 1 / -1; }

.team-framework__number {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #0d4a60);
  font-size: 17px;
  font-weight: 900;
}

.team-framework__practices h3,
.framework-toolkit h3,
.leadership-domain h3,
.leadership-domain h4 {
  margin: 4px 0 9px;
  overflow-wrap: anywhere;
}

.team-framework__practices h3 { color: var(--navy); font-size: 23px; }
.team-framework__practices p { margin: 0; color: var(--muted); line-height: 1.6; }

.framework-tool {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #08655f;
  background: rgba(24, 200, 189, .12);
  font-size: 12px;
  font-weight: 850;
}

.framework-toolkit {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 42px;
  margin-top: 46px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #071f2d, #0b4151);
}

.framework-toolkit h3 { color: #fff; font-size: 31px; }
.framework-toolkit > div:first-child > p:last-child { color: rgba(255,255,255,.74); line-height: 1.65; }
.framework-toolkit__cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.framework-toolkit__cards article { min-width: 0; padding: 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(255,255,255,.065); }
.framework-toolkit__cards span { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.framework-toolkit__cards h4 { margin: 7px 0; color: #fff; font-size: 17px; overflow-wrap: anywhere; }
.framework-toolkit__cards p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }

.leadership-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.leadership-values span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.07);
  font-size: 12px;
  font-weight: 800;
}

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

.leadership-domain {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
}

.leadership-domain > header {
  display: flex;
  gap: 14px;
  align-items: center;
}

.leadership-domain > header > span {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: #05212e;
  background: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.leadership-domain header p { margin: 0; color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.leadership-domain h3 { color: #fff; font-size: 29px; }
.leadership-domain > blockquote { margin: 22px 0 12px; padding-left: 14px; border-left: 2px solid var(--teal); color: #fff; font-size: 17px; font-weight: 750; line-height: 1.45; }
.leadership-domain > p { color: rgba(255,255,255,.7); line-height: 1.6; }
.leadership-domain__competencies { display: grid; gap: 10px; margin-top: 24px; }
.leadership-domain__competencies section { min-width: 0; padding: 17px; border-radius: 14px; background: rgba(1,15,23,.32); }
.leadership-domain__competencies span { color: var(--teal); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.leadership-domain__competencies h4 { color: #fff; font-size: 16px; line-height: 1.25; }
.leadership-domain__competencies p { margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.5; }

.leadership-framework__outcomes {
  margin-top: 34px;
  padding: 32px;
  border-radius: 20px;
  background: rgba(1, 16, 24, .42);
}

.leadership-framework__outcomes > div { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; }
.leadership-framework__outcomes span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--teal); font-size: 11px; font-weight: 900; }
.leadership-framework__outcomes p { margin: 0; color: #fff; font-weight: 750; line-height: 1.35; }

@media (max-width: 1080px) {
  .framework-intro__grid { grid-template-columns: 1fr; }
  .framework-intro__visual { max-width: 820px; }
  .team-framework__flow { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .leadership-framework__domains { grid-template-columns: 1fr; }
  .leadership-domain__competencies { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .framework-toolkit { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .framework-intro__visual figcaption { right: 12px; bottom: 12px; left: 12px; }
  .framework-model__header { grid-template-columns: 1fr; gap: 24px; }
  .team-framework__flow { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-framework__practices { grid-template-columns: 1fr; }
  .team-framework__practices article:last-child { grid-column: auto; }
  .framework-toolkit__cards,
  .leadership-domain__competencies { grid-template-columns: 1fr; }
  .leadership-values { justify-content: flex-start; }
  .leadership-framework__outcomes > div { grid-template-columns: auto 1fr; }
}

@media (max-width: 480px) {
  .framework-intro__actions .button { width: 100%; justify-content: center; }
  .team-framework__flow { grid-template-columns: 1fr; }
  .team-framework__flow a { min-height: 0; grid-template-columns: auto 1fr; align-items: center; }
  .team-framework__practices article { grid-template-columns: 1fr; padding: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Detailed Team and Leadership framework pages */
.framework-detail-hero .hero-title { max-width: 920px; }
.framework-detail-summary { padding: clamp(70px,8vw,110px) 0; background:linear-gradient(180deg,#f4f8f9,#fff); }
.team-framework-page .framework-detail-summary { padding-bottom:clamp(30px,3.5vw,48px); }
.team-framework-page .framework-model { padding-top:clamp(30px,3.5vw,48px); }
.framework-detail-summary__grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(480px,1.1fr); gap:70px; align-items:start; }
.framework-detail-summary h2 { margin:0 0 22px; color:var(--navy); font-size:clamp(38px,4.4vw,60px); line-height:1.03; }
.framework-detail-summary p { color:var(--muted); line-height:1.75; }
.framework-benefit-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.framework-benefit-grid article { min-height:150px; padding:25px; border:1px solid var(--line); border-top:5px solid var(--teal); border-radius:18px; background:#fff; box-shadow:0 14px 34px rgba(6,31,43,.06); }
.framework-benefit-grid strong { display:block; margin-bottom:10px; color:var(--navy); font-size:20px; }
.framework-benefit-grid span { color:var(--muted); font-size:14px; line-height:1.55; }
.team-framework-visual,.leadership-framework-visual { margin:5px 0 50px; padding:clamp(10px,1.8vw,22px); overflow:hidden; border:1px solid rgba(46,196,182,.25); border-radius:32px; color:#fff; background:radial-gradient(circle at 50% 35%,rgba(46,196,182,.12),transparent 44%),linear-gradient(145deg,#020914,#061722); box-shadow:0 28px 70px rgba(6,31,43,.2); }
.team-framework-visual__viewport,.leadership-framework-visual__viewport { overflow:auto; border-radius:22px; background:#020914; scrollbar-color:var(--teal) rgba(255,255,255,.08); scrollbar-width:thin; -webkit-overflow-scrolling:touch; }
.team-framework-visual__viewport:focus-visible,.leadership-framework-visual__viewport:focus-visible { outline:3px solid var(--teal); outline-offset:4px; }
.team-framework-visual img,.leadership-framework-visual img { display:block; width:100%; max-width:none; height:auto; border-radius:20px; }
.team-framework-visual figcaption,.leadership-framework-visual figcaption { padding:17px 10px 2px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:rgba(255,255,255,.68); font-size:13px; }
.team-framework-visual figcaption span,.leadership-framework-visual figcaption span { font-weight:700; letter-spacing:.025em; }
.team-framework-visual figcaption a,.leadership-framework-visual figcaption a { color:var(--teal); font-weight:850; text-decoration:none; }
.team-framework-visual figcaption a:hover,.leadership-framework-visual figcaption a:hover { color:#fff; text-decoration:underline; }
.framework-evidence { margin-top:34px; padding:clamp(28px,4vw,48px); display:grid; grid-template-columns:minmax(0,.7fr) minmax(0,1.3fr); gap:40px; border-radius:24px; background:#06131b; color:#fff; }
.framework-evidence h3 { margin:5px 0 12px; color:#fff; font-size:31px; }.framework-evidence > div:first-child > p:last-child { color:rgba(255,255,255,.68); line-height:1.6; }
.framework-evidence__grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }.framework-evidence__grid article { min-height:105px; padding:16px; display:grid; align-content:center; gap:7px; border:1px solid rgba(255,255,255,.14); border-radius:14px; background:rgba(255,255,255,.06); }.framework-evidence__grid strong { color:var(--teal); font-size:13px; }.framework-evidence__grid span { color:#fff; font-size:13px; line-height:1.35; }
.framework-delivery-journey { margin-top:34px; padding:clamp(28px,4vw,48px); border:1px solid rgba(255,255,255,.16); border-radius:24px; background:rgba(255,255,255,.055); }.framework-delivery-journey h3 { margin:4px 0 25px; color:#fff; font-size:31px; }.framework-delivery-journey ol { margin:0; padding:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; list-style:none; }.framework-delivery-journey li { min-height:190px; padding:20px; border-radius:16px; background:rgba(1,15,23,.34); }.framework-delivery-journey li > span { display:grid; width:36px; height:36px; place-items:center; margin-bottom:18px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:11px; font-weight:900; }.framework-delivery-journey strong { color:#fff; font-size:18px; }.framework-delivery-journey p { color:rgba(255,255,255,.66); font-size:13px; line-height:1.55; }
@media(max-width:1000px){.framework-detail-summary__grid,.framework-evidence{grid-template-columns:1fr}.framework-delivery-journey ol{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.team-framework-visual,.leadership-framework-visual{margin-right:-12px;margin-left:-12px;padding:8px;border-radius:22px}.team-framework-visual__viewport,.leadership-framework-visual__viewport{border-radius:15px}.team-framework-visual img,.leadership-framework-visual img{border-radius:14px}.team-framework-visual img{width:760px}.leadership-framework-visual img{width:900px}.team-framework-visual figcaption,.leadership-framework-visual figcaption{padding:14px 7px 4px;align-items:flex-start;flex-direction:column;gap:6px}.team-framework-visual figcaption::before,.leadership-framework-visual figcaption::before{content:"Swipe to explore the full framework";color:#fff;font-size:12px;font-weight:800}}
@media(max-width:620px){.framework-benefit-grid,.framework-evidence__grid,.framework-delivery-journey ol{grid-template-columns:1fr}.framework-detail-summary__grid{gap:38px}.framework-evidence,.framework-delivery-journey{padding:23px}}

/* OD Diagnostic Framework */
.od-framework-page .framework-detail-summary { padding-bottom:clamp(48px,5vw,72px); }
.od-diagnostic-summary .framework-detail-summary__grid { align-items:center; }
.od-metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.od-metric-grid article { min-height:150px; padding:26px; display:grid; align-content:center; gap:8px; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:20px; background:var(--white); box-shadow:0 15px 38px rgba(6,19,27,.07); }
.od-metric-grid strong { color:var(--navy); font-size:44px; line-height:1; }
.od-metric-grid span { color:var(--muted); font-size:14px; font-weight:700; line-height:1.45; }
.framework-model--od { padding-top:clamp(54px,6vw,82px); background:linear-gradient(180deg,var(--white),var(--paper)); }
.od-framework-visual { max-width:1050px; margin:0 auto 48px; padding:clamp(10px,1.5vw,18px); overflow:hidden; border:1px solid rgba(21,154,145,.24); border-radius:32px; background:var(--white); box-shadow:0 28px 70px rgba(6,19,27,.14); }
.od-framework-visual__viewport { overflow:auto; border-radius:22px; background:var(--white); scrollbar-color:var(--teal-deep) rgba(6,19,27,.08); scrollbar-width:thin; -webkit-overflow-scrolling:touch; }
.od-framework-visual__viewport:focus-visible { outline:3px solid var(--teal); outline-offset:4px; }
.od-framework-visual img { display:block; width:100%; max-width:none; height:auto; border-radius:20px; }
.od-framework-visual figcaption { padding:16px 10px 1px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:var(--muted); font-size:13px; }
.od-framework-visual figcaption span { color:var(--navy); font-weight:800; letter-spacing:.02em; }
.od-framework-visual figcaption a { color:var(--navy-3); font-weight:850; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:3px; }
.od-framework-visual figcaption a:hover { color:var(--navy); text-decoration:underline; }
.od-dimension-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.od-dimension-grid article { min-width:0; padding:28px; position:relative; overflow:hidden; border:1px solid rgba(6,19,27,.11); border-radius:20px; background:var(--white); box-shadow:0 12px 32px rgba(6,19,27,.055); }
.od-dimension-grid article::after { content:""; width:110px; height:110px; position:absolute; right:-42px; bottom:-52px; border-radius:50%; background:rgba(46,196,182,.09); }
.od-dimension-grid article > span { display:grid; width:42px; height:42px; place-items:center; margin-bottom:20px; border-radius:50%; color:var(--white); background:linear-gradient(145deg,var(--navy),var(--teal-deep)); font-size:12px; font-weight:900; }
.od-dimension-grid h3 { margin:0 0 12px; color:var(--navy); font-size:24px; }
.od-dimension-grid p { margin:8px 0 0; color:var(--muted); font-size:14px; line-height:1.62; }
.od-dimension-grid p strong { color:var(--navy-3); }
.od-journey-section .section-head { max-width:900px; }
.od-journey-grid { margin:42px 0 0; padding:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; list-style:none; }
.od-journey-grid li { min-height:235px; padding:26px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035)); }
.od-journey-grid li > span { display:grid; width:40px; height:40px; place-items:center; margin-bottom:24px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:11px; font-weight:900; }
.od-journey-grid h3 { margin:0 0 10px; color:var(--white); font-size:21px; }
.od-journey-grid p { margin:0; color:rgba(255,255,255,.68); font-size:14px; line-height:1.62; }
.od-principle-callout { margin-top:22px; padding:26px 30px; display:flex; align-items:center; justify-content:space-between; gap:28px; border-left:5px solid var(--teal); border-radius:0 18px 18px 0; background:rgba(46,196,182,.1); }
.od-principle-callout strong { color:var(--white); font-size:21px; }
.od-principle-callout span { max-width:720px; color:rgba(255,255,255,.76); line-height:1.55; }
.od-evidence-section { background:linear-gradient(180deg,var(--paper),var(--white)); }
.od-evidence-section .section-head,.od-application-section .section-head { max-width:900px; }
.od-evidence-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.od-evidence-grid article { min-height:240px; padding:25px; border:1px solid rgba(6,19,27,.12); border-radius:19px; background:var(--white); box-shadow:0 14px 34px rgba(6,19,27,.06); }
.od-evidence-grid article > span { color:var(--teal-deep); font-size:13px; font-weight:900; }
.od-evidence-grid h3 { margin:20px 0 10px; color:var(--navy); font-size:21px; }
.od-evidence-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.od-output-heading { margin:52px 0 20px; color:var(--navy); font-size:30px; }
.od-output-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.od-output-grid article { min-height:140px; padding:23px; display:grid; align-content:start; gap:9px; border-radius:16px; background:rgba(46,196,182,.1); }
.od-output-grid strong { color:var(--navy-3); font-size:16px; }
.od-output-grid span { color:var(--muted); font-size:13px; line-height:1.55; }
.od-application-section { background:var(--white); }
.od-application-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.od-application-grid article { min-height:170px; padding:27px; border:1px solid rgba(6,19,27,.11); border-left:5px solid var(--teal); border-radius:0 18px 18px 0; background:var(--paper); }
.od-application-grid h3 { margin:0 0 10px; color:var(--navy); font-size:20px; }
.od-application-grid p { margin:0; color:var(--muted); line-height:1.62; }
.od-principles { margin-top:30px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.od-principles article { padding:24px; display:grid; gap:8px; border-radius:16px; color:var(--white); background:linear-gradient(145deg,var(--navy),var(--navy-3)); }
.od-principles strong { color:var(--teal); font-size:18px; }
.od-principles span { color:rgba(255,255,255,.72); font-size:13px; line-height:1.55; }
.od-faq-section { background:var(--paper); }
.od-faq-section .section-head { max-width:800px; }
.od-faq-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.od-faq-grid details { min-width:0; padding:22px 24px; border:1px solid rgba(6,19,27,.12); border-radius:16px; background:var(--white); }
.od-faq-grid summary { cursor:pointer; color:var(--navy); font-size:17px; font-weight:850; }
.od-faq-grid details[open] { border-color:var(--teal); box-shadow:0 14px 32px rgba(6,19,27,.07); }
.od-faq-grid p { margin:16px 0 0; color:var(--muted); font-size:14px; line-height:1.65; }
@media(max-width:1050px){.od-evidence-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.od-output-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:800px){.od-journey-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.od-principle-callout{align-items:flex-start;flex-direction:column}.od-principles{grid-template-columns:1fr}}
@media(max-width:720px){.od-framework-visual{margin-right:-12px;margin-left:-12px;padding:8px;border-radius:22px}.od-framework-visual__viewport{border-radius:15px}.od-framework-visual img{width:720px;border-radius:14px}.od-framework-visual figcaption{padding:14px 7px 4px;align-items:flex-start;flex-direction:column;gap:6px}.od-framework-visual figcaption::before{content:"Swipe to explore the full framework";color:var(--navy);font-size:12px;font-weight:850}.od-dimension-grid,.od-evidence-grid,.od-output-grid,.od-application-grid,.od-faq-grid{grid-template-columns:1fr}}
@media(max-width:620px){.od-metric-grid,.od-journey-grid{grid-template-columns:1fr}.od-metric-grid article{min-height:125px}.od-journey-grid li{min-height:0}.od-dimension-grid article{padding:24px 22px}}

/* Framework overview: keep each model as a distinct destination. */
.framework-choice-section { padding-top: 18px; background: #f4f8f9; }
.framework-choice-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.framework-choice-card {
  min-height:330px;
  padding:clamp(24px,2.6vw,32px);
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:20px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(6,42,59,.14);
  border-top:6px solid var(--teal);
  border-radius:22px;
  background:linear-gradient(145deg,#fff 0 72%,#e7f6f5 100%);
  color:var(--navy);
  text-decoration:none;
  box-shadow:0 22px 54px rgba(6,31,43,.1);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.framework-choice-card--leadership { background:linear-gradient(145deg,#06131b 0 68%,#0b4654 100%); color:#fff; }
.framework-choice-card--od { border-top-color:var(--teal); background:linear-gradient(145deg,var(--white) 0 66%,rgba(46,196,182,.12) 100%); }
.framework-choice-card--management { border-top-color:var(--teal); color:var(--white); background:radial-gradient(circle at 100% 0,rgba(46,196,182,.22),transparent 38%),linear-gradient(145deg,var(--navy),var(--navy-3)); }
.framework-choice-card--management p:not(.eyebrow) { color:rgba(255,255,255,.72); }
.framework-choice-card--management > strong { border-top-color:rgba(255,255,255,.18); }
.framework-choice-card--individual { border-top-color:var(--teal); background:linear-gradient(145deg,var(--white) 0 62%,rgba(46,196,182,.14) 100%); }
.framework-choice-card--culture { color:var(--white); background:radial-gradient(circle at 100% 0,rgba(46,196,182,.24),transparent 40%),linear-gradient(145deg,#06131b,#0b4654); }
.framework-choice-card--culture p:not(.eyebrow) { color:rgba(255,255,255,.72); }
.framework-choice-card--culture > strong { border-top-color:rgba(255,255,255,.18); }
.framework-choice-card:hover,.framework-choice-card:focus-visible { transform:translateY(-5px); border-color:var(--teal); box-shadow:0 30px 66px rgba(6,31,43,.16); outline:0; }
.framework-choice-card__number { width:44px; height:44px; display:grid; place-items:center; border-radius:50%; color:var(--navy); background:var(--teal); font-size:12px; font-weight:900; }
.framework-choice-card h2 { max-width:560px; margin:7px 0 13px; color:inherit; font-size:clamp(25px,2.25vw,32px); line-height:1.06; }
.framework-choice-card p:not(.eyebrow) { max-width:620px; margin:0; color:var(--muted); font-size:13px; line-height:1.58; }
.framework-choice-card--leadership p:not(.eyebrow) { color:rgba(255,255,255,.72); }
.framework-choice-card > strong { display:flex; align-items:center; justify-content:space-between; gap:14px; padding-top:16px; border-top:1px solid rgba(6,42,59,.15); color:inherit; font-size:12px; line-height:1.35; }
.framework-choice-card--leadership > strong { border-top-color:rgba(255,255,255,.18); }
.framework-choice-card > strong .icon { width:22px; height:22px; color:var(--teal); }
@media(max-width:1050px){.framework-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.framework-choice-card{min-height:310px}}
@media(max-width:720px){.framework-choice-grid{grid-template-columns:1fr}.framework-choice-card{min-height:0;padding:25px 22px}.framework-choice-card h2{font-size:29px}}

/* Management Development Framework */
.management-framework-page .framework-detail-summary { padding-bottom:clamp(30px,3.5vw,48px); background:linear-gradient(180deg,var(--paper),var(--white)); }
.management-summary .framework-detail-summary__grid { align-items:center; }
.management-metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.management-metric-grid article { min-height:148px; padding:25px; display:grid; align-content:center; gap:8px; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:20px; background:var(--white); box-shadow:0 15px 38px rgba(6,19,27,.07); }
.management-metric-grid strong { color:var(--navy); font-size:42px; line-height:1; }
.management-metric-grid span { color:var(--muted); font-size:14px; font-weight:750; line-height:1.45; }
.management-model-section { padding:clamp(30px,3.5vw,48px) 0 clamp(72px,8vw,112px); background:linear-gradient(180deg,var(--white),var(--paper)); }
.management-section-head { max-width:900px; margin-bottom:42px; }
.management-section-head h2 { margin:8px 0 16px; color:var(--navy); font-size:clamp(38px,4.5vw,60px); line-height:1.04; }
.management-section-head > p:last-child { color:var(--muted); font-size:17px; line-height:1.7; }
.management-framework-visual { max-width:1160px; margin:0 auto 48px; padding:clamp(10px,1.5vw,18px); overflow:hidden; border:1px solid rgba(21,154,145,.24); border-radius:30px; background:var(--white); box-shadow:0 26px 68px rgba(6,19,27,.14); }
.management-framework-visual__viewport { overflow:auto; border-radius:20px; background:var(--white); scrollbar-color:var(--teal-deep) rgba(6,19,27,.08); scrollbar-width:thin; -webkit-overflow-scrolling:touch; }
.management-framework-visual__viewport:focus-visible { outline:3px solid var(--teal); outline-offset:4px; }
.management-framework-visual img { display:block; width:100%; max-width:none; height:auto; border-radius:18px; }
.management-framework-visual figcaption { padding:16px 9px 1px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:var(--muted); font-size:13px; }
.management-framework-visual figcaption span { color:var(--navy); font-weight:800; }
.management-framework-visual figcaption a { color:var(--navy-3); font-weight:850; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:3px; }
.management-domain-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.management-domain-grid > article { min-width:0; padding:28px; border:1px solid rgba(6,19,27,.12); border-radius:22px; background:var(--white); box-shadow:0 16px 38px rgba(6,19,27,.07); }
.management-domain-grid > article > header { display:flex; align-items:center; gap:14px; }
.management-domain-grid > article > header > span { display:grid; flex:0 0 50px; width:50px; height:50px; place-items:center; border-radius:15px; color:var(--white); background:linear-gradient(145deg,var(--navy),var(--teal-deep)); font-size:15px; font-weight:900; }
.management-domain-grid header p { margin:0; color:var(--teal-deep); font-size:11px; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.management-domain-grid h3 { margin:3px 0 0; color:var(--navy); font-size:24px; line-height:1.12; }
.management-domain-grid > article > strong { display:block; margin:23px 0 10px; padding-left:13px; border-left:3px solid var(--teal); color:var(--navy); font-size:14px; line-height:1.45; }
.management-domain-grid > article > p { min-height:92px; margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.management-domain-grid > article > div:last-child { margin-top:22px; display:grid; gap:10px; }
.management-domain-grid section { min-width:0; padding:17px; border-radius:15px; background:var(--paper); }
.management-domain-grid section span { color:var(--teal-deep); font-size:11px; font-weight:900; letter-spacing:.08em; }
.management-domain-grid h4 { margin:6px 0 8px; color:var(--navy); font-size:16px; line-height:1.25; overflow-wrap:anywhere; }
.management-domain-grid section p { margin:0; color:var(--muted); font-size:13px; line-height:1.52; }
.management-maturity-section { background:var(--white); }
.management-maturity-section .section-head,.management-value-section .section-head,.management-assessment-section .section-head,.management-journey-section .section-head { max-width:920px; }
.management-maturity-grid { display:grid; gap:11px; }
.management-maturity-grid article { min-width:0; padding:20px 25px; display:grid; grid-template-columns:82px minmax(0,1fr); gap:18px; align-items:center; border:1px solid rgba(6,19,27,.1); border-radius:17px; background:var(--paper); }
.management-maturity-grid article:nth-child(4) { background:rgba(46,196,182,.18); }
.management-maturity-grid article:nth-child(5) { color:var(--white); background:var(--navy-3); }
.management-maturity-grid > article > span { color:var(--teal-deep); font-size:27px; font-weight:900; }
.management-maturity-grid article:nth-child(5) > span { color:var(--teal-2); }
.management-maturity-grid h3 { margin:0 0 6px; color:var(--navy); font-size:20px; }
.management-maturity-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.55; }
.management-maturity-grid article:nth-child(5) h3 { color:var(--white); }
.management-maturity-grid article:nth-child(5) p { color:rgba(255,255,255,.74); }
.management-value-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.management-value-grid article { min-width:0; min-height:190px; padding:25px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.06); }
.management-value-grid span { color:var(--teal); font-size:13px; font-weight:900; }
.management-value-grid h3 { margin:18px 0 10px; color:var(--white); font-size:20px; }
.management-value-grid p { margin:0; color:rgba(255,255,255,.7); font-size:14px; line-height:1.6; }
.management-assessment-section { background:linear-gradient(180deg,var(--paper),var(--white)); }
.management-assessment-feature { margin-bottom:18px; padding:clamp(28px,4vw,46px); display:grid; grid-template-columns:minmax(0,1.4fr) minmax(260px,.6fr); gap:38px; align-items:center; border-radius:24px; color:var(--white); background:radial-gradient(circle at 100% 0,rgba(46,196,182,.2),transparent 38%),linear-gradient(145deg,var(--navy),var(--navy-3)); }
.management-assessment-feature h3 { margin:7px 0 13px; color:var(--white); font-size:clamp(29px,3.4vw,43px); }
.management-assessment-feature > div:first-child > p:not(.eyebrow) { max-width:760px; color:rgba(255,255,255,.74); line-height:1.65; }
.management-assessment-feature .button { margin-top:12px; }
.management-assessment-feature__result { padding:25px; display:grid; gap:6px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.07); }
.management-assessment-feature__result strong { color:var(--teal); font-size:42px; line-height:1; }
.management-assessment-feature__result span { color:var(--white); font-size:16px; font-weight:850; }
.management-assessment-feature__result p { margin:9px 0 0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.55; }
.management-assessment-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; }
.management-assessment-grid article { min-width:0; padding:27px; display:flex; flex-direction:column; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:19px; background:var(--white); box-shadow:0 14px 34px rgba(6,19,27,.06); }
.management-assessment-grid article > span { color:var(--teal-deep); font-size:13px; font-weight:900; letter-spacing:.08em; }
.management-assessment-grid h3 { margin:14px 0 10px; color:var(--navy); font-size:20px; line-height:1.22; }
.management-assessment-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.management-assessment-grid small { margin:18px 0 16px; color:var(--navy-3); font-size:12px; font-weight:800; }
.management-assessment-grid a { margin-top:auto; color:var(--navy); font-size:13px; font-weight:900; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:4px; }
.management-execution-callout { margin-top:18px; padding:28px 30px; display:flex; align-items:center; justify-content:space-between; gap:30px; border-radius:20px; color:var(--white); background:var(--navy-2); }
.management-execution-callout > div { max-width:800px; }
.management-execution-callout h3 { margin:6px 0 9px; color:var(--white); font-size:26px; }
.management-execution-callout p:not(.eyebrow) { margin:0; color:rgba(255,255,255,.7); line-height:1.6; }
.management-execution-callout .button { flex:0 0 auto; }
.management-evidence-methods { margin-top:18px; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:10px; }
.management-evidence-methods article { min-width:0; padding:20px; display:grid; align-content:start; gap:8px; border-radius:15px; background:rgba(46,196,182,.1); }
.management-evidence-methods strong { color:var(--navy); font-size:15px; }
.management-evidence-methods span { color:var(--muted); font-size:12px; line-height:1.5; }
.management-journey-section { background:var(--white); }
.management-journey-grid { margin:0; padding:0; display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:12px; list-style:none; }
.management-journey-grid li { min-width:0; min-height:300px; padding:23px; border:1px solid rgba(6,19,27,.12); border-radius:18px; background:var(--paper); }
.management-journey-grid li > span { display:grid; width:40px; height:40px; place-items:center; margin-bottom:24px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:12px; font-weight:900; }
.management-journey-grid h3 { margin:0 0 10px; color:var(--navy); font-size:21px; }
.management-journey-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.58; }
.management-journey-grid small { display:block; margin-top:18px; padding-top:14px; border-top:1px solid var(--line); color:var(--navy-3); font-size:11px; font-weight:750; line-height:1.5; }
.management-development-principle { margin-top:20px; padding:24px 28px; display:flex; align-items:center; justify-content:space-between; gap:24px; border-left:5px solid var(--teal); border-radius:0 18px 18px 0; color:var(--white); background:var(--navy); }
.management-development-principle strong { font-size:20px; }
.management-development-principle span { color:rgba(255,255,255,.76); }
@media(max-width:1100px){.management-domain-grid{grid-template-columns:1fr}.management-domain-grid > article > p{min-height:0}.management-domain-grid > article > div:last-child{grid-template-columns:repeat(3,minmax(0,1fr))}.management-value-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.management-evidence-methods{grid-template-columns:repeat(3,minmax(0,1fr))}.management-journey-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.management-journey-grid li{min-height:0}}
@media(max-width:800px){.management-assessment-feature{grid-template-columns:1fr}.management-assessment-grid{grid-template-columns:1fr}.management-execution-callout{align-items:flex-start;flex-direction:column}.management-value-grid{grid-template-columns:1fr}}
@media(max-width:720px){.management-framework-visual{margin-right:-12px;margin-left:-12px;padding:8px;border-radius:22px}.management-framework-visual__viewport{border-radius:15px}.management-framework-visual img{width:900px;border-radius:14px}.management-framework-visual figcaption{padding:14px 7px 4px;align-items:flex-start;flex-direction:column;gap:6px}.management-framework-visual figcaption::before{content:"Swipe to explore the full framework";color:var(--navy);font-size:12px;font-weight:850}.management-domain-grid > article > div:last-child{grid-template-columns:1fr}.management-evidence-methods{grid-template-columns:1fr}.management-journey-grid{grid-template-columns:1fr}.management-development-principle{align-items:flex-start;flex-direction:column}}
@media(max-width:620px){.management-metric-grid{grid-template-columns:1fr}.management-metric-grid article{min-height:120px}.management-domain-grid > article{padding:24px 21px}.management-maturity-grid article{grid-template-columns:58px minmax(0,1fr);padding:20px}.management-assessment-feature,.management-assessment-grid article{padding:24px 21px}}

/* 3S Individual Contributor Framework */
.individual-framework-page .framework-detail-summary { background:linear-gradient(180deg,var(--paper),var(--white)); }
.individual-summary .framework-detail-summary__grid { align-items:center; }
.individual-metric-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.individual-metric-grid article { min-height:148px; padding:25px; display:grid; align-content:center; gap:8px; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:20px; background:var(--white); box-shadow:0 15px 38px rgba(6,19,27,.07); }
.individual-metric-grid strong { color:var(--navy); font-size:42px; line-height:1; }
.individual-metric-grid span { color:var(--muted); font-size:14px; font-weight:750; line-height:1.45; }
.individual-model-section { padding:clamp(72px,8vw,112px) 0; background:linear-gradient(180deg,var(--white),var(--paper)); }
.individual-section-head { max-width:920px; margin-bottom:42px; }
.individual-section-head h2 { margin:8px 0 16px; color:var(--navy); font-size:clamp(38px,4.5vw,60px); line-height:1.04; }
.individual-section-head > p:last-child { color:var(--muted); font-size:17px; line-height:1.7; }
.individual-framework-visual { max-width:1060px; margin:0 auto 48px; padding:clamp(10px,1.5vw,18px); overflow:hidden; border:1px solid rgba(21,154,145,.24); border-radius:30px; background:var(--white); box-shadow:0 26px 68px rgba(6,19,27,.14); }
.individual-framework-visual__viewport { overflow:auto; border-radius:20px; background:var(--white); scrollbar-color:var(--teal-deep) rgba(6,19,27,.08); scrollbar-width:thin; -webkit-overflow-scrolling:touch; }
.individual-framework-visual__viewport:focus-visible { outline:3px solid var(--teal); outline-offset:4px; }
.individual-framework-visual img { display:block; width:100%; max-width:none; height:auto; border-radius:18px; }
.individual-framework-visual figcaption { padding:16px 9px 1px; display:flex; align-items:center; justify-content:space-between; gap:18px; color:var(--muted); font-size:13px; }
.individual-framework-visual figcaption span { color:var(--navy); font-weight:800; }
.individual-framework-visual figcaption a { color:var(--navy-3); font-weight:850; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:3px; }
.individual-pillar-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.individual-pillar-grid > article { min-width:0; padding:28px; border:1px solid rgba(6,19,27,.12); border-radius:22px; background:var(--white); box-shadow:0 16px 38px rgba(6,19,27,.07); }
.individual-pillar-grid > article > header { display:flex; align-items:center; gap:14px; }
.individual-pillar-grid > article > header > span { display:grid; flex:0 0 50px; width:50px; height:50px; place-items:center; border-radius:15px; color:var(--white); background:linear-gradient(145deg,var(--navy),var(--teal-deep)); font-size:14px; font-weight:900; }
.individual-pillar-grid header p { margin:0; color:var(--teal-deep); font-size:11px; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.individual-pillar-grid h3 { margin:3px 0 0; color:var(--navy); font-size:25px; line-height:1.12; }
.individual-pillar-grid > article > strong { display:block; margin:23px 0 10px; padding-left:13px; border-left:3px solid var(--teal); color:var(--navy); font-size:14px; line-height:1.45; }
.individual-pillar-grid > article > p { min-height:112px; margin:0; color:var(--muted); font-size:14px; line-height:1.62; }
.individual-pillar-grid > article > div:last-child { margin-top:22px; display:grid; gap:10px; }
.individual-pillar-grid section { min-width:0; padding:17px; border-radius:15px; background:var(--paper); }
.individual-pillar-grid section > span { color:var(--teal-deep); font-size:11px; font-weight:900; }
.individual-pillar-grid h4 { margin:6px 0 8px; color:var(--navy); font-size:16px; line-height:1.25; }
.individual-pillar-grid section p { margin:0; color:var(--muted); font-size:13px; line-height:1.52; }
.individual-pillar-grid ul { margin:10px 0 0; padding-left:17px; color:var(--muted); font-size:12px; line-height:1.5; }
.individual-maturity-section { background:var(--white); }
.individual-maturity-section .section-head,.individual-evidence-section .section-head,.individual-assessment-section .section-head,.individual-journey-section .section-head { max-width:920px; }
.individual-maturity-grid { display:grid; gap:11px; }
.individual-maturity-grid article { min-width:0; padding:21px 25px; display:grid; grid-template-columns:70px minmax(0,1fr); gap:20px; align-items:center; border:1px solid rgba(6,19,27,.11); border-radius:17px; background:var(--paper); }
.individual-maturity-grid article:nth-child(4) { background:rgba(46,196,182,.16); }
.individual-maturity-grid article:nth-child(5) { color:var(--white); background:var(--navy-3); }
.individual-maturity-grid article > span { color:var(--teal-deep); font-size:27px; font-weight:900; }
.individual-maturity-grid article:nth-child(5) > span { color:var(--teal-2); }
.individual-maturity-grid h3 { margin:0 0 3px; color:var(--navy); font-size:20px; }
.individual-maturity-grid strong { color:var(--teal-deep); font-size:11px; letter-spacing:.06em; text-transform:uppercase; }
.individual-maturity-grid p { margin:7px 0 0; color:var(--muted); font-size:14px; line-height:1.55; }
.individual-maturity-grid article:nth-child(5) h3 { color:var(--white); }
.individual-maturity-grid article:nth-child(5) strong { color:var(--teal-2); }
.individual-maturity-grid article:nth-child(5) p { color:rgba(255,255,255,.74); }
.individual-evidence-rule { margin-top:19px; padding:23px 27px; display:flex; align-items:center; gap:25px; border-left:5px solid var(--teal); border-radius:0 17px 17px 0; background:var(--navy); color:var(--white); }
.individual-evidence-rule strong { flex:0 0 auto; color:var(--teal); font-size:17px; }
.individual-evidence-rule span { color:rgba(255,255,255,.74); line-height:1.55; }
.individual-signal-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.individual-signal-grid article { padding:28px; border:1px solid rgba(255,255,255,.14); border-radius:19px; background:rgba(255,255,255,.06); }
.individual-signal-grid h3 { margin:0 0 18px; color:var(--white); font-size:23px; }
.individual-signal-grid ul { margin:0; padding-left:20px; color:rgba(255,255,255,.72); line-height:1.75; }
.individual-signal-grid li::marker { color:var(--teal); }
.individual-conversation-grid { margin:18px 0 0; padding:0; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; list-style:none; }
.individual-conversation-grid li { min-width:0; padding:22px; border-radius:17px; background:rgba(255,255,255,.075); }
.individual-conversation-grid li > span { display:grid; width:38px; height:38px; place-items:center; margin-bottom:20px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:11px; font-weight:900; }
.individual-conversation-grid h3 { margin:0 0 9px; color:var(--white); font-size:19px; }
.individual-conversation-grid p { margin:0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.58; }
.individual-assessment-section { background:linear-gradient(180deg,var(--paper),var(--white)); }
.individual-assessment-feature { margin-bottom:18px; padding:clamp(28px,4vw,46px); display:grid; grid-template-columns:minmax(0,1.4fr) minmax(250px,.6fr); gap:38px; align-items:center; border-radius:24px; color:var(--white); background:radial-gradient(circle at 100% 0,rgba(46,196,182,.2),transparent 38%),linear-gradient(145deg,var(--navy),var(--navy-3)); }
.individual-assessment-feature h3 { margin:7px 0 13px; color:var(--white); font-size:clamp(29px,3.4vw,43px); }
.individual-assessment-feature > div:first-child > p:not(.eyebrow) { max-width:760px; color:rgba(255,255,255,.74); line-height:1.65; }
.individual-assessment-feature .button { margin-top:12px; }
.individual-assessment-feature__result { padding:25px; display:grid; gap:6px; border:1px solid rgba(255,255,255,.15); border-radius:18px; background:rgba(255,255,255,.07); }
.individual-assessment-feature__result strong { color:var(--teal); font-size:44px; line-height:1; }
.individual-assessment-feature__result span { color:var(--white); font-size:16px; font-weight:850; }
.individual-assessment-feature__result p { margin:9px 0 0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.55; }
.individual-assessment-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.individual-assessment-grid article { min-width:0; padding:24px; display:flex; flex-direction:column; border:1px solid rgba(6,19,27,.12); border-top:5px solid var(--teal); border-radius:18px; background:var(--white); box-shadow:0 13px 32px rgba(6,19,27,.055); }
.individual-assessment-grid article > span { color:var(--teal-deep); font-size:13px; font-weight:900; }
.individual-assessment-grid h3 { margin:13px 0 9px; color:var(--navy); font-size:19px; line-height:1.23; }
.individual-assessment-grid p { margin:0; color:var(--muted); font-size:13px; line-height:1.58; }
.individual-assessment-grid small { margin:17px 0 15px; color:var(--navy-3); font-size:11px; font-weight:800; line-height:1.5; }
.individual-assessment-grid a,.individual-targeted-grid a { margin-top:auto; color:var(--navy); font-size:12px; font-weight:900; text-decoration:underline; text-decoration-color:var(--teal); text-underline-offset:4px; }
.individual-targeted-heading { margin:45px 0 18px; color:var(--navy); font-size:28px; }
.individual-targeted-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.individual-targeted-grid article { min-width:0; padding:23px; display:flex; flex-direction:column; gap:9px; border-left:5px solid var(--teal); border-radius:0 16px 16px 0; background:rgba(46,196,182,.1); }
.individual-targeted-grid strong { color:var(--navy); font-size:17px; }
.individual-targeted-grid span { color:var(--muted); font-size:13px; line-height:1.55; }
.individual-assessment-boundary { margin-top:18px; padding:23px 27px; display:flex; align-items:center; gap:24px; border-radius:17px; color:var(--white); background:var(--navy-2); }
.individual-assessment-boundary strong { flex:0 0 auto; color:var(--teal); }
.individual-assessment-boundary span { color:rgba(255,255,255,.72); line-height:1.55; }
.individual-journey-section { background:var(--white); }
.individual-journey-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; }
.individual-journey-grid article { min-width:0; min-height:210px; padding:24px; border:1px solid rgba(6,19,27,.12); border-radius:18px; background:var(--paper); }
.individual-journey-grid span { display:grid; width:40px; height:40px; place-items:center; margin-bottom:22px; border-radius:50%; color:var(--navy); background:var(--teal); font-size:11px; font-weight:900; }
.individual-journey-grid h3 { margin:0 0 9px; color:var(--navy); font-size:21px; }
.individual-journey-grid p { margin:0; color:var(--muted); font-size:14px; line-height:1.58; }
.individual-outcome-grid { margin-top:18px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:11px; }
.individual-outcome-grid article { min-width:0; padding:20px; display:grid; gap:7px; border-radius:15px; background:rgba(46,196,182,.1); }
.individual-outcome-grid strong { color:var(--navy); font-size:16px; }
.individual-outcome-grid span { color:var(--muted); font-size:13px; line-height:1.5; }
@media(max-width:1100px){.individual-pillar-grid{grid-template-columns:1fr}.individual-pillar-grid > article > p{min-height:0}.individual-pillar-grid > article > div:last-child{grid-template-columns:repeat(3,minmax(0,1fr))}.individual-assessment-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.individual-conversation-grid,.individual-journey-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:800px){.individual-assessment-feature{grid-template-columns:1fr}.individual-targeted-grid,.individual-outcome-grid{grid-template-columns:1fr}.individual-evidence-rule,.individual-assessment-boundary{align-items:flex-start;flex-direction:column}.individual-signal-grid{grid-template-columns:1fr}}
@media(max-width:720px){.individual-framework-visual{margin-right:-12px;margin-left:-12px;padding:8px;border-radius:22px}.individual-framework-visual__viewport{border-radius:15px}.individual-framework-visual img{width:720px;border-radius:14px}.individual-framework-visual figcaption{padding:14px 7px 4px;align-items:flex-start;flex-direction:column;gap:6px}.individual-framework-visual figcaption::before{content:"Swipe to explore the full framework";color:var(--navy);font-size:12px;font-weight:850}.individual-pillar-grid > article > div:last-child{grid-template-columns:1fr}.individual-assessment-grid,.individual-conversation-grid,.individual-journey-grid{grid-template-columns:1fr}}
@media(max-width:620px){.individual-metric-grid{grid-template-columns:1fr}.individual-metric-grid article{min-height:120px}.individual-pillar-grid > article{padding:24px 21px}.individual-maturity-grid article{grid-template-columns:52px minmax(0,1fr);padding:20px}.individual-assessment-feature,.individual-assessment-grid article{padding:24px 21px}}

/* Founder profile */
.founder-profile-section { background:linear-gradient(180deg,#f7fafb 0%,#fff 100%); }
.founder-profile-grid { display:grid; grid-template-columns:minmax(280px,.62fr) minmax(0,1.38fr); gap:26px; align-items:stretch; }
.founder-profile-portrait { min-width:0; height:100%; margin:0; align-self:stretch; display:grid; grid-template-rows:minmax(0,1fr) auto; overflow:hidden; border:1px solid rgba(6,42,59,.12); border-radius:26px; background:#06131b; box-shadow:0 24px 60px rgba(6,19,27,.13); }
.founder-profile-portrait img { display:block; width:100%; height:100%; min-height:0; object-fit:contain; aspect-ratio:auto; background:#06131b; }
.founder-profile-portrait figcaption { padding:20px 22px 22px; display:grid; gap:4px; border-top:4px solid var(--teal); background:#fff; }
.founder-profile-portrait figcaption strong { color:var(--navy); font-size:19px; }
.founder-profile-portrait figcaption span { color:var(--muted); font-size:13px; font-weight:700; letter-spacing:.025em; }
.founder-profile-card { padding:clamp(34px,4.6vw,62px); border-radius:26px; color:#fff; background:radial-gradient(circle at 100% 0,rgba(46,196,182,.2),transparent 36%),linear-gradient(145deg,#06131b,#0a3442); box-shadow:0 24px 60px rgba(6,19,27,.18); }
.founder-profile-card .eyebrow { color:var(--teal); }
.founder-profile-card h2 { margin:8px 0 5px; color:#fff; font-size:clamp(39px,4vw,58px); line-height:1.03; }
.founder-profile-card__credentials { margin:0 0 28px!important; color:var(--teal)!important; font-size:17px!important; font-weight:800; letter-spacing:.04em; }
.founder-profile-card > p:not(.eyebrow):not(.founder-profile-card__credentials) { color:rgba(255,255,255,.78); font-size:16px; line-height:1.72; }
.founder-profile-card__principle { margin-top:32px; padding:22px 0 0; display:grid; gap:8px; border-top:1px solid rgba(255,255,255,.16); }
.founder-profile-card__principle span { color:var(--teal); font-size:11px; font-weight:900; letter-spacing:.16em; text-transform:uppercase; }
.founder-profile-card__principle strong { max-width:520px; color:#fff; font-size:20px; line-height:1.4; }
.founder-achievement-grid { grid-column:1/-1; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.founder-achievement-card { min-width:0; padding:28px; border:1px solid rgba(6,42,59,.11); border-radius:20px; background:#fff; box-shadow:0 14px 36px rgba(8,24,34,.065); }
.founder-achievement-card .icon { width:36px; height:36px; margin-bottom:25px; color:var(--teal-dark); }
.founder-achievement-card h3 { margin:0 0 12px; color:var(--navy); font-size:21px; }
.founder-achievement-card p { margin:0; color:var(--muted); font-size:14px; line-height:1.65; }
.founder-career-section .section-head { max-width:880px; }
.founder-career-timeline { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:0; border:1px solid rgba(255,255,255,.14); border-radius:22px; overflow:hidden; background:rgba(255,255,255,.045); }
.founder-career-timeline article { min-width:0; padding:26px 22px 30px; position:relative; border-left:1px solid rgba(255,255,255,.12); }
.founder-career-timeline article:first-child { border-left:0; }
.founder-career-timeline article::before { content:""; display:block; width:44px; height:4px; margin-bottom:24px; border-radius:4px; background:var(--teal); }
.founder-career-timeline strong { color:var(--teal); font-size:12px; letter-spacing:.09em; text-transform:uppercase; }
.founder-career-timeline h3 { margin:10px 0 12px; color:#fff; font-size:18px; line-height:1.35; }
.founder-career-timeline p { margin:0; color:rgba(255,255,255,.68); font-size:13px; line-height:1.6; }
.founder-credentials-grid { display:grid; grid-template-columns:minmax(320px,.72fr) minmax(0,1.28fr); gap:54px; align-items:start; }
.founder-qualification-panel { padding:34px; border:1px solid rgba(6,42,59,.12); border-radius:22px; background:#eef7f7; }
.founder-qualification-panel h2,.founder-credentials-grid > div > h2 { margin:8px 0 25px; color:var(--navy); font-size:clamp(31px,3vw,43px); line-height:1.08; }
.founder-qualification-list { margin:0; padding:0; display:grid; gap:0; list-style:none; }
.founder-qualification-list li { padding:16px 0; display:grid; gap:5px; border-top:1px solid rgba(6,42,59,.12); }
.founder-qualification-list strong { color:var(--navy); font-size:15px; }
.founder-qualification-list span { color:var(--muted); font-size:13px; }
.founder-expertise-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.founder-expertise-grid article { min-width:0; padding:21px; border-left:3px solid var(--teal); border-radius:0 14px 14px 0; background:#f4f7f8; }
.founder-expertise-grid h3 { margin:0 0 7px; color:var(--navy); font-size:17px; }
.founder-expertise-grid p { margin:0; color:var(--muted); font-size:13px; line-height:1.55; }
.founder-thinking-section { color:#fff; background:radial-gradient(circle at 82% 12%,rgba(46,196,182,.17),transparent 30%),linear-gradient(125deg,#071722,#0a2f3c); }
.founder-thinking-grid { display:grid; grid-template-columns:minmax(230px,.56fr) minmax(360px,1fr) minmax(280px,.62fr); gap:44px; align-items:start; }
.founder-thinking-grid h2 { margin:8px 0 0; color:#fff; font-size:clamp(35px,3.6vw,51px); line-height:1.07; }
.founder-thinking-grid > div:nth-child(2) p { margin:0 0 17px; color:rgba(255,255,255,.78); line-height:1.72; }
.founder-thinking-grid > div:nth-child(2) strong { color:var(--teal); }
.founder-thinking-grid aside { padding:27px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.06); }
.founder-thinking-grid aside span { color:var(--teal); font-size:12px; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.founder-thinking-grid aside ul { margin:18px 0 0; padding-left:19px; display:grid; gap:12px; }
.founder-thinking-grid aside li { color:rgba(255,255,255,.76); font-size:13px; line-height:1.5; }
@media(max-width:1100px){.founder-profile-grid,.founder-credentials-grid{grid-template-columns:1fr}.founder-profile-portrait{width:min(100%,520px);height:auto;align-self:start;display:block;background:#fff}.founder-profile-portrait img{height:auto;object-fit:initial;background:transparent}.founder-achievement-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.founder-career-timeline{grid-template-columns:repeat(2,minmax(0,1fr))}.founder-career-timeline article:nth-child(odd){border-left:0}.founder-career-timeline article{border-bottom:1px solid rgba(255,255,255,.12)}.founder-thinking-grid{grid-template-columns:1fr 1fr}.founder-thinking-grid aside{grid-column:1/-1}}
@media(max-width:680px){.founder-achievement-grid,.founder-expertise-grid,.founder-career-timeline,.founder-thinking-grid{grid-template-columns:1fr}.founder-profile-card,.founder-achievement-card,.founder-qualification-panel{padding:26px 22px}.founder-career-timeline article{border-left:0}.founder-thinking-grid aside{grid-column:auto}.founder-profile-card h2{font-size:38px}}

/* Brand and presentation refinement */
h1,
h2,
h3,
h4,
.button,
.main-nav,
.eyebrow,
.case-number,
.stat strong,
.impact-metric strong {
  font-family: Montserrat, Inter, Aptos, "Segoe UI", Arial, sans-serif;
}

.site-header {
  background: linear-gradient(180deg, rgba(3, 8, 12, 0.88), rgba(3, 8, 12, 0));
}

.header-inner {
  min-height: 98px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(232px, 20vw, 302px);
  min-width: 0;
  gap: 0;
}

.site-header .brand-stacked {
  align-self: start;
  width: clamp(176px, 13vw, 204px);
  margin-top: 18px;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-footer .brand {
  width: clamp(206px, 16vw, 260px);
}

.hero-section {
  min-height: 500px;
  padding: 122px 0 58px;
  background: #02070b;
}

.hero-section.compact {
  min-height: 430px;
}

.hero-media {
  inset: 0;
  opacity: 1;
}

.hero-media img {
  object-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(2, 7, 11, 0.92) 0%, rgba(2, 7, 11, 0.78) 34%, rgba(2, 7, 11, 0.34) 70%, rgba(2, 7, 11, 0.14) 100%),
    linear-gradient(180deg, rgba(2, 7, 11, 0.38), rgba(2, 7, 11, 0.22));
}

.hero-section::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(46, 196, 182, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(2, 7, 11, 0.54), rgba(2, 7, 11, 0.1));
}

.hero-section::after {
  right: -11%;
  bottom: -30%;
  width: 36%;
  height: 110%;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.32), rgba(46, 196, 182, 0.78));
}

.hero-layout {
  max-width: 720px;
}

@media (min-width: 1024px) {
  .hero-layout {
    margin-left: clamp(210px, 19vw, 270px);
  }
}

.hero-title {
  max-width: 720px;
  font-size: clamp(40px, 4.75vw, 66px);
}

.hero-copy {
  max-width: 610px;
  line-height: 1.44;
}

.hero-actions-row {
  margin-top: 26px;
}

.section {
  padding: 40px 0;
}

.section.tight {
  padding: 26px 0;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(29px, 2.55vw, 42px);
}

.section-head p {
  margin-top: 8px;
}

.grid {
  gap: 18px;
}

.card,
.panel {
  border-color: rgba(13, 13, 13, 0.12);
  box-shadow: 0 14px 34px rgba(8, 24, 34, 0.07);
}

.service-card {
  min-height: 154px;
  padding: 20px 18px;
}

.service-card h3,
.model-card h3,
.industry-card h3,
.case-card h3,
.insight-card h3,
.testimonial-card h3 {
  letter-spacing: 0;
}

.founder-photo {
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(46, 196, 182, 0.14), rgba(13, 13, 13, 0.02)),
    #eef2f3;
}

.founder-photo img {
  object-position: center top;
  filter: contrast(1.04) saturate(1.02);
}

.founder-photo::after {
  background: linear-gradient(135deg, rgba(46, 196, 182, 0), rgba(46, 196, 182, 0.6));
}

.split-panel {
  gap: 30px;
  align-items: stretch;
}

.split-panel > .founder-photo {
  min-height: 360px;
}

.split-panel > .founder-photo + .grid.two {
  padding: 28px;
  border: 1px solid rgba(13, 13, 13, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(8, 24, 34, 0.06);
  align-content: start;
  gap: 22px 28px;
}

.split-panel > .founder-photo + .grid.two > div:first-child {
  grid-column: 1 / -1;
  align-self: start;
}

.split-panel > .founder-photo + .grid.two .model-card {
  min-height: 138px;
}

.grid.three {
  align-items: stretch;
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
}

.case-head {
  background: linear-gradient(90deg, #02070b, #082530);
}

.case-body {
  min-height: 0;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.case-row {
  display: grid;
  align-content: start;
  padding: 14px 16px;
}

.results-row {
  align-self: end;
  min-height: 104px;
  background: linear-gradient(135deg, #2ec4b6 0%, #1db7ad 58%, #118b86 100%);
}

.results-row span {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 12px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.results-row span:first-child {
  border-left: 0;
}

.results-row strong {
  font-size: 26px;
}

.insight-card img,
.industry-card img,
.featured-insight img {
  filter: saturate(1.08) contrast(1.04);
}

.button {
  background: linear-gradient(135deg, #38d3c7, #22aaa3);
}

.button.secondary {
  border-color: rgba(46, 196, 182, 0.72);
  background: rgba(3, 12, 18, 0.54);
}

.proof-strip,
.impact-band,
.site-footer,
.section.dark,
.founder-band,
.newsletter {
  background:
    radial-gradient(circle at 76% 18%, rgba(46, 196, 182, 0.16), transparent 32%),
    linear-gradient(90deg, #03080c, #081923 56%, #0b2530);
}

@media (max-width: 980px) {
  .brand {
    width: 236px;
  }

  .site-header .brand-stacked {
    width: 170px;
    margin-top: 12px;
  }

  .hero-section {
    min-height: 460px;
  }

  .hero-section::after {
    width: 44%;
    opacity: 0.78;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: min(218px, 58vw);
  }

  .site-header .brand-stacked {
    width: min(150px, 42vw);
    margin-top: 10px;
  }

  .site-footer .brand {
    width: 220px;
  }

  .hero-section,
  .hero-section.compact {
    min-height: auto;
    padding: 102px 0 44px;
  }

  .hero-title {
    font-size: clamp(35px, 10vw, 50px);
  }

  .section {
    padding: 38px 0;
  }

  .results-row,
  .results-row span {
    min-height: 82px;
  }
}

/* Hero title arrow composition */
.site-header .brand-lockup {
  width: clamp(232px, 20vw, 302px);
}

.hero-layout {
  width: min(calc(100% - 18px), 1390px);
  max-width: 1390px;
  margin-left: clamp(0px, 0.8vw, 12px);
  margin-right: auto;
}

.hero-layout .breadcrumb,
.hero-layout .hero-eyebrow {
  margin-left: clamp(300px, 23vw, 360px);
}

.hero-title-row {
  display: grid;
  grid-template-columns: clamp(290px, 22vw, 350px) minmax(0, 860px);
  gap: clamp(8px, 1.2vw, 18px);
  align-items: start;
}

.hero-arrow-mark {
  width: clamp(290px, 22vw, 350px);
  transform: translateY(10px);
}

.hero-arrow-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.hero-title-copy {
  min-width: 0;
}

.hero-title-copy .hero-title,
.hero-title-copy .hero-copy {
  max-width: 820px;
}

@media (min-width: 1024px) {
  .hero-layout {
    margin-left: clamp(0px, 0.8vw, 12px);
    margin-right: auto;
  }
}

@media (max-width: 980px) {
  .hero-layout .breadcrumb,
  .hero-layout .hero-eyebrow {
    margin-left: 0;
  }

  .hero-title-row {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 18px;
  }

  .hero-arrow-mark {
    width: 160px;
  }
}

@media (max-width: 640px) {
  .hero-title-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-arrow-mark {
    width: min(190px, 62vw);
  }
}

/* Mobile founder profile: keep the photograph and biography as separate,
   full-width rows after every desktop layout rule in this stylesheet. */
@media (max-width: 1100px) {
  .founder-band {
    overflow: hidden;
  }

  .founder-grid {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .founder-photo {
    order: 1;
    width: 100%;
    min-width: 0;
    max-width: none;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .founder-copy {
    order: 2;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 28px 0 18px;
    box-sizing: border-box;
  }

  .founder-stats {
    order: 3;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 18px 0 28px;
    box-sizing: border-box;
  }

  .founder-copy h2,
  .founder-copy p,
  .founder-stats span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .founder-stats.stat-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .founder-photo {
    aspect-ratio: 4 / 3;
  }

  .founder-copy {
    padding-top: 24px;
  }

  .founder-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }
}

/* Service Why & How article links */
.service-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  align-items: stretch;
  min-height: 196px;
  padding: 0;
  overflow: hidden;
}

.service-card-main {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-width: 0;
  padding: 20px 18px 18px;
  color: inherit;
}

.service-card-main:hover {
  color: inherit;
}

/* Crisp HR Delivery service symbols and complete assessment catalogue. */
.icon-tile,
.grid.services.compact .icon-tile {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 2px solid #159a91;
  color: #06131b;
  box-shadow: inset 0 0 0 5px #e8f7f5;
}
.icon-tile .icon {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
  shape-rendering: geometricPrecision;
  filter: none;
}
.icon-tile .icon * { vector-effect: non-scaling-stroke; }

.assessment-catalog { display: grid; gap: 24px; }
.assessment-catalog__group { overflow: hidden; border: 1px solid rgba(6,19,27,.14); border-top: 5px solid var(--teal); border-radius: 16px; background: #fff; box-shadow: 0 14px 34px rgba(6,19,27,.06); }
.assessment-catalog__group > header { padding: 18px 22px; display: grid; grid-template-columns: 42px 1fr auto; gap: 14px; align-items: center; background: #06131b; color: #fff; }
.assessment-catalog__group > header > span { color: #5ee3d8; font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.assessment-catalog__group > header h3 { margin: 0; color: #fff; font-size: 24px; }
.assessment-catalog__group > header small { color: rgba(255,255,255,.65); font-weight: 700; }
.assessment-catalog__group > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.assessment-catalog__group > div > button { min-height: 74px; padding: 14px 18px; display: grid; grid-template-columns: 34px minmax(0,1fr) auto 22px; gap: 12px; align-items: center; border: 0; border-bottom: 1px solid rgba(6,19,27,.11); background: #fff; color: #06131b; font: inherit; text-align: left; cursor: pointer; }
.assessment-catalog__group > div > button:nth-child(odd) { border-right: 1px solid rgba(6,19,27,.11); }
.assessment-catalog__group > div > button:hover,
.assessment-catalog__group > div > button:focus-visible { background: #e8f7f5; outline: 3px solid rgba(46,196,182,.22); outline-offset: -3px; }
.assessment-catalog__group button > span { color: #159a91; font-size: 11px; font-weight: 900; }
.assessment-catalog__group button > strong { line-height: 1.28; }
.assessment-catalog__group button > small { padding: 5px 7px; border-radius: 999px; background: #edf3f5; color: #52616a; font-size: 10px; font-weight: 900; }
.assessment-catalog__group button > .icon { width: 18px; color: #159a91; }

/* Condensed on-screen factsheets retain the complete evidence content. */
.factsheet-viewer { max-height: calc(100vh - 20px); }
.factsheet-viewer__header { min-height: 68px; padding: 12px 22px; }
.factsheet-viewer__header .brand-logo { width: min(225px, 52vw); }
.factsheet-viewer__hero { padding: 28px 34px; }
.factsheet-viewer__hero h2 { margin: 5px 0 10px; font-size: clamp(32px,4vw,48px); }
.factsheet-viewer__hero > p:not(.eyebrow) { font-size: 16px; line-height: 1.52; }
.factsheet-viewer__hero dl { margin-top: 18px; gap: 10px; }
.factsheet-viewer__hero dl > div { padding: 12px 14px; box-shadow: none; }
.factsheet-viewer__hero dd { font-size: 13px; line-height: 1.4; }
.factsheet-viewer__body { padding: 24px 34px; gap: 22px; }
.factsheet-viewer__body h3 { margin: 4px 0 8px; font-size: clamp(20px,2.4vw,28px); }
.factsheet-viewer__body p,
.factsheet-viewer__body li { font-size: 14px; line-height: 1.52; }
.factsheet-viewer__overview,
.factsheet-viewer__columns { gap: 14px; }
.factsheet-viewer__overview > div,
.factsheet-viewer__columns > div { padding: 18px 20px; border-radius: 12px; }
.factsheet-viewer__components { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.factsheet-viewer__components article { padding: 15px; }
.factsheet-viewer__components span { margin-bottom: 9px; }
.factsheet-viewer__components h4 { margin-bottom: 6px; font-size: 15px; }
.factsheet-viewer__components p { font-size: 12px; }
.factsheet-viewer__experience { padding: 18px 20px; border: 1px solid rgba(6,19,27,.12); border-radius: 12px; background: #f5f7f8; }
.factsheet-viewer__experience ol { margin: 10px 0 0; padding-left: 22px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 6px 28px; }
.factsheet-viewer__result { padding: 22px; border-radius: 12px; }
.factsheet-viewer__responsible { padding: 16px 20px; }
.factsheet-viewer__value-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.factsheet-viewer__value-grid article { padding: 17px; border-top: 4px solid var(--teal); background: #edf3f5; }
.factsheet-viewer__value-grid span { color: #159a91; font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.factsheet-viewer__value-grid p { margin: 7px 0 0; }
.factsheet-viewer__footer { padding: 15px 34px; }

@media (max-width: 760px) {
  .assessment-catalog__group > div { grid-template-columns: 1fr; }
  .assessment-catalog__group > div > button:nth-child(odd) { border-right: 0; }
  .assessment-catalog__group > header { grid-template-columns: 34px 1fr; }
  .assessment-catalog__group > header small { grid-column: 2; }
  .factsheet-viewer__body { padding: 20px 18px; }
  .factsheet-viewer__components,
  .factsheet-viewer__value-grid,
  .factsheet-viewer__experience ol { grid-template-columns: 1fr; }
}

.service-card-copy {
  min-width: 0;
}

.why-how-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 13px 16px;
  background: #05090d;
  border-top: 1px solid rgba(46, 196, 182, 0.62);
  color: #ffffff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.why-how-link .icon {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex: 0 0 auto;
}

.why-how-link:hover {
  background: #0d1a20;
  color: #ffffff;
}

.grid.services.compact .service-card {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 188px;
  padding: 0;
}

.grid.services.compact .service-card-main {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 14px 12px;
}

.grid.services.compact .why-how-link {
  min-height: 44px;
  padding: 12px 14px;
  font-size: 11px;
}

.grid.services.compact .service-card p {
  display: block;
}

/* Insights archive expansion */
.archive-strip {
  background: #eef4f4;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.archive-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 0;
}

.archive-inner h2 {
  margin: 4px 0 6px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.1;
}

.archive-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.archive-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.archive-subjects span,
.insight-topic {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(46, 196, 182, 0.12);
  color: var(--teal-deep);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.insights-section .grid.three {
  align-items: stretch;
}

.insight-card .content {
  display: grid;
  gap: 8px;
}

.insight-card time {
  margin: 0;
}

.insight-card .article-meta {
  margin-top: 2px;
}

.insight-empty {
  margin-top: 20px;
  padding: 42px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.insight-empty[hidden] {
  display: none;
}

.insight-empty .icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  color: var(--teal-deep);
}

.insight-empty h3 {
  margin: 0;
  font-size: 24px;
}

.insight-empty p {
  margin: 6px 0 0;
  color: var(--muted);
}

.featured-article img,
.insight-card img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .archive-inner {
    grid-template-columns: 1fr;
  }

  .archive-subjects {
    justify-content: flex-start;
  }
}

/* Final layout overrides: keep hero composition crisp and consistent. */
.hero-layout .breadcrumb,
.hero-layout .hero-eyebrow {
  margin-left: clamp(288px, 21.5vw, 340px);
}

.hero-title-row {
  grid-template-columns: clamp(270px, 20vw, 320px) minmax(0, 900px);
  gap: clamp(18px, 2vw, 32px);
}

.hero-arrow-mark {
  width: clamp(270px, 20vw, 320px);
  transform: translateY(34px);
}

.hero-title-copy .hero-title {
  max-width: 900px;
  font-size: clamp(42px, 4.45vw, 64px);
  text-wrap: balance;
}

.hero-title-copy .hero-copy {
  max-width: 760px;
}

body[data-page^="article-"] .hero-title,
body[data-page^="why-how-"] .hero-title {
  font-size: clamp(36px, 3.55vw, 54px);
  line-height: 1.06;
}

body[data-page^="article-"] .hero-copy,
body[data-page^="why-how-"] .hero-copy {
  max-width: 800px;
  font-size: clamp(17px, 1.3vw, 20px);
}

.grid.services {
  align-items: stretch;
}

.service-card,
.service-card-main,
.service-outcomes > div {
  height: 100%;
}

.service-outcomes {
  align-items: stretch;
}

.service-outcomes > div {
  display: grid;
  align-content: start;
  grid-template-rows: auto 1fr;
}

/* The home services catalogue is intentionally twelve cards arranged as
   three complete rows of four on desktop. */
@media (min-width: 1024px) {
  body[data-page="home"] .grid.services.compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero-layout .breadcrumb,
  .hero-layout .hero-eyebrow {
    margin-left: 0;
  }

  .hero-title-row {
    grid-template-columns: 158px minmax(0, 1fr);
    gap: 18px;
  }

  .hero-arrow-mark {
    width: 158px;
    transform: translateY(18px);
  }
}

@media (max-width: 640px) {
  .hero-title-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-arrow-mark {
    width: min(176px, 54vw);
    transform: none;
  }

  .hero-title-copy .hero-title,
  body[data-page^="article-"] .hero-title,
  body[data-page^="why-how-"] .hero-title {
    font-size: clamp(34px, 10vw, 46px);
  }
}
