:root {
  --navy: #0e2b45;
  --navy-2: #173f61;
  --navy-3: #244964;
  --blue: #86bff0;
  --blue-strong: #2e78b7;
  --blue-pale: #eaf3fc;
  --red: #c8443a;
  --red-dark: #ab332d;
  --red-pale: #f9ecea;
  --green: #2e8b78;
  --green-pale: #eaf6f2;
  --amber: #b57a19;
  --amber-pale: #faf3e5;
  --ink: #1f2933;
  --slate: #66717c;
  --muted: #87919b;
  --line: #d7dee4;
  --soft: #f4f7fa;
  --white: #ffffff;
  --max: 1180px;
  --radius: 10px;
  --shadow: 0 16px 40px rgba(14, 43, 69, 0.08);
  --shadow-strong: 0 24px 60px rgba(14, 43, 69, 0.16);
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f5f7;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--red);
}

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

button,
a,
summary,
input,
select,
textarea {
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid rgba(46, 120, 183, 0.45);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 5.4rem;
  line-height: 1.03;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.3rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  margin-bottom: 18px;
}

ul,
ol {
  margin-top: 0;
}

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

.section {
  padding: 104px 0;
}

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

.section-dark,
.section-navy {
  color: #dce7ef;
  background: var(--navy);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-navy h1,
.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-dark .eyebrow,
.section-navy .eyebrow {
  color: var(--blue);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 50px;
}

.section-heading.narrow {
  max-width: 780px;
}

.section-heading.centered {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

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

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

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

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(215, 222, 228, 0.72);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: 58vw;
  color: var(--navy);
}

.brand-mark {
  width: 104px;
  height: auto;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  line-height: 1.08;
}

.brand-name {
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-line {
  color: #536270;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-nav > a:not(.button):hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.button-red {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-ghost {
  color: var(--blue-strong);
  background: transparent;
  border-color: rgba(46, 120, 183, 0.36);
}

.button-ghost:hover {
  color: var(--white);
  background: var(--blue-strong);
  border-color: var(--blue-strong);
}

.button-small {
  min-height: 36px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.button-full {
  width: 100%;
}

.text-link {
  color: var(--blue-strong);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(46, 120, 183, 0.35);
  text-underline-offset: 4px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 88px;
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 28%, rgba(134, 191, 240, 0.2), rgba(245, 245, 247, 0) 33%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

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

.hero::before {
  top: 120px;
  left: 50%;
  width: 820px;
  height: 820px;
  border: 1px solid rgba(46, 120, 183, 0.12);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero::after {
  top: 265px;
  left: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200, 68, 58, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
}

.hero-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  max-width: 920px;
  margin-inline: auto;
  color: #111827;
}

.hero .eyebrow {
  color: var(--blue-strong);
}

.hero-lede {
  max-width: 760px;
  margin-bottom: 32px;
  margin-inline: auto;
  color: #536270;
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
}

.proof-pills span,
.approach-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(14, 43, 69, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.audience-line {
  margin: 0;
  color: #536270;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 760px);
  min-height: 590px;
  margin-inline: auto;
  padding: 26px 24px 22px;
  border: 1px solid rgba(134, 191, 240, 0.24);
  border-radius: 8px;
  background: #123651;
  box-shadow: var(--shadow-strong);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
  background: var(--red);
}

.hero-visual::before {
  top: -1px;
  left: -1px;
  width: 70px;
  height: 4px;
}

.hero-visual::after {
  right: -1px;
  bottom: -1px;
  width: 70px;
  height: 4px;
}

.hero-visual-heading {
  color: #abc4d6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.relationship-target {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.target-axis {
  stroke: rgba(171, 196, 214, 0.46);
  stroke-width: 1.5;
}

.target-ring {
  fill: none;
  stroke-width: 4;
}

.target-ring-blue {
  stroke: var(--blue);
}

.target-ring-red {
  stroke: var(--red);
}

.target-core {
  fill: #0e2b45;
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.5;
}

.target-hit {
  fill: var(--red);
}

.target-core-text {
  fill: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.target-node text {
  fill: #dce7ef;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.node-blue {
  fill: var(--blue);
}

.node-red {
  fill: var(--red);
}

.node-white {
  fill: var(--white);
}

.hero-visual-footer {
  margin-top: -7px;
  color: #abc4d6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* Metric band */
.metric-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.metric {
  position: relative;
  min-height: 136px;
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

.metric:first-child {
  border-left: 1px solid var(--line);
}

.metric::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 46px;
  height: 4px;
  content: "";
  background: var(--red);
}

.metric:nth-child(even)::before {
  background: var(--blue-strong);
}

.metric strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 1.75rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  color: var(--slate);
  font-size: 0.85rem;
}

/* Quick fit */
.quick-fit-strip {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.quick-fit-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 42px;
  align-items: center;
}

.quick-fit-copy h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.quick-fit-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-fit-cards article {
  min-height: 150px;
  padding: 22px 20px;
  background: #ffffff;
}

.quick-fit-cards strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 0.96rem;
}

.quick-fit-cards span {
  display: block;
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Review primer */
.review-primer {
  background:
    radial-gradient(circle at 50% 0, rgba(134, 191, 240, 0.22), rgba(245, 245, 247, 0) 36%),
    #f5f5f7;
}

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

.review-card {
  min-height: 410px;
  padding: 30px 28px;
  border: 1px solid rgba(14, 43, 69, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 44px rgba(14, 43, 69, 0.07);
}

.review-card-accent {
  background: #ffffff;
  border-color: rgba(46, 120, 183, 0.22);
}

.review-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card h3 {
  max-width: 310px;
  margin-bottom: 22px;
  font-size: 1.65rem;
}

.review-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.review-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 13px;
  color: #536270;
  font-size: 0.95rem;
  line-height: 1.42;
}

.review-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.review-card-accent li::before {
  background: var(--blue-strong);
}

.assurance-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(14, 43, 69, 0.1);
  border-radius: 8px;
  background: rgba(14, 43, 69, 0.1);
}

.assurance-band > div {
  padding: 24px 28px;
  background: #ffffff;
}

.assurance-band strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.assurance-band p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

/* Information gap */
.information-gap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) 140px minmax(0, 1.35fr);
  align-items: stretch;
}

.info-panel {
  min-height: 500px;
  padding: 34px;
  border: 1px solid var(--line);
}

.info-panel-light {
  background: var(--soft);
}

.info-panel-dark {
  color: #dce7ef;
  background: var(--navy);
  border-color: var(--navy);
}

.info-panel-dark h3 {
  color: var(--white);
}

.panel-kicker {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.info-panel-dark .panel-kicker {
  color: var(--blue);
}

.statement-icon {
  display: grid;
  width: 92px;
  height: 92px;
  margin: 10px auto 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

.info-panel-light h3 {
  margin-bottom: 30px;
  text-align: center;
}

.gap-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.gap-arrow svg {
  width: 100px;
}

.gap-arrow path {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bank-factor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bank-factor-grid > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(134, 191, 240, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.bank-factor-grid span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.bank-factor-grid p {
  margin: 0;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.info-callout {
  margin: 26px 0 0;
  padding: 14px 16px;
  color: var(--white);
  background: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  position: absolute;
  top: 0.32em;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.check-list li::after {
  position: absolute;
  top: 0.53em;
  left: 4px;
  width: 7px;
  height: 3px;
  content: "";
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(-45deg);
}

.muted-list li {
  color: var(--slate);
}

.muted-list li::before {
  background: var(--blue-strong);
}

/* Scope cards */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.scope-card {
  position: relative;
  min-height: 370px;
  padding: 26px 20px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.scope-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--accent);
}

.scope-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 105px;
  height: 105px;
  content: "";
  border: 1px solid rgba(14, 43, 69, 0.10);
  border-radius: 50%;
}

.card-number {
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 700;
}

.icon-wrap {
  display: grid;
  width: 68px;
  height: 68px;
  margin: 22px auto 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--soft);
}

.icon-wrap svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scope-card h3 {
  min-height: 52px;
  text-align: center;
}

.scope-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.89rem;
  text-align: center;
}

.scope-note {
  width: fit-content;
  max-width: 870px;
  margin: 34px auto 0;
  padding: 12px 20px;
  color: var(--navy);
  background: var(--blue-pale);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

/* Four lenses */
.lens-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.lens-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lens-red { --accent: var(--red); --accent-pale: var(--red-pale); }
.lens-blue { --accent: var(--blue-strong); --accent-pale: var(--blue-pale); }
.lens-amber { --accent: var(--amber); --accent-pale: var(--amber-pale); }
.lens-green { --accent: var(--green); --accent-pale: var(--green-pale); }

.lens-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: var(--accent-pale);
  font-size: 0.8rem;
  font-weight: 700;
}

.lens-question {
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.lens-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.86rem;
}

.center-pill {
  width: fit-content;
  margin: 30px auto 0;
  padding: 11px 22px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Technology */
.technology-section {
  position: relative;
  overflow: hidden;
}

.technology-section::after {
  position: absolute;
  right: -100px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  content: "";
  border: 1px solid rgba(134, 191, 240, 0.12);
  border-radius: 50%;
}

.technology-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.technology-intro > p:not(.eyebrow) {
  color: #b9ccda;
  font-size: 1.05rem;
}

.technology-target {
  position: relative;
  display: grid;
  width: 330px;
  height: 330px;
  margin-top: 45px;
  place-items: center;
}

.t-ring,
.t-cross,
.t-dot {
  position: absolute;
  display: block;
}

.t-ring {
  border-radius: 50%;
}

.t-ring-one {
  inset: 0;
  border: 3px solid var(--blue);
}

.t-ring-two {
  inset: 62px;
  border: 3px solid var(--red);
}

.t-cross-h {
  top: 50%;
  right: -35px;
  left: -35px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.t-cross-v {
  top: -35px;
  bottom: -35px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.t-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
}

.technology-target strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.technology-steps {
  display: grid;
  gap: 16px;
}

.technology-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid rgba(134, 191, 240, 0.17);
  background: rgba(255, 255, 255, 0.035);
}

.technology-steps article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.technology-steps article:nth-child(3) > span,
.technology-steps article:nth-child(4) > span {
  color: var(--white);
  background: var(--red);
}

.technology-steps h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.technology-steps p {
  margin: 0;
  color: #abc1d1;
  font-size: 0.9rem;
}

.technology-note {
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

/* Process and commercial */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 42px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.process-number {
  display: grid;
  width: 52px;
  height: 52px;
  margin: -54px auto 24px;
  place-items: center;
  border: 6px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--line);
}

.process-step-red {
  border-top: 5px solid var(--red);
}

.process-step-red .process-number {
  background: var(--red);
}

.process-step-dark {
  color: #c6d5e0;
  background: var(--navy);
  border-color: var(--navy);
}

.process-step-dark h3 {
  color: var(--white);
}

.process-step-dark .process-number {
  border-color: var(--navy);
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.process-step p {
  margin: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.process-step-dark p {
  color: #abc1d1;
}

.approach-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 38px 0 70px;
}

.approach-pills span {
  color: var(--navy);
  background: var(--soft);
  border-color: var(--line);
}

.approach-pills span:last-child {
  color: var(--green);
  background: var(--green-pale);
  border-color: var(--green-pale);
}

.commercial-model {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 44px;
  padding: 44px;
  border-top: 5px solid var(--red);
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.commercial-copy h3 {
  color: var(--white);
  font-size: 1.8rem;
}

.commercial-copy p:not(.eyebrow) {
  color: #b8cad7;
}

.commercial-copy > strong {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
}

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

.commercial-flow li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px 15px;
  border: 1px solid rgba(134, 191, 240, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.commercial-flow li > span {
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 700;
}

.commercial-flow strong {
  display: block;
  color: var(--white);
}

.commercial-flow p {
  margin: 3px 0 0;
  color: #a9bece;
  font-size: 0.83rem;
}

/* Results */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
  align-items: stretch;
}

.case-study-chart {
  display: grid;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.industry-chart {
  gap: 15px;
  padding: 32px 34px;
}

.case-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.88rem;
}

.case-label strong {
  white-space: nowrap;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  background: #e9eef2;
}

.bar-track span {
  display: block;
  width: var(--bar);
  height: 100%;
  background: var(--blue-strong);
}

.industry-chart article:nth-child(4n + 2) .bar-track span {
  background: var(--navy-2);
}

.industry-chart article:nth-child(4n + 3) .bar-track span {
  background: var(--green);
}

.industry-chart article:nth-child(4n + 4) .bar-track span {
  background: var(--red);
}

.combined-savings {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: #d9e5ed;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.combined-savings > span {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.combined-savings > strong {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combined-savings p {
  margin: 0;
  font-size: 0.88rem;
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.results-metrics > div {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.results-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 1.35rem;
}

.results-metrics span {
  color: var(--slate);
  font-size: 0.76rem;
}

.results-note {
  max-width: 1040px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.69rem;
  text-align: center;
}

/* Fit */
.fit-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.fit-lede {
  color: var(--slate);
  font-size: 1.08rem;
}

.fit-big-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.fit-big-metrics > div {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.fit-big-metrics strong {
  display: block;
  color: var(--red);
  font-size: 2rem;
}

.fit-big-metrics span {
  color: var(--slate);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.fit-signals {
  padding: 40px;
  color: #d8e4ec;
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.fit-signals h3 {
  color: var(--white);
}

.fit-signals .check-list li::before {
  background: var(--blue-strong);
}

.buying-committee {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(134, 191, 240, 0.18);
}

.buying-committee > div {
  padding: 14px;
  border: 1px solid rgba(134, 191, 240, 0.14);
}

.buying-committee span,
.buying-committee strong {
  display: block;
}

.buying-committee span {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buying-committee strong {
  color: var(--white);
  font-size: 0.86rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px 80px;
}

.about-grid > div:first-child p:not(.eyebrow) {
  color: #b9ccd9;
}

.about-quote {
  margin-top: 36px;
  padding: 24px 26px;
  border-left: 4px solid var(--red);
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  font-size: 1.05rem;
  font-weight: 700;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.credential-grid > div {
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(134, 191, 240, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.credential-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 2.1rem;
}

.credential-grid span {
  color: #c5d5df;
  font-size: 0.84rem;
}

.about-details {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-details article {
  padding: 28px;
  border: 1px solid rgba(134, 191, 240, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.about-details h3 {
  color: var(--white);
}

.about-details p {
  margin: 0;
  color: #adc3d1;
}

/* Partner channel */
.partner-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
}

.partner-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(14, 43, 69, 0.06);
}

.partner-card-primary {
  color: #dce8f0;
  background: var(--navy);
}

.partner-card span,
.partner-callout strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.55rem;
}

.partner-card-primary h3 {
  color: var(--white);
}

.partner-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.94rem;
}

.partner-card-primary p {
  color: #b7c9d6;
}

.partner-callout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(46, 120, 183, 0.22);
  border-radius: 8px;
  background: #ffffff;
}

.partner-callout strong {
  margin: 0;
}

.partner-callout p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.partner-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 0.83rem;
  font-weight: 800;
  white-space: nowrap;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-h) + 35px);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--slate);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

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

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--red);
  transform: translateY(-50%);
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  padding: 0 54px 24px 0;
  margin: 0;
  color: var(--slate);
}

/* Contact */
.contact-section {
  color: #d8e4ec;
  background: #0b253c;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

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

.contact-copy > p:not(.eyebrow) {
  color: #b7c9d6;
  font-size: 1.05rem;
}

.confidential-note {
  padding: 14px 16px;
  border: 1px solid rgba(134, 191, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0;
  list-style: none;
}

.contact-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 16px;
  border: 1px solid rgba(134, 191, 240, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.contact-steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-steps strong {
  display: block;
  color: var(--white);
}

.contact-steps p {
  margin: 3px 0 0;
  color: #a9bdcc;
  font-size: 0.82rem;
}

.contact-direct {
  padding-top: 25px;
  border-top: 1px solid rgba(134, 191, 240, 0.16);
}

.contact-direct span,
.contact-direct a {
  display: block;
}

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

.contact-direct a {
  margin-top: 5px;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.contact-downloads a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-reassurance {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(134, 191, 240, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-reassurance strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-reassurance p {
  margin: 0;
  color: #b7c9d6;
  font-size: 0.9rem;
}

.form-card {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

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

.form-intent {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.form-intent label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.form-card label,
.form-card legend {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-card label {
  display: block;
  margin-bottom: 16px;
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cbd4dc;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
}

.form-card input[type="text"],
.form-card input[type="email"],
.form-card select {
  height: 48px;
  padding: 0 12px;
}

.form-card textarea {
  padding: 11px 12px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--blue-strong);
  box-shadow: 0 0 0 3px rgba(46, 120, 183, 0.12);
  outline: none;
}

.form-card fieldset {
  padding: 0;
  margin: 5px 0 18px;
  border: 0;
}

.form-card legend {
  margin-bottom: 10px;
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 400;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.form-note a {
  color: var(--blue-strong);
  text-decoration: underline;
}

.form-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.form-status.error {
  color: var(--red);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */
.site-footer {
  padding: 48px 0 28px;
  color: #b8cad7;
  background: #071b2c;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 92px;
  height: auto;
  padding: 4px;
  background: var(--white);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

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

.footer-brand span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.footer-links a,
.footer-contact {
  font-size: 0.8rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact a,
.footer-contact span {
  display: block;
}

.footer-contact a {
  color: var(--white);
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(134, 191, 240, 0.12);
  color: #7893a6;
  font-size: 0.7rem;
}

/* Preview/edit tools */
.preview-tools {
  position: fixed;
  z-index: 3000;
  right: 16px;
  bottom: 16px;
  display: flex;
  max-width: 420px;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-strong);
  font-size: 0.73rem;
}

.preview-tools[hidden] {
  display: none;
}

.preview-tools strong {
  width: 100%;
}

.preview-tools .preview-version {
  width: 100%;
  color: var(--blue-strong);
  font-weight: 800;
}

.preview-tools button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.preview-tools span {
  width: 100%;
  color: var(--muted);
}

.preview-version-badge {
  position: fixed;
  z-index: 2500;
  top: calc(var(--header-h) + 12px);
  right: 14px;
  padding: 4px 9px;
  border: 1px solid rgba(46, 120, 183, 0.22);
  border-radius: 999px;
  color: var(--blue-strong);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(14, 43, 69, 0.1);
  font-size: 0.72rem;
  font-weight: 800;
}

.preview-version-badge[hidden] {
  display: none;
}

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

body.is-editing [data-editable] {
  position: relative;
  border-radius: 2px;
  outline: 2px dashed rgba(200, 68, 58, 0.62);
  outline-offset: 3px;
  cursor: text;
}

body.is-editing [data-editable]:focus {
  background: rgba(255, 241, 122, 0.18);
  outline-style: solid;
}

/* Privacy and utility pages */
.utility-page {
  min-height: 100vh;
  background: var(--soft);
}

.utility-main {
  padding: 80px 0 110px;
}

.utility-card {
  max-width: 850px;
  padding: 50px;
  margin: 0 auto;
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: var(--shadow);
}

.utility-card h1 {
  font-size: 4rem;
}

.utility-card h2 {
  margin-top: 40px;
  font-size: 1.5rem;
}

.utility-card p,
.utility-card li {
  color: var(--slate);
}

.utility-card a {
  color: var(--blue-strong);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 1080px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .scope-card:nth-child(4),
  .scope-card:nth-child(5) {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(calc(100% - 34px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .brand {
    max-width: 68vw;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a:not(.button) {
    padding: 10px 4px;
    font-size: 0.9rem;
  }

  .nav-toggle[aria-expanded="true"] .nav-bar-one {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-bar-two {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-bar-three {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .technology-grid,
  .quick-fit-layout,
  .fit-grid,
  .about-grid,
  .partner-grid,
  .partner-callout,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 0;
    margin: 0 auto;
  }

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

  .metric:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .information-gap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .info-panel {
    min-height: 0;
  }

  .gap-arrow {
    flex-direction: row;
    min-height: 70px;
  }

  .gap-arrow svg {
    transform: rotate(90deg);
  }

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

  .scope-card {
    min-height: 330px;
  }

  .technology-target {
    width: 280px;
    height: 280px;
    margin-inline: auto;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 18px;
  }

  .process-grid::before {
    display: none;
  }

  .process-number {
    margin-top: -54px;
  }

  .commercial-model,
  .review-grid,
  .results-layout {
    grid-template-columns: 1fr;
  }

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

  .partner-callout {
    align-items: start;
  }

  .review-card {
    min-height: 0;
  }

  .assurance-band {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .about-details {
    grid-column: auto;
  }

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

  .footer-brand {
    justify-content: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 26px), var(--max));
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .brand {
    gap: 8px;
    max-width: 76vw;
  }

  .brand-mark {
    width: 82px;
  }

  .brand-name {
    font-size: 0.78rem;
  }

  .brand-line {
    font-size: 0.49rem;
  }

  .hero {
    padding: 58px 0 60px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    padding: 18px 10px;
  }

  .target-node text {
    font-size: 16px;
  }

  .metrics-grid,
  .quick-fit-cards,
  .review-grid,
  .scope-grid,
  .lens-grid,
  .process-grid,
  .results-metrics,
  .fit-big-metrics,
  .credential-grid,
  .about-details,
  .form-row,
  .form-intent,
  .checkbox-grid,
  .buying-committee {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 26px;
  }

  .review-card h3 {
    font-size: 1.45rem;
  }

  .assurance-band > div {
    padding: 22px;
  }

  .metric,
  .metric:first-child,
  .metric:nth-child(3) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .metric:not(:last-child) {
    border-bottom: 0;
  }

  .quick-fit-strip {
    padding: 34px 0;
  }

  .quick-fit-cards article {
    min-height: 0;
    padding: 20px;
  }

  .bank-factor-grid {
    grid-template-columns: 1fr;
  }

  .lens-card {
    grid-template-columns: 54px 1fr;
    gap: 15px;
    padding: 22px;
  }

  .lens-icon {
    width: 50px;
    height: 50px;
  }

  .technology-target {
    width: 220px;
    height: 220px;
  }

  .t-ring-two {
    inset: 42px;
  }

  .process-grid {
    gap: 42px;
  }

  .commercial-model,
  .case-study-chart,
  .combined-savings,
  .fit-signals,
  .partner-card,
  .partner-callout,
  .form-card,
  .utility-card {
    padding: 26px;
  }

  .partner-card {
    min-height: 0;
  }

  .case-label {
    flex-direction: column;
    gap: 1px;
  }

  .contact-downloads {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }

  .preview-tools {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-width: none;
  }

  .mobile-quick-cta {
    position: fixed;
    z-index: 2900;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(14, 43, 69, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 44px rgba(14, 43, 69, 0.18);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.show-mobile-cta .mobile-quick-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-quick-cta a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: var(--red);
    font-size: 0.82rem;
    font-weight: 800;
  }

  .mobile-quick-cta a:last-child {
    color: var(--navy);
    background: var(--soft);
  }
}

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

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

/* Cross-device hardening: desktop, tablet, and phone */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
}

main,
section,
.container,
.hero-grid > *,
.contact-grid > *,
.about-grid > *,
.fit-grid > *,
.results-layout > *,
.technology-grid > * {
  min-width: 0;
}

img,
svg,
video,
iframe {
  height: auto;
}

.button,
.nav-toggle,
.site-nav a,
input,
select,
textarea,
summary {
  min-height: 44px;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
}

p,
li,
h1,
h2,
h3,
a,
.metric-value,
.case-label,
.contact-email {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    padding-top: 48px;
  }

  .site-nav.is-open {
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero-grid {
    gap: 46px;
  }

  .scope-card,
  .process-card,
  .lens-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  body {
    font-size: 15.5px;
  }

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

  .site-header .container {
    min-height: var(--header-h);
  }

  .site-nav {
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .site-nav .button {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    gap: 12px;
  }

  .button {
    justify-content: center;
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .metric-value {
    font-size: 2.75rem;
  }

  .technology-target {
    max-width: 72vw;
    max-height: 72vw;
  }

  .form-card input,
  .form-card select,
  .form-card textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
}
