@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&family=Roboto+Mono:wght@500;600&display=swap");

:root {
  --navy: #081d33;
  --navy-2: #0f2e4d;
  --teal: #0a585b;
  --gold: #daa017;
  --gold-bright: #f0a900;
  --cream: #f4f6f8;
  --white: #ffffff;
  --ink: #07172d;
  --muted: #556271;
  --line: #d9dee4;
  --shadow: 0 10px 30px rgba(8, 29, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
}

.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;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  letter-spacing: 0.08em;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.08;
  letter-spacing: 0.14em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 32px 0 29px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 3px;
  background: var(--gold-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: linear-gradient(135deg, #e5a300, #f2ad06);
  color: #07172d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(218, 160, 23, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
}

.button-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button-small {
  min-height: 45px;
  padding-inline: 23px;
  font-size: 11px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 685px;
  padding-top: 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 81% 49%, rgba(21, 75, 112, 0.4), transparent 30%),
    linear-gradient(115deg, #071a30 0%, #081e35 56%, #071a30 100%);
  color: #fff;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(121deg, transparent 0 45%, rgba(15, 46, 77, 0.72) 45% 53%, transparent 53%),
    linear-gradient(121deg, transparent 0 54%, rgba(10, 88, 91, 0.18) 54% 55%, transparent 55%);
}

.hero::after {
  width: 710px;
  height: 710px;
  right: 40px;
  top: 6px;
  border: 1px solid rgba(129, 177, 208, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 68px rgba(8, 29, 51, 0.06),
    inset 0 0 0 130px rgba(8, 29, 51, 0.05);
}

.hero-rings {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 110px;
  top: 110px;
  z-index: 1;
  border: 1px solid rgba(218, 160, 23, 0.08);
  border-radius: 50%;
  opacity: 0.65;
}

.hero-rings::before,
.hero-rings::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(108, 160, 196, 0.1);
  border-radius: 50%;
}

.hero-rings::before {
  inset: 65px;
}

.hero-rings::after {
  inset: 135px;
}

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

.hero-copy {
  position: relative;
  width: 59%;
  padding: 48px 0 44px;
  z-index: 4;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 21px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(43px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-home h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 3.5vw, 52px);
  font-weight: 600;
  line-height: 1.14;
}

.hero-home .hero-copy {
  width: 64%;
}

.hero h1 em {
  color: var(--gold-bright);
  font-style: normal;
}

.hero-intro {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.55;
}

.enterprise-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.ee-mark {
  position: relative;
  width: 82px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  border: 3px solid var(--gold-bright);
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 33px;
  line-height: 1;
}

.ee-mark::before,
.ee-mark::after {
  position: absolute;
  inset: 8px -1px;
  content: "";
  border-left: 3px solid var(--gold-bright);
  border-radius: 50%;
}

.ee-mark::after {
  border-left: 0;
  border-right: 3px solid var(--gold-bright);
}

.enterprise-title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.enterprise-tagline {
  display: block;
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: 14px;
  font-weight: 600;
}

.hero-signature {
  margin-top: 20px;
  font-size: 17px;
}

.signature {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

.role-line {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 26px;
}

.portrait-wrap {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 54%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 2;
}

.portrait-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--navy) 0%, rgba(8, 29, 51, 0.85) 5%, transparent 30%);
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.9) contrast(1.03);
}

.hero-executive .hero-copy,
.hero-capability .hero-copy,
.hero-connect .hero-copy {
  width: 63%;
}

.hero-insights .hero-copy {
  width: 55%;
}

.hero-capability h1 {
  font-size: clamp(38px, 3.3vw, 54px);
  line-height: 1.12;
}

.hero-connect h1 {
  font-size: clamp(48px, 4.6vw, 70px);
}

.hero-insights h1 {
  font-size: clamp(48px, 4.7vw, 72px);
}

.section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.section + .section {
  margin-top: 0;
}

.section-heading {
  min-height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 17px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}

.section-action {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  font-size: 17px;
}

.logo-strip {
  padding-block: 24px 29px;
}

.logo-strip p {
  margin: 0 0 17px;
  font-size: 14px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 36px;
  text-align: center;
}

.logos span {
  color: #12355b;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.logos .xerox {
  color: #d31324;
  font-size: 38px;
  font-weight: 500;
}

.logos .pfizer {
  color: #1763a5;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-style: italic;
}

.logos .mayo {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 0.86;
}

.logos .jpm {
  font-size: 25px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0;
  padding: 30px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(8, 29, 51, 0.04);
}

.impact-strip article {
  min-width: 0;
  padding: 3px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.impact-strip article:last-child {
  border-right: 0;
}

.metric-icon {
  display: block;
  height: 42px;
  color: var(--teal);
  font-size: 37px;
  line-height: 1;
}

.impact-strip strong {
  display: block;
  margin-top: 8px;
  font-family: "Roboto Mono", monospace;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1;
}

.impact-strip p {
  max-width: 150px;
  margin: 9px auto 0;
  font-size: 12px;
  line-height: 1.5;
}

.icon-grid {
  display: grid;
}

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

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

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

.icon-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 22px 17px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.icon-card:last-child {
  border-right: 0;
}

.line-icon {
  width: 56px;
  height: 56px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  border: 1.5px solid rgba(218, 160, 23, 0.38);
  border-radius: 50%;
  font-family: "Roboto Mono", monospace;
  font-size: 28px;
  line-height: 1;
}

.icon-card h3 {
  margin: 12px 0 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.icon-card p {
  margin: 0;
  color: #172536;
  font-size: 11px;
  line-height: 1.55;
}

.icon-card .text-link {
  margin-top: 11px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.08fr 1fr;
  gap: 17px;
}

.signature-card,
.series-grid article {
  min-height: 190px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 28px;
  border-radius: 6px;
  color: #fff;
  box-shadow: var(--shadow);
}

.signature-navy {
  background: linear-gradient(135deg, #0c2843, #05182b);
  color: #fff;
}

.signature-teal {
  background: linear-gradient(135deg, #0d555c, #07383f);
  color: #fff;
}

.signature-gold {
  background: linear-gradient(135deg, #d99100, #eca900);
  color: #fff;
}

.signature-symbol,
.series-icon {
  width: 78px;
  height: 78px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold-bright);
  border: 2px solid var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 31px;
}

.target-symbol {
  color: #fff;
  border-color: #fff;
  border-radius: 50%;
}

.signature-gold .signature-symbol,
.signature-gold .series-icon {
  color: #fff;
  border-color: #fff;
}

.signature-card h3,
.series-grid h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.3;
}

.signature-card p,
.series-grid p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.55;
}

.signature-card a,
.series-grid a {
  font-size: 12px;
  font-weight: 700;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.evidence-grid article {
  padding: 17px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.evidence-grid strong {
  display: block;
  min-height: 45px;
  color: #153966;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.05;
}

.evidence-grid strong b {
  font-family: "Roboto Mono", monospace;
  font-size: 24px;
}

.evidence-grid p,
.evidence-grid span {
  font-size: 10px;
  line-height: 1.45;
}

.evidence-grid p {
  min-height: 44px;
  margin: 10px 0 4px;
}

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

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

.media-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

.media-card-body {
  min-height: 205px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.media-grid-compact .media-card {
  display: grid;
  grid-template-columns: 34% 1fr;
}

.media-grid-compact .media-card img {
  height: 100%;
  aspect-ratio: auto;
}

.media-grid-compact .media-card-body {
  min-height: 160px;
}

.card-meta {
  display: block;
  margin-bottom: 9px;
  color: #27374a;
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.media-card h3 {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.35;
}

.media-card p {
  margin: 0 0 12px;
  color: #334153;
  font-size: 10px;
  line-height: 1.52;
}

.cta-strip {
  min-height: 128px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  margin: 25px 0 0;
  padding: 22px 30px;
  border-radius: 6px 6px 0 0;
  background:
    radial-gradient(circle at 20% 180%, rgba(20, 95, 110, 0.3), transparent 38%),
    linear-gradient(120deg, #071a30, #092440);
  color: #fff;
}

.cta-icon {
  color: var(--gold);
  font-size: 58px;
  line-height: 1;
}

.cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-copy p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.cta-actions {
  min-width: 312px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-actions .button {
  min-height: 39px;
}

.site-footer {
  padding: 28px 0 16px;
  background: #06182b;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.75fr 1.2fr;
  gap: 55px;
}

.footer-brand p {
  max-width: 360px;
  margin: 14px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 11px;
}

.brand-compact .brand-mark {
  width: 41px;
  height: 41px;
}

.brand-compact .brand-name {
  font-size: 14px;
}

.footer-grid h3 {
  margin: 1px 0 8px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > p {
  display: block;
  margin: 1px 0;
  font-size: 10px;
  line-height: 1.45;
}

.linkedin-link {
  width: 21px;
  height: 21px;
  display: grid !important;
  margin-top: 7px !important;
  place-items: center;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 9px;
}

.footer-bottom i {
  margin: 0 9px;
  opacity: 0.5;
}

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

.journey-grid article {
  position: relative;
  min-width: 0;
  padding: 16px 34px 10px;
  text-align: center;
}

.journey-line {
  position: relative;
  z-index: 1;
  display: block;
}

.journey-line::before,
.journey-line::after {
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 58%;
  height: 2px;
  background: var(--navy);
  content: "";
}

.journey-line::before {
  right: 50%;
}

.journey-line::after {
  left: 50%;
}

.journey-grid article:first-child .journey-line::before,
.journey-grid article:last-child .journey-line::after {
  display: none;
}

.journey-line .line-icon {
  margin: auto;
  background: #fff;
}

.journey-number {
  position: absolute;
  top: 23px;
  left: calc(50% + 39px);
  color: var(--gold);
  font-family: "Roboto Mono", monospace;
  font-size: 9px;
}

.journey-grid h3 {
  min-height: 35px;
  margin: 13px 0 6px;
  font-size: 12px;
  line-height: 1.3;
}

.journey-grid p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}

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

.industry-grid article {
  text-align: center;
}

.industry-grid .line-icon {
  width: 34px;
  height: 34px;
  margin: auto;
  border: 0;
  font-size: 20px;
}

.industry-grid span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.25;
}

.section-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 10px;
}

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

.education-grid article {
  min-height: 225px;
  padding: 12px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.education-grid .line-icon {
  margin: 0 auto 10px;
}

.education-grid h3 {
  margin: 0 0 5px;
  font-size: 12px;
}

.education-grid p,
.education-grid span {
  display: block;
  margin: 4px 0;
  font-size: 10px;
  line-height: 1.45;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.75fr 1fr 1.05fr;
  align-items: stretch;
}

.philosophy-grid > article,
.philosophy-grid > blockquote {
  min-height: 200px;
  margin: 0;
  padding: 18px 24px;
  text-align: center;
}

.philosophy-grid > article .line-icon {
  margin: 0 auto;
}

.philosophy-grid h3 {
  margin: 10px 0 7px;
  font-size: 10px;
}

.philosophy-grid p {
  margin: 0;
  font-size: 10px;
}

.ee-philosophy {
  display: grid;
  place-items: center;
}

.ee-large {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 3px dashed var(--navy);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 36px;
}

.philosophy-grid blockquote {
  background: linear-gradient(135deg, #fbf5e7, #f7f0e4);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
}

.philosophy-grid cite,
.quote-grid cite,
.newsletter-section cite {
  display: block;
  margin-top: 13px;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-style: italic;
}

.framework-box {
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: 7px;
}

.framework-box > h3 {
  margin: 0;
  padding: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 25px;
  align-items: center;
  padding: 30px 38px 24px;
}

.pillar-grid > article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.pillar-label,
.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
}

.gold {
  background: var(--gold-bright);
  color: var(--navy);
}

.teal {
  background: var(--teal);
}

.pillar-grid h4 {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
}

.pillar-grid ul {
  margin: 0;
  padding-left: 16px;
  font-size: 11px;
  line-height: 1.65;
}

.framework-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.framework-seal span {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 3px dashed var(--navy);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 40px;
}

.framework-seal b {
  margin-top: 8px;
  font-size: 12px;
}

.framework-seal small {
  font-size: 9px;
}

.boxed-grid {
  gap: 10px;
}

.boxed-grid .icon-card {
  min-height: 220px;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.boxed-grid .icon-card .line-icon {
  color: var(--gold);
}

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

.work-grid article {
  position: relative;
  padding: 15px 24px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.work-grid article::before {
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  z-index: -1;
  height: 2px;
  background: var(--line);
  content: "";
}

.work-grid .step-number {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
}

.work-grid .line-icon {
  width: 46px;
  height: 46px;
  margin: auto;
  border: 0;
}

.work-grid h3 {
  margin: 7px 0;
  font-size: 11px;
}

.work-grid p {
  margin: 0;
  font-size: 10px;
  line-height: 1.55;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 17px;
}

.quote-grid blockquote,
.quote-cta {
  min-height: 170px;
  margin: 0;
  padding: 24px 28px;
  border-radius: 6px;
  background: #f7f5f1;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  line-height: 1.55;
}

.quote-dark {
  background: var(--navy) !important;
  color: #fff;
}

.quote-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #fbf6e8, #f6e6bf);
  text-align: center;
}

.quote-cta h3 {
  margin: 0 0 17px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
}

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

.value-journey article {
  position: relative;
  padding: 6px 35px;
  text-align: center;
}

.value-journey .line-icon {
  margin: auto;
}

.value-journey h3 {
  margin: 12px 0 4px;
  font-size: 13px;
}

.value-journey p {
  margin: 0;
  font-size: 11px;
  line-height: 1.35;
}

.journey-arrow {
  position: absolute;
  top: 20px;
  right: -10px;
  font-size: 28px;
}

.journey-caption {
  margin: 16px 0 0;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  text-align: center;
}

.featured-insight {
  display: grid;
  grid-template-columns: 41% 1fr;
  gap: 40px;
  align-items: center;
}

.featured-insight > img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.featured-insight h2 {
  margin: 0 0 11px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.17;
}

.featured-insight p {
  margin: 0 0 15px;
  font-size: 13px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.tag-row span {
  padding: 4px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
}

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

.series-grid article {
  min-height: 140px;
  padding: 23px;
}

.series-icon {
  width: 58px;
  height: 58px;
  font-size: 23px;
}

.formats-grid .icon-card {
  padding-inline: 16px;
}

.formats-grid .line-icon {
  border: 0;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 6px;
}

.newsletter {
  display: flex;
  gap: 24px;
  padding: 28px 33px;
  background: var(--navy);
  color: #fff;
}

.newsletter-icon {
  color: var(--gold);
  font-size: 42px;
}

.newsletter h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 500;
}

.newsletter p {
  margin: 3px 0 17px;
  font-size: 11px;
}

.newsletter form {
  display: flex;
  gap: 9px;
}

.newsletter input {
  width: 270px;
  height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 3px;
}

.newsletter button,
.contact-form > button {
  min-width: 120px;
  border: 0;
  border-radius: 3px;
  background: var(--gold-bright);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.newsletter-section > blockquote {
  margin: 0;
  padding: 28px 34px;
  background: linear-gradient(135deg, #fbf7ed, #f3ecdf);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  line-height: 1.55;
}

.newsletter-section > blockquote > span {
  display: block;
  color: var(--navy);
  font-size: 42px;
  line-height: 0.5;
}

.newsletter-section cite small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-style: normal;
}

.conversation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: start;
}

.conversation-copy > p {
  margin: 0 0 19px;
  font-size: 13px;
}

.conversation-list {
  display: grid;
  gap: 15px;
}

.conversation-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 13px;
  align-items: start;
}

.conversation-list .line-icon {
  width: 45px;
  height: 45px;
  border: 0;
  font-size: 24px;
}

.conversation-list h3 {
  margin: 0 0 2px;
  font-size: 12px;
}

.conversation-list p {
  margin: 0;
  font-size: 10px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 23px 27px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 3px;
  font-size: 15px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 43px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10, 88, 91, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form > button {
  height: 44px;
}

.contact-form small {
  text-align: center;
  font-size: 9px;
}

.engagement-grid {
  gap: 12px;
}

.engagement-grid .icon-card {
  min-height: 270px;
  align-items: flex-start;
  padding: 20px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.engagement-grid .line-icon {
  border: 0;
}

.engagement-grid h3 {
  font-size: 12px;
}

.engagement-grid p {
  white-space: pre-line;
}

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

.resource-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.resource-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  object-position: top;
}

.resource-card h3 {
  min-height: 47px;
  margin: 11px 12px 5px;
  font-size: 11px;
  line-height: 1.4;
}

.resource-card p {
  min-height: 68px;
  margin: 0 12px 8px;
  font-size: 10px;
}

.resource-card a,
.resource-library a {
  margin: auto 12px 12px;
  font-size: 10px;
  font-weight: 700;
}

.resource-library {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.resource-library .line-icon {
  margin: 0 auto 13px;
  color: var(--gold);
  border: 0;
}

.resource-library h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.resource-library p {
  margin: 0 0 20px;
  font-size: 10px;
}

.resource-library a {
  color: #fff;
}

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

.connect-grid article {
  min-height: 220px;
  padding: 22px 35px;
  text-align: center;
  border: 1px solid var(--line);
  border-right: 0;
}

.connect-grid article:first-child {
  border-radius: 6px 0 0 6px;
}

.connect-grid article:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 6px 6px 0;
}

.connect-grid .line-icon {
  margin: 0 auto 10px;
  color: #fff;
  background: var(--navy);
  border: 0;
}

.connect-grid h3 {
  margin: 0 0 12px;
  font-size: 11px;
}

.connect-grid p,
.connect-grid a {
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
}

.connect-grid a {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 36px, 1000px);
  }

  .primary-nav {
    gap: 20px;
  }

  .hero {
    min-height: 630px;
  }

  .hero-inner {
    min-height: 544px;
  }

  .hero-copy {
    width: 63%;
  }

  .portrait-wrap {
    right: -100px;
    width: 59%;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .enterprise-title {
    font-size: 23px;
  }

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

  .six-columns .icon-card:nth-child(3) {
    border-right: 0;
  }

  .six-columns .icon-card:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .industry-grid {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 18px;
  }

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

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

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

  .site-header {
    position: absolute;
  }

  .header-inner {
    height: 75px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

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

  .menu-button {
    display: block;
    z-index: 3;
  }

  .primary-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 5px;
    background: #081d33;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav > a:not(.button) {
    padding: 12px;
  }

  .primary-nav > a:not(.button)::after {
    right: auto;
    bottom: 6px;
    left: 12px;
    width: 35px;
  }

  .hero {
    min-height: 0;
    padding-top: 75px;
  }

  .hero::after {
    width: 440px;
    height: 440px;
    right: -210px;
    top: 100px;
  }

  .hero-inner {
    min-height: 0;
    display: block;
    padding-top: 20px;
  }

  .hero-copy,
  .hero-executive .hero-copy,
  .hero-capability .hero-copy,
  .hero-connect .hero-copy,
  .hero-insights .hero-copy {
    width: 100%;
    padding: 20px 0 0;
  }

  .hero h1,
  .hero-home h1,
  .hero-capability h1,
  .hero-connect h1,
  .hero-insights h1 {
    max-width: 540px;
    font-size: clamp(36px, 10vw, 52px);
    line-height: 1.08;
  }

  .hero-intro {
    max-width: 540px;
    font-size: 14px;
  }

  .enterprise-brand {
    margin-top: 20px;
  }

  .ee-mark {
    width: 68px;
    height: 58px;
    font-size: 27px;
  }

  .enterprise-title {
    font-size: 21px;
  }

  .enterprise-tagline {
    font-size: 11px;
  }

  .hero-signature {
    font-size: 13px;
  }

  .signature {
    font-size: 20px;
  }

  .portrait-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 32px);
    height: 400px;
    margin: 24px -16px 0;
  }

  .portrait-wrap::before {
    background:
      linear-gradient(180deg, var(--navy), transparent 20%),
      linear-gradient(90deg, var(--navy) 0%, transparent 22%, transparent 78%, var(--navy) 100%);
  }

  .portrait-wrap img {
    object-position: 58% 31%;
  }

  .hero-home .portrait-wrap {
    display: none;
  }

  .hero-home .hero-copy {
    padding-bottom: 34px;
  }

  .hero-home .hero-actions {
    margin-bottom: 0;
  }

  .logo-strip {
    padding-top: 24px;
    background: var(--navy);
    color: #fff;
  }

  .logo-strip p {
    text-align: center;
  }

  .logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 18px;
  }

  .logos span {
    color: #fff;
  }

  .logos .xerox {
    color: #fff;
  }

  .logos .jpm {
    grid-column: 1 / -1;
  }

  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }

  .impact-strip article {
    padding: 20px 13px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .impact-strip article:nth-child(2n) {
    border-right: 0;
  }

  .impact-strip article:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

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

  .icon-card,
  .six-columns .icon-card:nth-child(3) {
    min-height: 210px;
    padding: 20px 17px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .icon-card:nth-child(2n) {
    border-right: 0;
  }

  .signature-grid,
  .evidence-grid,
  .media-grid,
  .media-grid-compact,
  .journey-grid,
  .education-grid,
  .philosophy-grid,
  .series-grid,
  .newsletter-section,
  .conversation-section,
  .resources-grid,
  .connect-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .media-grid-compact .media-card {
    grid-template-columns: 37% 1fr;
  }

  .evidence-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-grid article:last-child {
    border-bottom: 0;
  }

  .journey-grid article {
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 17px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .journey-line {
    grid-row: 1 / span 3;
  }

  .journey-line::before,
  .journey-line::after,
  .journey-number {
    display: none;
  }

  .journey-grid h3 {
    min-height: 0;
    margin: 3px 0;
  }

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

  .education-grid article {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .philosophy-grid > article,
  .philosophy-grid > blockquote {
    min-height: 0;
  }

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

  .pillar-grid > article {
    justify-content: center;
  }

  .framework-seal {
    grid-row: 2;
  }

  .work-grid,
  .value-journey {
    grid-template-columns: 1fr;
  }

  .work-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .work-grid article::before {
    display: none;
  }

  .value-journey article {
    display: grid;
    grid-template-columns: 70px 1fr;
    text-align: left;
  }

  .value-journey .line-icon {
    grid-row: 1 / span 2;
  }

  .value-journey h3 {
    margin-top: 4px;
  }

  .journey-arrow {
    right: auto;
    bottom: -21px;
    left: 27px;
    top: auto;
    transform: rotate(90deg);
  }

  .featured-insight {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .featured-insight h2 {
    font-size: 24px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter input {
    width: 100%;
  }

  .newsletter button {
    height: 42px;
  }

  .conversation-section {
    gap: 30px;
  }

  .engagement-grid .icon-card {
    min-height: 260px;
  }

  .resource-card h3,
  .resource-card p {
    min-height: 0;
  }

  .connect-grid article {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0 !important;
  }

  .connect-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .cta-strip {
    grid-template-columns: auto 1fr;
  }

  .cta-actions {
    min-width: 0;
    grid-column: 1 / -1;
  }

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

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 28px);
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .hero h1,
  .hero-home h1,
  .hero-capability h1,
  .hero-connect h1,
  .hero-insights h1 {
    font-size: 35px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-intro br {
    display: none;
  }

  .enterprise-brand {
    gap: 13px;
  }

  .enterprise-title {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .portrait-wrap {
    width: calc(100% + 28px);
    height: 330px;
    margin-inline: -14px;
  }

  .section {
    padding: 23px 0;
  }

  .section-heading {
    display: block;
  }

  .section-action {
    margin-top: 8px;
  }

  .impact-strip,
  .five-columns,
  .six-columns,
  .four-columns,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .impact-strip article,
  .impact-strip article:nth-child(2n),
  .icon-card,
  .icon-card:nth-child(2n),
  .six-columns .icon-card:nth-child(3) {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-strip article:last-child,
  .icon-card:last-child {
    border-bottom: 0;
  }

  .icon-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 62px 1fr;
    text-align: left;
    align-items: center;
  }

  .icon-card .line-icon {
    grid-row: 1 / span 3;
  }

  .icon-card h3 {
    margin-top: 0;
  }

  .signature-card,
  .series-grid article {
    display: block;
  }

  .signature-symbol,
  .series-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
    font-size: 23px;
  }

  .media-grid-compact .media-card {
    grid-template-columns: 1fr;
  }

  .media-grid-compact .media-card img {
    height: auto;
    aspect-ratio: 1.7 / 1;
  }

  .pillar-grid {
    padding: 24px 17px;
  }

  .pillar-grid > article {
    display: block;
  }

  .pillar-label {
    margin-bottom: 12px;
  }

  .featured-insight h2 br {
    display: none;
  }

  .newsletter {
    display: block;
  }

  .newsletter-icon {
    display: block;
    margin-bottom: 10px;
  }

  .conversation-list article {
    grid-template-columns: 42px 1fr;
  }

  .contact-form {
    padding-inline: 17px;
  }

  .engagement-grid .icon-card {
    min-height: 0;
    align-items: center;
  }

  .cta-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon {
    display: none;
  }

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

  .footer-bottom {
    display: grid;
    gap: 7px;
  }
}
