@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-latin.woff2?v=15") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #090d1c;
  --navy: #10234c;
  --body: #414956;
  --muted: #667080;
  --orange: #d83a0a;
  --orange-bright: #ff541d;
  --line: #e5e9ef;
  --soft: #fafbfc;
  --soft-2: #f5f7f9;
  --dark: #071820;
  --container: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 13px;
}
.eyebrow-line::before {
  content: "";
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}
.section h2,
.focus-start-heading h2 {
  color: var(--ink);
  font-size: clamp(2.25rem, 3vw, 2.75rem);
  font-weight: 720;
  line-height: 1.025;
  letter-spacing: -.045em;
}
.section-lede {
  color: var(--body);
  font-size: 17px;
  line-height: 1.52;
}
em { color: var(--orange); font-style: normal; }

.button {
  min-height: 48px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, #d83a0a, #c93408);
  border: 0;
  border-radius: 3px;
  box-shadow: 0 12px 24px rgba(243, 75, 23, .22);
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(243, 75, 23, .28);
  outline: none;
}
.button-small { min-height: 44px; padding: 11px 18px; font-size: 12.5px; }
.button-light {
  color: var(--orange);
  background: #fff;
  box-shadow: 0 11px 26px rgba(35, 20, 10, .18);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 720;
}
.text-link .link-label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.text-link > span:last-child { color: var(--orange); font-size: 20px; text-decoration: none; }
.text-link-orange { color: var(--orange); }

/* Balanced shared header */
.site-header {
  position: relative;
  z-index: 50;
  height: 88px;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0 56%, rgba(255,255,255,.93) 75%, rgba(255,255,255,.97));
  border-bottom: 1px solid rgba(218, 224, 232, .72);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
}
.brand { width: 188px; justify-self: start; line-height: 0; }
.brand img { width: 100%; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.1vw, 34px);
}
.primary-nav a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--orange); outline: none; }
.primary-nav a:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.header-cta {
  width: auto;
  min-width: 176px;
  justify-self: end;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(243, 75, 23, .18);
}
.menu-toggle { display: none; }
.primary-nav .nav-cta-mobile { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 626px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 42px -42px rgba(10, 24, 43, .42);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.96));
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(62vw, 1190px);
  overflow: hidden;
}
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.97) 10%, rgba(255,255,255,.63) 27%, rgba(255,255,255,.10) 48%, transparent 62%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 626px;
  padding-top: 62px;
}
.hero-copy { width: 54%; max-width: 690px; }
.hero h1 {
  max-width: 670px;
  color: var(--ink);
  font-size: clamp(4rem, 5vw, 4.6rem);
  font-weight: 735;
  line-height: .975;
  letter-spacing: -.055em;
}
.hero-intro {
  max-width: 610px;
  margin: 20px 0 26px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.48;
}
.hero-actions { display: flex; align-items: center; gap: 32px; }
.relevance-card {
  position: absolute;
  z-index: 4;
  top: 60px;
  left: 49%;
  width: 375px;
  min-height: 230px;
  padding: 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(209,217,228,.88);
  border-radius: 3px;
  box-shadow: 0 14px 34px rgba(10,29,52,.14);
  backdrop-filter: blur(7px);
}
.relevance-card h2 { font-size: 20px; font-weight: 720; line-height: 1.04; letter-spacing: -.035em; }
.relevance-body { margin-top: 10px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 9px; }
.relevance-chart { width: 100%; overflow: visible; }
.chart-grid path { fill: none; stroke: #cbd6e8; stroke-width: 1; stroke-dasharray: 2 5; }
.chart-layer { fill: url(#chartFill); stroke: var(--orange); stroke-width: 1.4; opacity: .8; }
.layer-3 { opacity: .55; transform: translateY(8px); }
.layer-2 { opacity: .34; transform: translateY(16px); }
.chart-line { fill: none; stroke: var(--orange); stroke-width: 3; }
.relevance-body ul { list-style: none; margin: 0; padding: 0; }
.relevance-body li {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #536174;
  font-size: 12.5px;
  white-space: nowrap;
}
.relevance-body li::before { content: ""; width: 9px; height: 9px; margin-right: 8px; border-radius: 50%; background: var(--orange); }
.outcomes {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 42px;
  width: 650px;
  max-width: 58%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
.outcomes li {
  min-height: 56px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #566276;
  border-left: 1px solid #d4dae4;
  font-size: 13.5px;
  line-height: 1.18;
}
.outcomes li:first-child { padding-left: 0; border-left: 0; }
.outcomes svg { width: 42px; height: 42px; flex: 0 0 auto; fill: none; stroke: var(--orange); stroke-width: 2; }

/* Commercial challenge */
.diagnostic-section {
  padding: 106px 0 110px;
  background:
    radial-gradient(circle at 70% 47%, rgba(218,226,238,.35), transparent 31%),
    var(--soft);
}
.diagnostic-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(640px, 1.18fr);
  align-items: center;
  gap: clamp(80px, 7vw, 124px);
}
.diagnostic-copy { max-width: 610px; }
.diagnostic-copy .section-lede { max-width: 590px; margin-top: 19px; }
.diagnostic-copy .text-link { margin-top: 25px; }
.diagnostic-visual {
  display: grid;
  grid-template-columns: minmax(300px, 390px) 1fr;
  align-items: center;
  gap: 34px;
}
.diagnostic-visual figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 38px rgba(18, 32, 49, .11);
}
.diagnostic-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.06); }
.diagnostic-visual ul { margin: 0; padding: 0; list-style: none; }
.diagnostic-visual li {
  min-height: 64px;
  padding: 11px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  color: #202735;
  border-bottom: 1px solid #d5dbe4;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.32;
}
.diagnostic-visual li:first-child { border-top: 1px solid #d5dbe4; }
.diagnostic-visual li span { color: var(--orange); font-size: 11px; font-weight: 820; letter-spacing: .1em; }

/* Exact editorial market geometry from the approved market reference */
.markets-section {
  padding: 94px 0 104px;
  background: #fff;
}
.markets-section .section-lede { margin-top: 7px; }
.market-editorial {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: stretch;
  gap: clamp(28px, 2.4vw, 40px);
}
.market-feature,
.market-route { min-width: 0; color: var(--ink); transition: transform 180ms ease; }
.market-feature:hover,
.market-feature:focus-visible,
.market-route:hover,
.market-route:focus-visible { transform: translateY(-2px); }
.market-feature:focus-visible,
.market-route:focus-visible { outline: 3px solid rgba(243,75,23,.38); outline-offset: 5px; }
.market-feature-image,
.market-route-image { display: block; overflow: hidden; background: #e8ebef; }
.market-feature-image { aspect-ratio: 1.17 / 1; }
.market-feature-image img,
.market-route-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.market-feature:hover img,
.market-route:hover img { transform: scale(1.018); }
.market-feature > strong { display: block; margin-top: 16px; color: #121827; font-size: 20px; font-weight: 700; line-height: 1.15; }
.market-feature > small { display: block; max-width: 94%; margin-top: 6px; color: var(--body); font-size: 14px; line-height: 1.4; }
.market-link,
.market-route-copy i { display: inline-flex; margin-top: 9px; color: var(--orange); font-size: 13px; font-weight: 720; font-style: normal; }
.market-link { align-items: center; gap: 8px; }
.market-link i { font-style: normal; font-size: 18px; }
.market-routes { display: grid; grid-template-rows: repeat(3, 1fr); gap: 0; }
.market-route {
  padding: 16px 0;
  display: grid;
  grid-template-columns: minmax(0, 51%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.25vw, 22px);
  border-bottom: 1px solid var(--line);
}
.market-route:first-child { padding-top: 0; border-top: 1px solid var(--line); }
.market-route:last-child { padding-bottom: 0; }
.market-route-image { aspect-ratio: 1.56 / 1; }
.market-route-copy strong { display: block; color: #151b29; font-size: 16px; font-weight: 700; line-height: 1.16; }
.market-route-copy small { display: block; margin-top: 5px; color: var(--body); font-size: 13px; line-height: 1.34; }

/* Premium dark system: approved artwork as the background language, live HTML above */
.system-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  color: #fff;
  background: #071820 url("./graphics/system-dark-texture-v13.png?v=13") center / cover no-repeat;
}
.system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 72%, rgba(255,76,18,.11), transparent 16%),
    radial-gradient(circle at 28% 72%, rgba(255,76,18,.08), transparent 15%),
    radial-gradient(circle at 50% 72%, rgba(255,76,18,.09), transparent 16%),
    radial-gradient(circle at 72% 72%, rgba(255,76,18,.08), transparent 15%),
    radial-gradient(circle at 92% 72%, rgba(255,76,18,.11), transparent 16%),
    linear-gradient(90deg, rgba(4,16,23,.18), transparent 35%, transparent 65%, rgba(4,16,23,.18));
  pointer-events: none;
}
.system-section > .container { position: relative; z-index: 1; }
.system-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 70px; }
.system-heading > div { max-width: 1180px; }
.system-heading h2 {
  max-width: 1250px;
  color: #fff;
  font-size: clamp(2.25rem, 3.15vw, 3rem);
  font-weight: 525;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.system-heading > div > p:not(.eyebrow) { margin-top: 12px; color: #d9e2e6; font-size: 16px; }
.decision-loop { position: relative; margin-top: 46px; padding: 8px 30px 37px; }
.decision-loop::before,
.decision-loop::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  height: 100px;
  border: 2px solid rgba(255,80,22,.9);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}
.decision-loop::before { top: -8px; border-bottom-color: transparent; }
.decision-loop::after { bottom: 0; border-top-color: transparent; }
.decision-stages {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 58px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.decision-stages li { position: relative; min-width: 0; text-align: center; }
.decision-stages li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 32px;
  right: -42px;
  color: var(--orange-bright);
  font-size: 28px;
  font-weight: 300;
}
.system-icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 11px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange-bright);
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(255,80,22,.5), 0 0 34px rgba(255,80,22,.3), 0 0 64px rgba(255,80,22,.13);
}
.system-icon svg { width: 42px; height: 42px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.decision-stages strong { display: block; color: #fff; font-size: 15px; font-weight: 570; line-height: 1.14; }
.decision-stages small { display: block; max-width: 170px; margin: 6px auto 0; color: #b9c7cd; font-size: 12px; line-height: 1.25; }
.loop-caption {
  position: relative;
  z-index: 3;
  width: max-content;
  margin: 23px auto -18px;
  padding: 0 16px;
  color: var(--orange-bright);
  background: #081a22;
  font-size: 12px;
  font-weight: 730;
}

/* Evidence */
.evidence-section {
  padding: 108px 0 112px;
  background: #fff;
}
.evidence-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: clamp(72px, 7vw, 120px);
}
.evidence-section .section-lede { max-width: 570px; margin: 19px 0 18px; }
.evidence-section .eyebrow { min-height: 2px; }
.claim-art { display: flex; align-items: center; justify-content: flex-end; }
.claim-diagram { position: relative; width: min(100%, 660px); }
.claim-diagram img { width: 100%; height: auto; filter: drop-shadow(0 20px 24px rgba(20,33,52,.09)); }
.claim-labels {
  position: absolute;
  inset: 10% 0 7% 63%;
  margin: 0;
  padding: 0 0 0 28px;
  display: grid;
  grid-template-rows: repeat(4,1fr);
  list-style: none;
}
.claim-labels li {
  position: relative;
  display: flex;
  align-items: center;
  color: #36445a;
  font-size: 15px;
  font-weight: 550;
  white-space: nowrap;
}

/* Focused start */
.focus-start-section {
  padding: 88px 0 92px;
  background: var(--soft-2);
  border-top: 1px solid var(--line);
}
.focus-start-inner {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(600px, 1.55fr) minmax(210px, .55fr);
  align-items: center;
  gap: clamp(42px, 4vw, 72px);
}
.focus-start-heading h2 { max-width: 460px; }
.focus-start-heading > p:not(.eyebrow) { max-width: 470px; margin-top: 15px; color: var(--body); font-size: 15px; line-height: 1.48; }
.focus-start-stages {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.focus-start-stages li { position: relative; min-width: 0; }
.focus-start-stages li:not(:last-child)::after { content: "→"; position: absolute; top: 15px; right: -20px; color: var(--orange); font-size: 20px; }
.focus-step-mark { min-height: 40px; display: flex; align-items: center; gap: 10px; }
.focus-step-mark b {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
}
.focus-step-mark svg { width: 27px; height: 27px; fill: none; stroke: #202c3f; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.focus-start-stages strong { display: block; margin-top: 8px; color: #172033; font-size: 14px; font-weight: 700; line-height: 1.17; }
.focus-start-stages small { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.3; }
.focus-start-cta { justify-self: end; min-width: 210px; }

/* Spacious reusable CTA */
.cta-block { position: relative; overflow: hidden; }
.cta-block::before { content: ""; position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; }
.cta-block-orange { min-height: 450px; color: #fff; background: #e7430d; }
.cta-block-orange::before { background-image: url("./graphics/cta-mountain-orange-v1.webp?v=13"); background-position: center 54%; }
.cta-block-orange::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(154,38,4,.62) 0%, rgba(205,49,5,.18) 48%, rgba(251,87,20,.03) 72%); }
.cta-growth-layout {
  position: relative;
  z-index: 2;
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 70px;
  padding: 96px 0 100px;
}
.cta-growth-layout > div { max-width: 720px; }
.cta-growth-layout .eyebrow { color: #fff; }
.cta-growth-layout .eyebrow-line::before { background: #fff; }
.cta-growth-layout h2 { max-width: 700px; color: #fff; font-size: clamp(3rem, 4.7vw, 4.5rem); font-weight: 650; line-height: .98; letter-spacing: -.05em; }
.cta-growth-layout > div > p:not(.eyebrow) { max-width: 650px; margin: 18px 0 25px; color: rgba(255,255,255,.95); font-size: 17px; }
.cta-mantra { padding-left: 22px; color: #fff; border-left: 3px solid rgba(255,255,255,.92); font-size: 14px; font-weight: 800; line-height: 1.2; letter-spacing: .12em; text-transform: uppercase; }

/* Footer */
.site-footer { min-height: 400px; color: #d8e3e8; background: radial-gradient(circle at 8% 13%, rgba(30,82,100,.28), transparent 28%), var(--dark); }
.footer-grid {
  min-height: 305px;
  padding: 62px 0 48px;
  display: grid;
  grid-template-columns: 1.25fr 1.12fr 1.55fr .62fr .9fr;
  gap: 48px;
}
.footer-brand img { width: 198px; height: auto; }
.footer-brand p { margin-top: 16px; color: #fff; font-size: 17px; line-height: 1.38; }
.footer-grid h2 { margin: 8px 0 19px; color: #f5f8fa; font-size: 12.5px; font-weight: 800; line-height: 1; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { display: block; margin-bottom: 10px; color: #d8e3e8; font-size: 14px; line-height: 1.44; }
.footer-grid a:hover,
.footer-grid a:focus-visible,
.legal-row a:hover,
.legal-row a:focus-visible { color: var(--orange-bright); outline: none; }
.linkedin-link { display: flex !important; align-items: center; gap: 9px; }
.linkedin-link span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--dark); background: #fff; border-radius: 2px; font-size: 13px; font-weight: 800; }
.legal-row { min-height: 86px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: #9fb0b8; border-top: 1px solid rgba(217,231,237,.26); font-size: 13px; }
.legal-row div { display: flex; align-items: center; gap: 14px; }
.legal-row i { width: 1px; height: 17px; background: rgba(217,231,237,.45); }

.back-to-top {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(7,24,32,.94);
  border: 1px solid rgba(255,91,36,.75);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(8,20,27,.28), 0 0 0 4px rgba(255,83,24,.07);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.9);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top.is-visible.is-over-footer { opacity: 0; pointer-events: none; transform: translateY(12px) scale(.9); }
.back-to-top:hover,
.back-to-top:focus-visible { background: var(--orange); outline: none; }
.back-to-top svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.back-to-top span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }

@media (max-width: 1280px) {
  .container { width: min(calc(100% - 48px), 1180px); }
  .header-inner { grid-template-columns: minmax(210px,1fr) auto minmax(210px,1fr); }
  .brand { width: 174px; }
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: 12px; }
  .header-cta { min-width: 172px; padding-inline: 14px; font-size: 11.5px; }
  .hero h1 { font-size: 61px; }
  .relevance-card { left: 47%; width: 340px; }
  .diagnostic-grid { grid-template-columns: .8fr 1.2fr; gap: 60px; }
  .diagnostic-visual { grid-template-columns: 330px 1fr; gap: 26px; }
  .focus-start-inner { grid-template-columns: .85fr 1.5fr; }
  .focus-start-cta { grid-column: 2; justify-self: end; }
  .footer-grid { gap: 32px; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 40px), 900px); }
  .site-header { height: 76px; }
  .header-inner { display: flex; justify-content: space-between; }
  .brand { width: 168px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
  }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--navy); }
  .primary-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(12,27,44,.14);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 4px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .header-cta { display: none; }
  .hero { min-height: 760px; }
  .hero-photo { inset: auto 0 0; width: 100%; height: 53%; }
  .hero-photo::before { background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.83) 18%, transparent 55%); }
  .hero-inner { min-height: 760px; padding-top: 46px; }
  .hero-copy { width: 100%; max-width: 630px; }
  .hero h1 { font-size: clamp(3.2rem, 8vw, 4rem); }
  .relevance-card { top: 315px; left: auto; right: 0; width: 310px; }
  .outcomes { bottom: 24px; max-width: 100%; width: 100%; padding: 14px 18px; background: rgba(255,255,255,.9); }
  .diagnostic-section,
  .markets-section,
  .evidence-section { padding: 82px 0 86px; }
  .diagnostic-grid,
  .evidence-grid { grid-template-columns: 1fr; gap: 52px; }
  .diagnostic-copy { max-width: 690px; }
  .diagnostic-visual { grid-template-columns: minmax(280px, .9fr) 1.1fr; }
  .market-editorial { grid-template-columns: 1fr; gap: 42px; }
  .market-feature-image { aspect-ratio: 1.55 / 1; }
  .decision-stages { gap: 28px; }
  .decision-stages li:not(:last-child)::after { right: -23px; }
  .decision-loop { padding-inline: 0; }
  .system-icon { width: 70px; height: 70px; }
  .system-icon svg { width: 36px; height: 36px; }
  .decision-stages strong { font-size: 13px; }
  .decision-stages small { display: none; }
  .focus-start-section { padding: 78px 0 82px; }
  .focus-start-inner { grid-template-columns: 1fr; gap: 46px; }
  .focus-start-cta { grid-column: auto; justify-self: start; }
  .cta-block-orange,
  .cta-growth-layout { min-height: 410px; }
  .cta-growth-layout { padding: 78px 0 82px; }
  .cta-growth-layout h2 { font-size: 55px; }
  .footer-grid { grid-template-columns: 1.15fr 1fr 1fr; row-gap: 42px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 32px), 620px); }
  .eyebrow { font-size: 10.5px; }
  .section h2,
  .focus-start-heading h2 { font-size: 35px; }
  .section-lede { font-size: 16px; }
  .hero { min-height: 840px; }
  .hero-inner { min-height: 840px; padding-top: 36px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 3.75rem); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .relevance-card { top: 392px; right: auto; left: 0; width: min(100%, 310px); }
  .outcomes { display: none; }
  .hero-photo { height: 41%; }
  .diagnostic-section,
  .markets-section,
  .evidence-section { padding: 70px 0 74px; }
  .diagnostic-visual { grid-template-columns: 1fr; gap: 26px; }
  .diagnostic-visual figure { max-width: 440px; }
  .market-route { grid-template-columns: 44% 1fr; gap: 16px; }
  .market-route-copy strong { font-size: 15px; }
  .market-route-copy small { font-size: 14px; }
  .system-section { padding: 74px 0 78px; }
  .system-heading h2 { font-size: 36px; }
  .system-heading > div > p:not(.eyebrow) { font-size: 15px; }
  .decision-loop { margin-top: 36px; padding-bottom: 0; }
  .decision-loop::before,
  .decision-loop::after { display: none; }
  .decision-stages { grid-template-columns: 1fr; gap: 24px; }
  .decision-stages li { min-height: 76px; padding-left: 96px; text-align: left; display: flex; flex-direction: column; justify-content: center; }
  .decision-stages li:not(:last-child)::after { content: "↓"; top: auto; right: auto; bottom: -24px; left: 35px; }
  .system-icon { position: absolute; left: 0; top: 0; width: 72px; height: 72px; margin: 0; }
  .decision-stages strong { font-size: 15px; }
  .decision-stages small { display: block; max-width: none; margin: 5px 0 0; }
  .loop-caption { margin: 32px 0 0 96px; background: transparent; }
  .evidence-grid { gap: 32px; }
  .claim-labels { display: none; }
  .focus-start-section { padding: 68px 0 72px; }
  .focus-start-stages { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .focus-start-stages li::after { display: none; }
  .focus-start-cta { width: 100%; }
  .cta-block-orange,
  .cta-growth-layout { min-height: 430px; }
  .cta-block-orange::before { background-position: 62% center; }
  .cta-growth-layout { grid-template-columns: 1fr; align-content: center; padding: 72px 0 76px; }
  .cta-growth-layout h2 { font-size: 46px; }
  .cta-mantra { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 54px 0 44px; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-row { min-height: 102px; align-items: flex-start; justify-content: center; flex-direction: column; padding: 24px 0; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  .brand { width: 155px; }
  .hero h1 { font-size: 47px; }
  .relevance-card { top: 420px; }
  .focus-start-stages { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* V15: clean semantic sections—no live text over text-bearing screenshots. */
.hero {
  border-bottom: 0;
  box-shadow: none;
}
.hero::after {
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.68) 56%, #fff 100%);
}
.diagnostic-section {
  padding-top: 124px;
  background: linear-gradient(180deg, #fff 0, #f7f9fb 105px, #f7f9fb calc(100% - 90px), #fff 100%);
}
.focus-step-mark b { display: none; }
.focus-step-mark { min-height: 54px; }
.focus-step-mark svg { width: 46px; height: 46px; stroke-width: 1.55; }
.focus-start-stages li:not(:last-child)::after { top: 22px; }

@media (min-width: 1121px) {
  .site-header { height: 80px; }
  .header-inner { grid-template-columns: minmax(240px,1fr) auto minmax(240px,1fr); }
  .brand { width: 168px; }
  .primary-nav { gap: clamp(21px,1.8vw,30px); }
  .primary-nav a { font-size: 12px; }
  .header-cta { min-width: 176px; min-height: 42px; padding: 11px 15px; font-size: 11.5px; }
}

@media (min-width: 981px) {
  .markets-section { padding: 108px 0 116px; background: #fff; }
  .markets-section > .container { width: min(calc(100% - 64px), 1240px); }
  .markets-section h2 { font-size: clamp(2.6rem,3.45vw,3.35rem); }
  .markets-section .section-lede { max-width: 820px; margin-top: 8px; font-size: 16px; }
  .market-editorial {
    margin-top: 38px;
    grid-template-columns: minmax(0,1fr) minmax(0,1.06fr);
    align-items: stretch;
    gap: 40px;
  }
  .market-feature-image { aspect-ratio: 1.17 / 1; }
  .market-feature > strong { margin-top: 17px; font-size: 23px; }
  .market-feature > small { font-size: 15px; }
  .market-routes { display: flex; min-height: 100%; flex-direction: column; justify-content: space-between; }
  .market-route {
    min-height: 31%;
    padding: 18px 0;
    grid-template-columns: minmax(190px,44%) minmax(0,1fr);
    gap: 22px;
  }
  .market-route:first-child { padding-top: 0; }
  .market-route:last-child { padding-bottom: 0; }
  .market-route-image { aspect-ratio: 1.55 / 1; }
  .market-route-copy strong { font-size: 18px; }
  .market-route-copy small { margin-top: 6px; font-size: 14px; line-height: 1.4; }
  .market-route-copy i { margin-top: 10px; font-size: 13px; }

  .system-section { padding: 0; background: #071820; }
  .system-section::before { display: none; }
  .system-section > .container { width: 100%; max-width: none; }
  .decision-loop-v14 { position: relative; width: 100%; min-height: 0; aspect-ratio: 2172 / 724; margin: 0; padding: 0; }
  .decision-loop-v14::before,
  .decision-loop-v14::after { display: none; }
  .system-plate-art { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .decision-loop-v14 .system-heading {
    position: absolute;
    z-index: 2;
    left: max(5%,calc((100% - 1440px)/2));
    top: 6.5%;
    width: min(90%,1240px);
  }
  .decision-loop-v14 .system-heading h2 { font-size: clamp(2rem,2.75vw,2.8rem); }
  .decision-loop-v14 .system-heading > div > p:not(.eyebrow) { font-size: 15px; }
  .decision-loop-v14 .decision-stages {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 55.5%;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
  }
  .decision-loop-v14 .decision-stages li { padding-inline: 4.5%; }
  .decision-loop-v14 .decision-stages li::after,
  .decision-loop-v14 .system-icon { display: none; }
  .decision-loop-v14 .decision-stages strong { font-size: clamp(12px,.92vw,15px); font-weight: 620; line-height: 1.13; }
  .decision-loop-v14 .decision-stages small { display: none; }
  .decision-loop-v14 .loop-caption {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 73.5%;
    width: max-content;
    margin: 0;
    padding: 1px 12px 3px;
    transform: translateX(-50%);
    color: var(--orange-bright);
    background: #091a22;
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .cta-growth-layout { display: block; padding-top: 106px; padding-bottom: 108px; }
  .cta-mantra {
    position: absolute;
    top: 62px;
    right: 0;
    padding-left: 20px;
    color: #fff;
    border-left: 3px solid rgba(255,255,255,.94);
    background: transparent;
    font-size: 18px;
    line-height: 1.16;
    text-align: left;
    text-shadow: 0 2px 14px rgba(55,20,5,.24);
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .site-header { height: 76px; }
  .header-inner { display: flex; justify-content: space-between; }
  .brand { width: 168px; }
  .menu-toggle { width: 44px; height: 44px; padding: 10px; display: grid; align-content: center; gap: 5px; background: #fff; border: 1px solid var(--line); border-radius: 3px; }
  .menu-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--navy); }
  .primary-nav { position: absolute; top: 76px; left: 24px; right: 24px; padding: 18px; display: none; align-items: stretch; flex-direction: column; gap: 0; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 36px rgba(12,27,44,.14); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 4px; font-size: 14px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .header-cta { display: none; }
}

@media (max-width: 980px) {
  .markets-section { padding: 84px 0 90px; }
  .market-editorial { display: grid; grid-template-columns: 1fr; gap: 42px; }
  .market-feature-image { aspect-ratio: 1.52 / 1; }
  .market-routes { display: grid; }
  .market-route { grid-template-columns: minmax(190px,42%) 1fr; }
  .system-plate-art { display: none; }
  .decision-loop-v14 { margin-top: 0; padding: 0; }
  .decision-loop-v14::before,
  .decision-loop-v14::after { display: none; }
  .decision-loop-v14 .system-heading { margin-bottom: 38px; }
}

@media (max-width: 680px) {
  .diagnostic-section { padding-top: 92px; }
  .market-route { grid-template-columns: 1fr; gap: 14px; }
  .market-route-image { aspect-ratio: 1.6 / 1; }
  .focus-step-mark svg { width: 42px; height: 42px; }
}

/* V16: reference-faithful markets, approach and evidence artwork. */
.system-mantra { margin: 0; }
.claim-art,
.claim-diagram { background: transparent; box-shadow: none; }
.claim-diagram img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 100% 105% at 45% 50%, #000 0 64%, rgba(0,0,0,.96) 80%, transparent 100%);
  mask-image: radial-gradient(ellipse 100% 105% at 45% 50%, #000 0 64%, rgba(0,0,0,.96) 80%, transparent 100%);
}

@media (min-width: 1024px) {
  .markets-section {
    padding: 66px 0 52px;
    background: #fff;
  }
  .markets-section > .container {
    width: min(calc(100% - 64px), 1120px);
  }
  .markets-section .eyebrow {
    color: var(--orange);
    background: transparent;
  }
  .markets-section h2 {
    margin-top: 10px;
    font-size: clamp(42px, 3.35vw, 49px);
    line-height: 1.01;
    letter-spacing: -.045em;
  }
  .markets-section .section-lede {
    max-width: 920px;
    margin-top: 10px;
    color: #364153;
    font-size: 15px;
    line-height: 1.42;
  }
  .market-editorial {
    margin-top: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
  }
  .market-feature-image {
    aspect-ratio: 7 / 6;
    background: transparent;
  }
  .market-feature-image img,
  .market-route-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .market-feature > strong {
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.2;
  }
  .market-feature > small,
  .market-route-copy small {
    display: none;
  }
  .market-link {
    margin-top: 8px;
    font-size: 12px;
  }
  .market-routes {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    min-height: 0;
    gap: 0;
  }
  .market-route {
    min-height: 0;
    padding: 14px 0;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border-top: 1px solid #e1e5ea;
  }
  .market-route:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .market-route:last-child {
    padding-bottom: 0;
  }
  .market-route-image {
    aspect-ratio: 8 / 5;
    background: transparent;
  }
  .market-route-copy strong {
    font-size: 15px;
    line-height: 1.18;
  }
  .market-route-copy i {
    margin-top: 10px;
    font-size: 12px;
  }

  .system-section {
    padding: 0;
    overflow: hidden;
    background: #151c20;
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .system-section > .container {
    width: 100%;
    max-width: none;
  }
  .decision-loop-v14 {
    position: relative;
    width: 100%;
    height: clamp(300px, 25.8vw, 460px);
    min-height: 300px;
    aspect-ratio: auto;
    margin: 0;
    padding: 0;
  }
  .system-plate-art {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
  }
  .decision-loop-v14 .system-heading {
    position: absolute;
    z-index: 3;
    top: clamp(26px, 7.2%, 34px);
    left: 4.6%;
    right: 4.8%;
    width: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
  .decision-loop-v14 .system-heading > div {
    max-width: 82%;
  }
  .decision-loop-v14 .system-heading h2 {
    margin-top: 8px;
    font-size: clamp(32px, 2.55vw, 40px);
    line-height: 1.02;
    letter-spacing: -.045em;
  }
  .decision-loop-v14 .system-heading > div > p:not(.eyebrow) {
    margin-top: 8px;
    color: #d8dde0;
    font-size: clamp(13px, .88vw, 14px);
  }
  .system-mantra {
    flex: 0 0 auto;
    padding: 4px 0 4px 22px;
    color: #e8ebed;
    border-left: 3px solid var(--orange-bright);
    font-size: clamp(11px, .85vw, 14px);
    font-weight: 650;
    line-height: 1.42;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .decision-loop-v14 .decision-stages {
    position: absolute;
    z-index: 3;
    inset: 64.5% 0 auto;
    display: block;
    margin: 0;
    padding: 0;
  }
  .decision-loop-v14 .decision-stages li {
    position: absolute;
    top: 0;
    width: 14.5%;
    padding: 0;
    transform: translateX(-50%);
  }
  .decision-loop-v14 .decision-stages li:nth-child(1) { left: 10.2%; }
  .decision-loop-v14 .decision-stages li:nth-child(2) { left: 30.1%; }
  .decision-loop-v14 .decision-stages li:nth-child(3) { left: 50%; }
  .decision-loop-v14 .decision-stages li:nth-child(4) { left: 69.9%; }
  .decision-loop-v14 .decision-stages li:nth-child(5) { left: 89.8%; }
  .decision-loop-v14 .decision-stages li::after,
  .decision-loop-v14 .system-icon {
    display: none;
  }
  .decision-loop-v14 .decision-stages strong {
    color: #fff;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 650;
    line-height: 1.1;
    text-shadow: 0 2px 6px rgba(0,0,0,.9);
  }
  .decision-loop-v14 .decision-stages small { display: none; }
  .decision-loop-v14 .loop-caption {
    position: absolute;
    z-index: 4;
    top: 88.8%;
    left: 50%;
    width: max-content;
    margin: 0;
    padding: 1px 14px 3px;
    transform: translateX(-50%);
    color: var(--orange-bright);
    background: #171e21;
    font-size: clamp(9px, .72vw, 11px);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
}

@media (min-width: 681px) and (max-width: 1023px) {
  .markets-section { padding: 72px 0 76px; }
  .market-editorial { gap: 32px; }
  .market-feature-image { aspect-ratio: 7 / 6; }
  .market-route-image { aspect-ratio: 8 / 5; }
  .market-feature > small,
  .market-route-copy small { display: none; }
  .system-section { padding: 48px 0 50px; }
  .system-section > .container {
    width: min(calc(100% - 48px), 920px);
    max-width: 920px;
  }
  .system-plate-art { display: none; }
  .decision-loop-v14 {
    width: auto;
    aspect-ratio: auto;
    margin-top: 0;
    padding: 0;
  }
  .decision-loop-v14 .system-heading {
    position: static;
    width: auto;
    margin-bottom: 24px;
  }
  .decision-loop-v14 .decision-stages {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
  .decision-loop-v14 .decision-stages li {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: 0;
    transform: none;
  }
  .decision-loop-v14 .system-icon { display: grid; }
  .decision-loop-v14 .system-icon { width: 54px; height: 54px; }
  .decision-loop-v14 .system-icon svg { width: 28px; height: 28px; }
  .decision-loop-v14 .decision-stages { gap: 14px; }
  .decision-loop-v14 .decision-stages small { display: none; }
  .decision-loop-v14 .loop-caption {
    position: relative;
    inset: auto;
    margin: 28px auto 0;
    transform: none;
  }
  .evidence-section { padding-top: 56px; }
}

@media (max-width: 680px) {
  .markets-section { padding: 52px 0 58px; }
  .relevance-card { position: relative; inset: auto; margin-top: 32px; }
  .markets-section h2 { font-size: 34px; line-height: 1.08; }
  .markets-section .section-lede { font-size: 14px; line-height: 1.5; }
  .market-editorial { margin-top: 26px; gap: 26px; }
  .market-feature-image { aspect-ratio: 4 / 3; }
  .market-feature > small,
  .market-route-copy small { display: none; }
  .market-route {
    min-height: 118px;
    padding: 16px 0;
    grid-template-columns: 40% 1fr;
    gap: 14px;
  }
  .market-route-image { aspect-ratio: 8 / 5; }
  .market-route-copy strong { font-size: 14px; line-height: 1.2; }
  .market-route-copy i { margin-top: 8px; }
  .system-mantra { display: none; }
  .system-heading {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .system-heading > div { max-width: 100%; }
  .system-section { padding: 44px 0 48px; }
  .system-heading h2 { font-size: 32px; line-height: 1.03; }
  .system-heading > div > p:not(.eyebrow) { margin-top: 10px; font-size: 14px; }
  .decision-loop { margin-top: 22px; }
  .decision-stages { gap: 10px; }
  .decision-stages li { min-height: 50px; padding-left: 62px; }
  .decision-stages li:not(:last-child)::after { bottom: -12px; left: 23px; }
  .system-icon { width: 48px; height: 48px; }
  .system-icon svg { width: 26px; height: 26px; }
  .decision-stages strong { font-size: 14px; }
  .decision-stages small { display: none; }
  .loop-caption { margin: 18px 0 0 62px; }
  .evidence-section { padding-top: 52px; }
  .claim-diagram img {
    -webkit-mask-image: radial-gradient(ellipse 112% 108% at 43% 50%, #000 0 72%, rgba(0,0,0,.94) 87%, transparent 100%);
    mask-image: radial-gradient(ellipse 112% 108% at 43% 50%, #000 0 72%, rgba(0,0,0,.94) 87%, transparent 100%);
  }
  .claim-labels {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    margin-top: 14px;
    padding: 0;
  }
  .claim-labels li {
    min-width: 0;
    padding-left: 15px;
    color: #36445a;
    font-size: 13px;
    line-height: 1.3;
    white-space: normal;
  }
  .claim-labels li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange-bright);
  }
}

@media (max-width: 1120px) {
  .primary-nav .nav-cta-mobile {
    min-height: 48px;
    margin-top: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    background: var(--orange);
    border: 0;
    box-shadow: 0 10px 22px rgba(243,75,23,.18);
    white-space: normal;
  }
  .primary-nav .nav-cta-mobile:hover,
  .primary-nav .nav-cta-mobile:focus-visible { color: #fff; background: #d93b0e; }
  .primary-nav .nav-cta-mobile:focus-visible { outline: 3px solid #fff; outline-offset: -5px; }
}

@media (min-width: 681px) and (max-width: 980px) {
  .hero-intro { max-width: calc(100% - 340px); }
}

@media (min-width: 1024px) {
  .evidence-section { padding-top: 70px; }
}

/* V26: shared compact navigation */
@media (max-width: 1120px) {
  body.menu-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 100;
  }
  .site-header::after {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    z-index: 1;
    background: rgba(8, 23, 40, .42);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
  }
  body.menu-open .site-header::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .menu-toggle {
    position: relative;
    z-index: 3;
    border-color: rgba(10, 35, 60, .18);
    transition: border-color .2s ease, background-color .2s ease;
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle[aria-expanded="true"] {
    background: #f7f9fb;
    border-color: rgba(10, 35, 60, .34);
    outline: none;
  }
  .menu-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(243, 75, 23, .24);
  }
  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 11px;
    width: 20px;
    margin: 0;
    transition: top .2s ease, transform .2s ease, opacity .15s ease;
  }
  .menu-toggle span:nth-of-type(2) { top: 14px; }
  .menu-toggle span:nth-of-type(3) { top: 21px; }
  .menu-toggle span:nth-of-type(4) { top: 28px; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    top: 21px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    top: 21px;
    transform: rotate(-45deg);
  }
  .primary-nav {
    position: fixed;
    inset: 76px 0 0 auto;
    z-index: 2;
    width: min(420px, 100%);
    padding: 24px 26px max(28px, env(safe-area-inset-bottom));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 0;
    border-left: 1px solid rgba(218, 224, 232, .82);
    box-shadow: -22px 0 48px rgba(9, 24, 42, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .25s ease, opacity .2s ease, visibility .25s ease;
  }
  .primary-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .primary-nav a {
    min-height: 54px;
    padding: 15px 6px;
    display: flex;
    align-items: center;
    color: var(--navy);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.3;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav a.is-current {
    color: var(--orange);
  }
  .primary-nav .nav-cta-mobile {
    min-height: 56px;
    margin-top: 24px;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(135deg, #d83a0a, #c93408);
    border: 0;
    border-radius: 2px;
    box-shadow: 0 12px 26px rgba(243, 75, 23, .24);
    font-size: 14px;
    line-height: 1.3;
  }
  .primary-nav .nav-cta-mobile:hover,
  .primary-nav .nav-cta-mobile:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #cf3508, #bd2e06);
  }
}

@media (max-width: 680px) {
  .primary-nav {
    width: 100%;
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .menu-toggle span:not(.sr-only),
  .primary-nav {
    transition: none;
  }
}

/* 2026-09-10 bounded homepage completion: retain the selected commercial
   challenge section, reduce machinery density in Technical Markets, show the
   full dark-system artwork and restore the owner-locked mobile composition. */
.home-market-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0,1.13fr) minmax(430px,.87fr);
  gap: 34px;
  align-items: stretch;
}
.home-market-feature {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0,1fr) auto;
  color: var(--ink);
}
.home-market-feature-image { min-height: 430px; overflow: hidden; background: #e7eaee; }
.home-market-feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transition: transform 220ms ease; }
.home-market-feature:hover img { transform: scale(1.015); }
.home-market-feature-copy { padding-top: 16px; display: grid; gap: 6px; }
.home-market-feature-copy strong { font-size: 21px; line-height: 1.15; }
.home-market-feature-copy small { max-width: 620px; color: var(--body); font-size: 14px; line-height: 1.42; }
.home-market-feature-copy i,
.home-market-route-copy i { color: var(--orange); font-size: 13px; font-weight: 750; font-style: normal; }
.home-market-routes { display: grid; grid-template-rows: repeat(3,1fr); border-top: 1px solid var(--line); }
.home-market-route {
  min-width: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.home-market-icon {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: linear-gradient(180deg,#fff,#f8fafc);
  border: 1px solid #dce3eb;
}
.home-market-icon svg { width: 62px; height: 62px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.home-market-route-copy { min-width: 0; display: grid; gap: 6px; }
.home-market-route-copy strong { color: var(--ink); font-size: 16px; line-height: 1.18; }
.home-market-route-copy small { color: var(--body); font-size: 13px; line-height: 1.38; }
.home-market-feature:focus-visible,
.home-market-route:focus-visible { outline: 3px solid rgba(243,75,23,.42); outline-offset: 5px; }

@media (min-width: 1281px) {
  .markets-section > .container,
  .system-section > .container {
    width: min(calc(100% - 64px), var(--container));
    max-width: var(--container);
    margin-inline: auto;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .markets-section > .container,
  .system-section > .container {
    width: min(calc(100% - 48px), 1180px);
    max-width: 1180px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .decision-loop-v14 { width: 100%; height: auto; min-height: 0; aspect-ratio: 2172 / 724; }
  .system-plate-art { object-fit: contain; object-position: center; }
  .decision-loop-v14 .system-heading { left: 0; right: 0; width: auto; }
}

@media (max-width: 980px) {
  .markets-section > .container,
  .system-section > .container {
    width: min(calc(100% - 40px), 900px);
    max-width: 900px;
  }
  .home-market-grid { grid-template-columns: 1fr; gap: 34px; }
  .home-market-feature-image { min-height: 0; aspect-ratio: 16 / 9; }
}

@media (max-width: 680px) {
  .markets-section > .container,
  .system-section > .container {
    width: min(calc(100% - 32px), 620px);
    max-width: 620px;
  }
  .home-market-grid { margin-top: 24px; }
  .home-market-feature-image { aspect-ratio: 4 / 3; }
  .home-market-route { grid-template-columns: 78px minmax(0,1fr); gap: 16px; padding: 18px 0; }
  .home-market-icon { width: 70px; height: 70px; }
  .home-market-icon svg { width: 48px; height: 48px; }
  .home-market-route-copy strong { font-size: 15px; }
  .home-market-route-copy small { font-size: 12.5px; }
}

/* Match the owner's locked mobile composition at narrow phone widths. */
@media (max-width: 420px) {
  .focus-start-stages,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .focus-start-stages { column-gap: 24px; }
  .footer-grid { column-gap: 24px; }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 39px;
    line-height: .97;
    letter-spacing: -.055em;
  }
  .focus-start-stages,
  .footer-grid { column-gap: 18px; }
}

/* Current shared-shell accessibility corrections. */
.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.nav-submenu-toggle:focus-visible,
.menu-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid #a32c0b;
  outline-offset: 4px;
}
.site-footer .footer-grid a:focus-visible,
.site-footer .legal-row a:focus-visible {
  color: #fff;
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* V52: buyer-oriented footer and calibrated section rhythm. */
.site-footer { min-height: 0; }

.privacy-notice {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(520px, calc(100vw - 40px));
  padding: 14px 16px;
  color: #fff;
  background: #071b24;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(4,18,25,.28);
}
.privacy-notice p { margin: 0; font-size: 13px; line-height: 1.45; }
.privacy-notice a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.privacy-notice button {
  flex: 0 0 auto;
  min-width: 54px;
  padding: 9px 13px;
  color: #fff;
  font: inherit;
  font-weight: 700;
  background: #f04a1d;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
}
@media (max-width: 560px) {
  .privacy-notice { right: 12px; bottom: 12px; width: calc(100vw - 24px); align-items: flex-start; }
}
.footer-grid {
  min-height: 0;
  grid-template-columns: minmax(190px,1.12fr) minmax(130px,.72fr) minmax(210px,1.2fr) minmax(160px,.9fr) minmax(190px,1fr);
  gap: clamp(28px,3.2vw,52px);
  padding: 54px 0 42px;
}
.footer-grid h2 { margin: 6px 0 16px; }
.footer-grid a { margin-bottom: 9px; line-height: 1.38; }
.footer-brand img { width: 176px; }
.footer-brand p { margin-top: 14px; font-size: 15px; line-height: 1.4; }
.footer-brand .footer-email { margin-top: 16px; color: #fff; font-size: 13px; overflow-wrap: anywhere; }
.footer-nav { min-width: 0; }
.footer-company a[href^="mailto:"] { overflow-wrap: anywhere; }
.legal-row { min-height: 72px; }

@media (min-width: 981px) {
  body#top:not([class]) .diagnostic-section { padding: 82px 0 86px; }
  body#top:not([class]) .markets-section { padding: 76px 0 80px; }
  body#top:not([class]) .evidence-section { padding: 76px 0 80px; }
  body#top:not([class]) .focus-start-section { padding: 72px 0 76px; }
}

@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: 1.15fr 1fr 1.2fr; }
  .footer-brand { grid-row: span 2; }
}

@media (max-width: 680px) {
  body#top:not([class]) .diagnostic-section { padding: 60px 0 64px; }
  body#top:not([class]) .evidence-section { padding: 52px 0 60px; }
  body#top:not([class]) .focus-start-section { padding: 56px 0 60px; }
  .footer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 30px 24px;
    padding: 46px 0 38px;
  }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-brand img { width: 164px; }
  .footer-grid h2 { margin-top: 0; }
  .legal-row { min-height: 86px; }
}

.nav-submenu-toggle { min-width: 44px; min-height: 44px; }
.header-cta,
.back-to-top,
.text-link { min-height: 44px; }

/* V27: corrected information architecture and optical logo alignment */
.brand {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.brand img { width: auto; flex: 0 0 auto; }
.brand .brand-mark { width: 48px; }
.brand .brand-wordmark { width: 112px; }
.nav-parent-row { display: flex; align-items: center; }
.nav-submenu-toggle {
  width: 28px;
  height: 36px;
  padding: 8px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-submenu-toggle svg {
  width: 12px;
  height: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}
.nav-item.is-open .nav-submenu-toggle svg { transform: rotate(180deg); }

@media (min-width: 1121px) {
  .primary-nav { gap: clamp(16px, 1.4vw, 24px); }
  .primary-nav > a,
  .primary-nav .nav-parent { font-size: 12.5px; }
  .nav-item-dropdown {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
  }
  .nav-parent-row { height: 100%; }
  .nav-parent {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .nav-submenu-toggle:hover,
  .nav-submenu-toggle:focus-visible { color: var(--orange); outline: none; }
  .nav-submenu-toggle:focus-visible { box-shadow: 0 0 0 2px var(--orange); }
  .nav-submenu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 390px;
    padding: 10px;
    display: grid;
    gap: 2px;
    background: #fff;
    border: 1px solid rgba(218, 224, 232, .9);
    border-radius: 3px;
    box-shadow: 0 20px 48px rgba(8, 23, 40, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-item-dropdown:hover .nav-submenu,
  .nav-item-dropdown.is-open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .primary-nav .nav-submenu a {
    min-height: 46px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    color: var(--navy);
    font-size: 14px;
    font-weight: 620;
    line-height: 1.3;
    white-space: normal;
    border-radius: 2px;
  }
  .primary-nav .nav-submenu a:hover,
  .primary-nav .nav-submenu a:focus-visible {
    color: var(--navy);
    background: var(--soft-2);
    outline: none;
  }
  .primary-nav .nav-submenu .nav-submenu-overview {
    justify-content: space-between;
    color: var(--orange);
    background: #fff6f2;
    font-weight: 720;
  }
  .primary-nav .nav-submenu .nav-submenu-overview:hover,
  .primary-nav .nav-submenu .nav-submenu-overview:focus-visible {
    color: #d93b0e;
    background: #ffede6;
  }
  .primary-nav > a.is-current,
  .primary-nav .nav-parent.is-current { color: var(--orange); }
}

@media (max-width: 1120px) {
  .brand .brand-mark { width: 45px; }
  .brand .brand-wordmark { width: 105px; }
  .primary-nav > a,
  .nav-item > .nav-parent-row {
    border-bottom: 1px solid var(--line);
  }
  .nav-parent-row { display: grid; grid-template-columns: minmax(0, 1fr) 52px; }
  .primary-nav .nav-parent {
    min-height: 54px;
    padding: 15px 6px;
    display: flex;
    align-items: center;
    color: var(--navy);
    font-size: 16px;
    font-weight: 650;
    line-height: 1.3;
    border: 0;
  }
  .nav-submenu-toggle {
    width: 52px;
    height: 54px;
  }
  .nav-submenu-toggle:focus-visible {
    color: var(--orange);
    outline: 2px solid var(--orange);
    outline-offset: -5px;
  }
  .nav-submenu {
    display: none;
    padding: 6px 0 10px;
    background: #f7f9fb;
    border-bottom: 1px solid var(--line);
  }
  .nav-item.is-open .nav-submenu { display: grid; }
  .primary-nav .nav-submenu a {
    min-height: 48px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    white-space: normal;
    border: 0;
  }
  .primary-nav .nav-submenu a:hover,
  .primary-nav .nav-submenu a:focus-visible {
    color: var(--orange);
    background: #fff;
    outline: none;
  }
  .primary-nav .nav-submenu .nav-submenu-overview {
    justify-content: space-between;
    color: var(--orange);
    font-weight: 720;
  }
  .primary-nav > a.is-current,
  .primary-nav .nav-parent.is-current { color: var(--orange); }
}

@media (max-width: 380px) {
  .brand { gap: 5px; }
  .brand .brand-mark { width: 41px; }
  .brand .brand-wordmark { width: 96px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-submenu-toggle svg,
  .nav-submenu { transition: none; }
}

/* Homepage review refinements: quieter image treatment, a smaller lead market
   photograph and a seamless surround for the approved dark artwork. */
.services-strip {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid #e7ebf0;
  border-bottom: 1px solid #e1e6ec;
}
.services-strip-grid {
  display: grid;
  grid-template-columns: minmax(190px, 1.15fr) repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
.services-strip-intro,
.services-strip a {
  min-width: 0;
  padding: 27px 22px 29px;
}
.services-strip-intro { padding-left: 0; }
.services-strip-intro .eyebrow { font-size: 10px; }
.services-strip-intro h2 {
  max-width: 210px;
  margin-top: 7px;
  font-size: 20px;
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -.018em;
}
.services-strip a {
  display: grid;
  align-content: start;
  border-left: 1px solid #e1e6ec;
  transition: background 160ms ease, transform 160ms ease;
}
.services-strip a:hover,
.services-strip a:focus-visible {
  background: #fff7f3;
  transform: translateY(-2px);
}
.services-strip a:focus-visible { outline: 3px solid rgba(243, 75, 23, .38); outline-offset: -3px; }
.services-strip a span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.services-strip a strong {
  margin-top: 9px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.24;
  letter-spacing: -.008em;
}
.services-strip a small {
  margin-top: 7px;
  color: var(--body);
  font-size: 12px;
  line-height: 1.38;
  letter-spacing: .006em;
}

.diagnostic-section {
  background: var(--soft-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.diagnostic-visual figure,
.home-market-feature-image {
  border-radius: 3px;
  box-shadow: 0 14px 30px rgba(10, 29, 52, .12);
}
.home-market-feature-image {
  display: block;
  width: 100%;
}

@media (min-width: 981px) {
  .hero,
  .hero-inner { min-height: 560px; }
  .home-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 2.4vw, 40px);
    align-items: start;
  }
  .home-market-feature { display: block; }
  .home-market-feature-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .home-market-routes { align-self: stretch; }
  .system-section { background: #0e1a1f; }
  .system-section::before { display: none; }
}

@media (min-width: 1024px) {
  .decision-loop-v14 > .system-plate-art,
  .decision-loop-v14 > .system-heading,
  .decision-loop-v14 > .decision-stages {
    transform: translateY(44px);
  }
  .decision-loop-v14 .decision-stages strong { transform: translateY(-24px); }
}

/* Relax the compressed display type without making long headings look loose. */
.hero h1 { letter-spacing: -.032em; }
.section h2,
.focus-start-heading h2,
.system-heading h2 { letter-spacing: -.024em; }
.relevance-card h2,
.services-strip-intro h2 { letter-spacing: -.018em; }
.cta-growth-layout h2 { letter-spacing: -.03em; }
.hero-intro,
.section-lede,
.system-heading > div > p:not(.eyebrow),
.focus-start-heading > p:not(.eyebrow),
.home-market-feature-copy small,
.home-market-route-copy small { letter-spacing: .006em; }

@media (max-width: 1120px) {
  .services-strip-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-strip-intro {
    grid-column: 1 / -1;
    padding: 24px 0 18px;
    border-bottom: 1px solid #e1e6ec;
  }
  .services-strip-intro h2 { max-width: none; }
  .services-strip a { border-bottom: 1px solid #e1e6ec; }
  .services-strip a:nth-child(even) { border-left: 0; }
}

@media (min-width: 561px) and (max-width: 1120px) {
  .services-strip a:last-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .home-market-feature-image { aspect-ratio: 16 / 9; }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .home-market-route { padding-block: 10px; }
}

/* Keep the featured market photograph restrained through the stacked tablet
   range, where a full-width 16:9 image otherwise becomes disproportionately
   tall before the desktop columns engage. */
@media (min-width: 700px) and (max-width: 980px) {
  .markets-section { padding: 72px 0 78px; }
  .home-market-grid { gap: 28px; }
  .home-market-feature-image {
    height: clamp(320px, 42vw, 390px);
    aspect-ratio: auto;
  }
}

@media (min-width: 600px) and (max-width: 699px) {
  .home-market-feature-image {
    height: 320px;
    aspect-ratio: auto;
  }
}

@media (max-width: 560px) {
  .services-strip-grid { grid-template-columns: 1fr; }
  .services-strip a {
    padding: 20px 0 22px;
    border-left: 0;
  }
}

/* Homepage services compact V3: a restrained market-to-demand path. */
.services-strip.services-v3 {
  overflow: hidden;
  border-color: #e2e3e1;
  background:
    radial-gradient(circle at 92% 8%, rgba(238, 75, 24, .035), transparent 25%),
    linear-gradient(180deg, #faf9f7 0%, #f5f4f1 100%);
}
.services-v3-inner { padding-block: 32px 34px; }
.services-v3-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 20px;
}
.services-v3-heading .eyebrow { margin-bottom: 9px; }
.services-v3-heading h2 {
  max-width: 610px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 2.65vw, 39px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.042em;
}
.services-v3-heading > p {
  max-width: 390px;
  margin: 0 0 2px;
  color: var(--body);
  font-size: 14px;
  line-height: 1.5;
}
.services-v3-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
}
.services-v3-path::before {
  position: absolute;
  top: 50px;
  right: 5%;
  left: 5%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(9, 24, 39, .08), rgba(238, 75, 24, .52), rgba(9, 24, 39, .08));
}
.services-strip .services-v3-card {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 174px;
  padding: 15px 15px 14px;
  border: 1px solid rgba(9, 24, 39, .10);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.95);
  box-shadow:
    0 18px 38px rgba(9, 24, 39, .065),
    0 3px 8px rgba(9, 24, 39, .045),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.services-strip .services-v3-card::after {
  position: absolute;
  top: 49px;
  right: -10px;
  z-index: 4;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--orange);
  border-right: 1.5px solid var(--orange);
  content: "";
  transform: rotate(45deg);
}
.services-strip .services-v3-card:last-child::after { display: none; }
.services-strip .services-v3-card:last-child { grid-column: auto; }
.services-strip .services-v3-card:hover,
.services-strip .services-v3-card:focus-visible {
  border-color: rgba(238, 75, 24, .32);
  background: #fff;
  box-shadow:
    0 22px 42px rgba(9, 24, 39, .09),
    0 4px 10px rgba(9, 24, 39, .05),
    inset 0 1px 0 #fff;
  transform: translateY(-3px);
}
.services-strip .services-v3-card:focus-visible { outline: 3px solid rgba(238, 75, 24, .26); outline-offset: 3px; }
.services-v3-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 57px;
}
.services-strip .services-v3-number {
  align-self: flex-start;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}
.services-strip a .services-v3-icon {
  position: relative;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e2dd;
  border-radius: 16px;
  color: var(--ink);
  background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(239,237,232,.97));
  box-shadow:
    0 12px 18px rgba(9,24,39,.10),
    0 3px 5px rgba(9,24,39,.05),
    inset 1px 1px 0 #fff;
  transform: translateY(-2px) rotate(-1deg);
}
.services-v3-icon::before {
  position: absolute;
  inset: 7px -5px -6px 7px;
  z-index: -1;
  border: 1px solid rgba(238,75,24,.18);
  border-radius: 15px;
  content: "";
  background: rgba(238,75,24,.035);
}
.services-v3-icon svg {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services-v3-icon .accent { stroke: var(--orange); }
.services-strip .services-v3-card strong {
  display: block;
  min-height: 38px;
  margin: 11px 0 7px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 730;
  line-height: 1.18;
  letter-spacing: -.018em;
}
.services-strip .services-v3-card small {
  display: block;
  margin: 0;
  color: var(--body);
  font-size: 11.75px;
  line-height: 1.38;
}
.services-v3-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  color: #747d84;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.services-v3-labels strong { color: var(--ink); font-size: inherit; }

@media (max-width: 980px) {
  .services-v3-heading { align-items: start; flex-direction: column; gap: 14px; }
  .services-v3-path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-v3-path::before,
  .services-strip .services-v3-card::after { display: none; }
  .services-strip .services-v3-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .services-v3-inner { padding-block: 32px 36px; }
  .services-v3-heading { display: block; }
  .services-v3-heading > div,
  .services-v3-heading > p { width: 100%; max-width: none; }
  .services-v3-heading h2 { max-width: 100%; font-size: clamp(29px, 8.6vw, 33px); overflow-wrap: break-word; }
  .services-v3-heading > p { margin-top: 13px; font-size: 13px; }
  .services-v3-path {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 0 16px 17px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82vw);
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(9,24,39,.18) transparent;
  }
  .services-strip .services-v3-card,
  .services-strip .services-v3-card:last-child {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    min-height: 166px;
    padding: 16px;
    overflow: hidden;
    scroll-snap-align: start;
  }
  .services-v3-top { width: 100%; min-height: 52px; }
  .services-strip .services-v3-card strong { min-height: 0; }
  .services-v3-labels { display: none; }
}

/* Final cascade for the shared shell. */
.button:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible,
.primary-nav .nav-submenu a:focus-visible,
.nav-submenu-toggle:focus-visible,
.menu-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid #a32c0b;
  outline-offset: 4px;
}
.site-footer .footer-grid a:focus-visible,
.site-footer .legal-row a:focus-visible {
  color: #fff;
  outline: 3px solid #fff;
  outline-offset: 4px;
}

/* V28: one cross-page type scale.
   Opening headings, ordinary section headings and closing display headings
   are separate roles. Page-specific components keep their own smaller labels. */
:root {
  --ps-opening-heading-size: 58px;
  --ps-section-heading-size: 43px;
  --ps-closing-heading-size: 52px;
}

.hero h1 {
  font-size: var(--ps-opening-heading-size);
  line-height: .97;
  letter-spacing: -.032em;
}

.diagnostic-section h2,
.markets-section h2,
.system-section .system-heading h2,
.evidence-section h2,
.focus-start-heading h2 {
  font-size: var(--ps-section-heading-size);
  line-height: 1.025;
  letter-spacing: -.024em;
}

.cta-growth-layout h2 {
  font-size: var(--ps-closing-heading-size);
  line-height: 1;
  letter-spacing: -.03em;
}

/* One closing-section depth across the site, independent of headline wrapping. */
@media (min-width: 1121px) {
  .cta-block-orange,
  .cta-growth-layout { min-height: 488px; }
}

@media (max-width: 340px) {
  .cta-block-orange,
  .cta-growth-layout { min-height: 468px; }
}

/* The smaller opening copy releases vertical space without disturbing the
   approved photography and evidence-card composition. */
@media (min-width: 981px) {
  .hero,
  .hero-inner { min-height: 500px; }
  .hero-inner { padding-top: 50px; }
}

@media (min-width: 901px) and (max-width: 1120px) {
  :root {
    --ps-opening-heading-size: 49px;
    --ps-section-heading-size: 36px;
    --ps-closing-heading-size: 44px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .hero-intro { max-width: min(540px, calc(47vw - 64px)); }
}

@media (min-width: 1281px) {
  .hero-intro { max-width: min(590px, calc(49vw - 56px)); }
}

@media (min-width: 641px) and (max-width: 980px) {
  :root {
    --ps-opening-heading-size: clamp(38px, 6.4vw, 49px);
    --ps-section-heading-size: 36px;
    --ps-closing-heading-size: 44px;
  }
  .hero,
  .hero-inner { min-height: 690px; }
  .hero-inner { padding-top: 40px; }
}

@media (min-width: 481px) and (max-width: 640px) {
  :root {
    --ps-opening-heading-size: clamp(38px, 6.4vw, 49px);
    --ps-section-heading-size: 36px;
    --ps-closing-heading-size: 44px;
  }
  .hero,
  .hero-inner { min-height: 800px; }
  .hero-inner { padding-top: 32px; }
}

@media (max-width: 480px) {
  :root {
    --ps-opening-heading-size: clamp(32px, 10vw, 38px);
    --ps-section-heading-size: 35px;
    --ps-closing-heading-size: 40px;
  }
  .hero,
  .hero-inner { min-height: 800px; }
  .hero-inner { padding-top: 32px; }
}

@media (max-width: 360px) {
  :root {
    --ps-section-heading-size: 34px;
    --ps-closing-heading-size: 38px;
  }
  .site-footer a[href^="mailto:"] { overflow-wrap: anywhere; }
}

@media (min-width: 361px) and (max-width: 380px) {
  .site-footer a[href^="mailto:"] { overflow-wrap: anywhere; }
}

/* V53: one section-label rule and a direction-aware sticky header. */
:root { --ps-header-height: 80px; }

html { scroll-padding-top: calc(var(--ps-header-height) + 18px); }
html { overflow-x: clip; }

main .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
}

main .eyebrow::before,
main .eyebrow-line::before {
  width: 30px;
  height: 2px;
  flex: 0 0 30px;
  margin: 0;
  background: currentColor;
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--ps-header-height);
  transition: transform .24s ease, box-shadow .24s ease;
  will-change: transform;
}

.site-header.is-hidden { transform: translateY(calc(-1 * var(--ps-header-height))); }
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(8,23,40,.08); }
body.menu-open .site-header,
.site-header:focus-within { transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --ps-header-height: 76px; }
  .site-header::after { inset: var(--ps-header-height) 0 0; }
  .primary-nav { inset: var(--ps-header-height) 0 auto auto; display: none; }
  .primary-nav.is-open { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
