:root {
  --navy-950: #06142e;
  --navy-900: #081b39;
  --navy-850: #0a2347;
  --navy-800: #0f2e55;
  --navy-700: #174b7a;
  --navy-100: #eaf0f7;
  --red-600: #e31c36;
  --red-700: #bd1128;
  --red-100: #fde9ec;
  --ink-900: #101828;
  --ink-700: #344054;
  --ink-600: #475467;
  --ink-500: #667085;
  --line: #d7dfe9;
  --line-dark: rgba(255, 255, 255, 0.16);
  --canvas: #f4f6f8;
  --canvas-warm: #faf9f7;
  --white: #ffffff;
  --success: #157347;
  --amber: #a15c00;
  --shadow-sm: 0 10px 28px rgba(6, 20, 46, 0.07);
  --shadow-md: 0 24px 64px rgba(6, 20, 46, 0.12);
  --container: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--red-600);
}

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

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

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

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

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.3rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

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

.container--narrow {
  width: min(920px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 14px;
  left: 14px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red-600);
  border-radius: var(--radius-sm);
  font-weight: 750;
}

.skip-link:not(:focus):not(:active) {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(227, 28, 54, 0.38);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: #ffb4be;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section--tight-top {
  padding-top: 72px;
}

.section--very-tight-top {
  padding-top: 48px;
}

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

.section--warm {
  background: var(--canvas-warm);
}

.section--ink {
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 28, 54, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.section--ink h2,
.section--ink h3,
.section--ink h4 {
  color: var(--white);
}

.section--ink p,
.section--ink li {
  color: rgba(255, 255, 255, 0.74);
}

.section-header {
  max-width: 880px;
  margin-bottom: 52px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1.1rem;
}

.section--ink .section-header > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.section-header--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.7fr;
  gap: 72px;
  align-items: end;
}

.section-header--split > p {
  margin-bottom: 8px;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 88px;
  align-items: start;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro__copy p {
  max-width: 760px;
  color: var(--ink-600);
  font-size: 1.075rem;
}

.section-intro__copy p:last-child {
  margin-bottom: 0;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1200;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(215, 223, 233, 0.88);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(6, 20, 46, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  color: var(--navy-950);
}

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

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.12;
}

.brand-copy strong {
  font-size: 1.04rem;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--ink-500);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav > a {
  position: relative;
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 720;
  white-space: nowrap;
}

.site-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav > a:not(.header-cta):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--red-600);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 22px rgba(227, 28, 54, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--red-700);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-950);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 780;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn::after {
  content: none;
}

a.btn::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

a.btn:hover::after {
  transform: translateX(3px);
}

.btn--primary {
  color: var(--white);
  background: var(--red-600);
  box-shadow: 0 8px 18px rgba(227, 28, 54, 0.18);
}

.btn--primary:hover {
  background: var(--red-700);
  box-shadow: 0 10px 22px rgba(189, 17, 40, 0.22);
}

.btn--secondary {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

.btn--ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.68);
}

.btn--outline {
  color: var(--navy-950);
  background: transparent;
  border-color: var(--navy-700);
}

.btn--outline:hover {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-700);
  font-weight: 760;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--red-600);
  text-decoration-color: currentColor;
}

.text-link--arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link--arrow:hover::after {
  transform: translateX(3px);
}

.section--ink .text-link,
.cta-section .text-link,
.legal-hero .text-link {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.44);
}

.section--ink .text-link:hover,
.cta-section .text-link:hover,
.legal-hero .text-link:hover {
  color: var(--white);
  text-decoration-color: var(--white);
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(227, 28, 54, 0.24), transparent 27%),
    radial-gradient(circle at 90% 16%, rgba(23, 75, 122, 0.45), transparent 31%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-800) 100%);
}

.home-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.home-hero::after {
  position: absolute;
  z-index: 0;
  right: -240px;
  bottom: -340px;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 92px rgba(255, 255, 255, 0.025),
    0 0 0 184px rgba(255, 255, 255, 0.018);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 710px;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 40px 56px;
  align-items: center;
  padding: 92px 0 100px;
}

.home-hero__copy {
  max-width: 650px;
}

.home-hero__visual {
  min-height: 600px;
  margin: 0;
  overflow: hidden;
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
}

.home-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: 48% center;
}

.home-hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.15rem, 4.6vw, 4rem);
}

.home-hero h1 span {
  color: #d8e5f4;
}

.home-hero__lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  line-height: 1.62;
}

.hero-proof {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.hero-proof li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-proof li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--red-600);
}

.framework-card {
  position: relative;
  padding: 34px;
  background: rgba(15, 46, 85, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.framework-card::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 4px;
  content: "";
  background: var(--red-600);
}

.framework-card__header {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.framework-card__header h2 {
  max-width: 330px;
  margin: 0;
  color: var(--white);
  font-size: 1.78rem;
  line-height: 1.18;
}

.framework-card__header span {
  display: inline-flex;
  padding: 7px 10px;
  color: #d4e0ee;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.framework-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.framework-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.framework-steps strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border-radius: 50%;
  font-size: 0.76rem;
}

.framework-steps span {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 720;
}

.framework-card > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

.framework-section {
  background: var(--canvas-warm);
}

.framework-card--wide {
  max-width: 1120px;
  margin-inline: auto;
}

/* Principles */
.principle-strip {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-strip > div {
  padding: 22px 24px 22px 0;
}

.principle-strip > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.principle-strip strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-950);
  font-size: 0.92rem;
}

.principle-strip span {
  color: var(--ink-500);
  font-size: 0.82rem;
}



/* Diagram showcases */
.diagram-showcase .section-header,
.diagram-figure + .section-header {
  margin-bottom: 36px;
}

.diagram-figure {
  margin: 44px 0 0;
}

.diagram-figure--integrated,
.diagram-figure--audience {
  margin-top: 56px;
}

.diagram-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.diagram-viewport:focus-visible {
  outline: 3px solid rgba(227, 28, 54, 0.32);
  outline-offset: 6px;
}

.diagram-viewport img {
  width: 100%;
  height: auto;
  min-width: 0;
  border-radius: calc(var(--radius-lg) - 1px);
}

.diagram-caption {
  margin-top: 14px;
  color: var(--ink-500);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Capability cards */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.capability-card {
  position: relative;
  display: grid;
  min-height: 270px;
  grid-template-columns: 52px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.capability-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(var(--red-600), var(--navy-700));
}

.capability-card:hover {
  border-color: #b7c4d4;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.capability-card__number {
  color: var(--red-600);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.capability-card h3 {
  margin-bottom: 14px;
}

.capability-card p {
  margin: 0;
  color: var(--ink-600);
}

.capability-card__arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.capability-card:hover .capability-card__arrow {
  color: var(--white);
  background: var(--red-600);
  border-color: var(--red-600);
  transform: translateX(3px);
}

/* Diagnostic */
.diagnostic-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.diagnostic-feature h2 {
  margin-bottom: 20px;
}

.diagnostic-feature__copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-600);
  font-size: 1.06rem;
}

.outcome-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-700);
  font-weight: 620;
}

.outcome-list li::before {
  position: absolute;
  top: 0.3em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--navy-700);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 900;
}

.diagnostic-output {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.diagnostic-output__head {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.diagnostic-output__head strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.diagnostic-output__head span {
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.diagnostic-row {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.7fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  font-size: 0.9rem;
}

.diagnostic-row--head {
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  min-width: 84px;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-pill--priority {
  color: #9d1021;
  background: var(--red-100);
}

.status-pill--watch {
  color: #8a5200;
  background: #fff1d6;
}

.status-pill--ready {
  color: #12643f;
  background: #e3f5eb;
}

/* Audience and difference */
.audience-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  display: inline-flex;
  padding: 11px 14px;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 720;
}

.difference-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.difference-card {
  padding: 32px 34px 0 0;
}

.difference-card + .difference-card {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.difference-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.difference-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.difference-card p {
  margin: 0;
  color: var(--ink-600);
}

/* Subpage hero */
.subhero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 10%, rgba(227, 28, 54, 0.23), transparent 25%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.subhero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 68px 68px;
}

.subhero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 84px;
  align-items: center;
  padding: 88px 0 96px;
}

.subhero-grid--visual {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 56px;
}

.subhero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 4.4vw, 4rem);
}

.subhero__lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
}

.subhero-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
}

.subhero-panel__label {
  margin-bottom: 18px;
  color: #ffb4be;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subhero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.subhero-panel li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.94rem;
  font-weight: 650;
}

.subhero-panel li::before {
  width: 7px;
  height: 7px;
  margin-top: 0.58em;
  flex: 0 0 7px;
  content: "";
  background: var(--red-600);
}

.subhero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.28);
}

.subhero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.page--ma .subhero-visual > img {
  object-position: 42% center;
}

.page--acquisition .subhero-visual > img {
  object-position: 55% center;
}

.page--value .subhero-visual > img {
  object-position: 56% center;
}

.page--contact .subhero-visual > img {
  object-position: right center;
}

.subhero-panel--overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px 24px;
  background: rgba(6, 20, 46, 0.91);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.page--contact .subhero-panel--overlay,
.page--ma .subhero-panel--overlay,
.page--acquisition .subhero-panel--overlay,
.page--value .subhero-panel--overlay {
  background: rgba(6, 20, 46, 0.75);
}

.subhero-panel--overlay .subhero-panel__label {
  margin-bottom: 8px;
}

.subhero-panel--overlay ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.subhero-panel--overlay li {
  padding: 10px 0;
  font-size: 0.82rem;
}

/* Phase / roadmap */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.phase-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.phase-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 3px;
  content: "";
  background: var(--red-600);
}

.phase-card__number {
  display: block;
  margin-bottom: 30px;
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.phase-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.phase-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.92rem;
}

/* Service cards / content grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  position: relative;
  min-height: 220px;
  padding: 32px 32px 30px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: linear-gradient(var(--red-600), var(--navy-700));
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.service-item p {
  margin: 0;
  color: var(--ink-600);
}

.service-item p + p {
  margin-top: 14px;
}

.service-item p strong {
  color: var(--navy-950);
}

.focused-engagement-grid {
  gap: 18px 20px;
}

.focused-engagement-grid .service-item {
  min-height: 0;
  padding: 28px 30px;
}

.service-item--featured {
  background: linear-gradient(180deg, var(--white), #f7faff);
  border-color: rgba(23, 75, 122, 0.46);
  box-shadow: var(--shadow-sm);
}

.service-item__kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.focused-engagement-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}

.engagement-rationale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 34px;
}

.engagement-rationale-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.engagement-rationale-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.engagement-rationale-card p {
  margin: 0;
  color: var(--ink-600);
}

.roadmap-note {
  margin: 24px 0 0;
  color: var(--ink-500);
  font-size: 0.88rem;
  font-style: italic;
}

/* Risk / question bands */
.question-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 82px;
  align-items: start;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-list li {
  position: relative;
  padding: 16px 18px 16px 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 650;
}

.question-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "✓";
  color: var(--white);
  background: var(--navy-700);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 900;
}

.question-list--light li {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.question-list--light li::before {
  color: var(--white);
}

.common-leaks-layout {
  display: grid;
  grid-template-areas:
    "image intro"
    "image list";
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 30px 68px;
  align-items: start;
}

.common-leaks-intro {
  grid-area: intro;
}

.common-leaks-intro h2 {
  color: var(--white);
}

.common-leaks-intro > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.common-leaks-image {
  grid-area: image;
  height: 100%;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.common-leaks-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.common-leaks-list {
  grid-area: list;
}

/* Readiness */
.buyer-readiness-layout {
  display: grid;
  grid-template-areas:
    "header image"
    "panel image";
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 30px 56px;
  align-items: start;
}

.buyer-readiness-header {
  grid-area: header;
}

.buyer-readiness-header > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-600);
}

.buyer-readiness-image {
  grid-area: image;
  height: 500px;
  margin: 0;
  overflow: hidden;
  align-self: center;
  background: var(--navy-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.buyer-readiness-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.readiness-panel {
  grid-area: panel;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.readiness-row {
  display: grid;
  grid-template-columns: 48px 1fr 120px;
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}

.readiness-row:first-child {
  border-top: 0;
}

.readiness-row__number {
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.readiness-row h3 {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.readiness-row p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.9rem;
}

.readiness-tag {
  justify-self: end;
  padding: 7px 11px;
  color: var(--navy-700);
  background: var(--navy-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 820;
}

/* Founder profile / approach */
.founder-profile__layout,
.founder-preview__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: start;
}

.founder-profile__photo,
.founder-preview__photo {
  overflow: hidden;
  margin: 0;
  background: var(--navy-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.founder-profile__photo img,
.founder-preview__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-profile__content h2,
.founder-preview__content h2 {
  margin-bottom: 10px;
}

.founder-profile__content > p:not(.eyebrow):not(.founder-profile__role):not(.founder-profile__company):not(.founder-profile__specialisms),
.founder-preview__content > p:not(.eyebrow):not(.founder-preview__role) {
  color: var(--ink-600);
  font-size: 1.02rem;
}

.founder-profile__role,
.founder-preview__role {
  margin-bottom: 2px;
  color: var(--navy-800);
  font-size: 1.18rem;
  font-weight: 800;
}

.founder-profile__company {
  margin-bottom: 8px;
  color: var(--ink-600);
  font-weight: 720;
}

.founder-profile__specialisms {
  margin-bottom: 28px;
  color: var(--red-600);
  font-size: 0.9rem;
  font-weight: 820;
  letter-spacing: 0.015em;
}

.founder-profile__specialisms span {
  margin: 0 7px;
  color: var(--ink-500);
}

.founder-profile__quote {
  margin: 30px 0 0;
  padding: 24px 26px;
  color: var(--navy-800);
  background: var(--navy-100);
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 680;
}

.founder-preview {
  background: var(--white);
}

.founder-preview__layout {
  align-items: center;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
}

.founder-preview__photo {
  max-width: 360px;
}

.founder-preview__content {
  max-width: 720px;
}

.founder-preview__content > p:not(.eyebrow):not(.founder-preview__role) {
  margin-bottom: 30px;
}

.founder-preview__role {
  margin-bottom: 18px;
}

.leadership-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: stretch;
}

.leadership-copy {
  padding: 14px 0;
}

.leadership-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-600);
  font-size: 1.02rem;
}

.leadership-panel {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 26% 22%, rgba(227, 28, 54, 0.42), transparent 30%),
    linear-gradient(145deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.leadership-panel::before {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 112px;
  height: 112px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035);
}

.profile-monogram {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--white);
  background: var(--red-600);
  border-radius: 50%;
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.leadership-panel h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 2rem;
}

.leadership-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.approach-step {
  min-height: 235px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.approach-step span {
  display: block;
  margin-bottom: 30px;
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 850;
}

.approach-step h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.approach-step p {
  margin: 0;
  color: var(--ink-600);
  font-size: 0.92rem;
}

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

.value-principle {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.value-principle span {
  display: block;
  margin-bottom: 18px;
  color: #ffb4be;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.value-principle h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.value-principle p {
  margin: 0;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 34px;
  align-items: start;
}

.contact-aside,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 34px;
}

.contact-aside h2 {
  margin-bottom: 16px;
  font-size: 2.2rem;
}

.contact-aside > p:not(.eyebrow) {
  color: var(--ink-600);
}

.contact-details {
  margin-top: 30px;
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-500);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  color: var(--navy-950);
  font-weight: 720;
}

.contact-detail a:hover {
  color: var(--red-600);
}

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

.preview-notice {
  display: flex;
  grid-column: 1 / -1;
  padding: 16px 18px;
  align-items: baseline;
  gap: 8px;
  color: var(--navy-800);
  background: var(--navy-100);
  border: 1px solid rgba(23, 75, 122, 0.22);
  border-left: 4px solid var(--red-600);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
}

.preview-notice strong {
  color: var(--navy-950);
  white-space: nowrap;
}

[hidden] {
  display: none !important;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field--full,
.consent-field,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-field label,
.form-field > span {
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 760;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(23, 75, 122, 0.12);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  padding-top: 20px;
  align-items: start;
  color: var(--ink-600);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.55;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--red-600);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.form-actions small {
  max-width: 420px;
  color: var(--ink-500);
  line-height: 1.5;
}

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

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--navy-700);
  font-size: 0.86rem;
  font-weight: 650;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--red-700);
}

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

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

.location-card {
  display: grid;
  min-height: 360px;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-copy {
  padding: 44px;
  align-self: center;
}

.location-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.location-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-600);
  font-size: 1.05rem;
}

.map-consent {
  display: grid;
  padding: 44px;
  place-content: center;
  justify-items: start;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 20, 46, 0.94), rgba(15, 46, 85, 0.91)),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.07) 49%, rgba(255, 255, 255, 0.07) 51%, transparent 52%);
  background-size: auto, 34px 34px;
}

.map-consent strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.5rem;
}

.map-consent p {
  max-width: 520px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.75);
}

.location-map {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.confidentiality-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.confidentiality-panel p {
  color: var(--ink-600);
}

/* CTA */
.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.cta-section--photo {
  background-color: var(--navy-950);
  background-position: center;
  background-size: cover;
}

.cta-section::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  content: "";
  background: var(--red-600);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  padding: 76px 0;
}

.cta-inner h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

.cta-inner p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
  padding: 58px 0;
}

.cta-home-content h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.15rem, 3.7vw, 3.45rem);
}

.cta-home-content p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-home-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.cta-home-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Legal */
.legal-hero {
  padding: 92px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.legal-hero h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  max-width: 940px;
}

.legal-content > p,
.legal-content li {
  color: var(--ink-600);
}

.legal-content h2 {
  margin: 42px 0 14px;
  padding-top: 10px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #040d21;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.7fr 1fr;
  gap: 58px;
  padding: 56px 0 40px;
}

.footer-brand-lockup {
  display: inline-flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.footer-brand-lockup img {
  width: 70px;
  height: 70px;
}

.footer-brand-lockup strong {
  display: block;
  max-width: 190px;
  font-size: 1rem;
  line-height: 1.25;
}

.footer-summary {
  max-width: 380px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin-bottom: 14px;
  font-size: 0.88rem;
}

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

.footer-bottom {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

.compliance-note {
  padding: 18px 0 26px;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-compact-main {
  display: flex;
  padding: 34px 0 24px;
  align-items: center;
  justify-content: space-between;
}

.site-footer--compact .footer-brand-lockup {
  margin-bottom: 0;
}

.site-footer--compact .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
  .container,
  .container--narrow {
    width: min(var(--container), calc(100% - 48px));
  }

  .brand-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .brand-copy small {
    display: none;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav > a {
    font-size: 0.76rem;
  }

  .site-nav .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.74rem;
  }

  .home-hero-grid,
  .subhero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-hero-grid {
    min-height: auto;
    padding: 86px 0 92px;
  }

  .framework-card {
    max-width: 760px;
  }

  .subhero-grid {
    min-height: auto;
    padding: 78px 0 86px;
  }

  .subhero-panel {
    max-width: 760px;
  }

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

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 36px;
  }
}

@media (max-width: 1100.98px) {
  :root {
    --header-height: 88px;
  }

  .header-inner {
    display: flex;
    gap: 16px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 44px rgba(6, 20, 46, 0.12);
  }

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

  .site-nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav > a:not(.header-cta)::after {
    display: none;
  }

  .site-nav > a[aria-current="page"] {
    color: var(--red-600);
  }

  .site-nav .header-cta {
    min-height: 46px;
    margin-top: 16px;
    padding: 0 18px;
    border-bottom: 0;
    font-size: 0.86rem;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .cta-home-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 50px 0;
  }

  .cta-home-content {
    max-width: 760px;
  }

  .section-header--split,
  .section-intro,
  .diagnostic-feature,
  .audience-layout,
  .question-layout,
  .founder-profile__layout,
  .founder-preview__layout,
  .leadership-feature,
  .contact-layout,
  .location-card,
  .confidentiality-panel {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .engagement-rationale-grid {
    grid-template-columns: 1fr;
  }

  .founder-profile__photo {
    width: 100%;
    max-width: 620px;
  }

  .founder-preview__photo {
    width: 100%;
    max-width: 360px;
  }

  .section-header--split {
    align-items: start;
  }

  .capability-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
  }

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

  .difference-grid,
  .value-principles {
    grid-template-columns: 1fr;
  }

  .difference-card,
  .difference-card + .difference-card {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .difference-card:last-child {
    border-bottom: 0;
  }

  .contact-aside {
    position: static;
  }

  .location-card {
    gap: 0;
  }

  .common-leaks-layout {
    grid-template-areas:
      "intro"
      "image"
      "list";
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .common-leaks-image {
    height: 400px;
    min-height: 0;
  }

  .buyer-readiness-layout {
    grid-template-areas:
      "header"
      "image"
      "panel";
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .buyer-readiness-image {
    height: 420px;
  }

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

@media (max-width: 680px) {
  .container,
  .container--narrow {
    width: min(100% - 32px, var(--container));
  }

  .brand-copy strong {
    max-width: 155px;
    font-size: 0.86rem;
    line-height: 1.15;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .section {
    padding: 72px 0;
  }

  .section--tight-top,
  .section--very-tight-top {
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .home-hero-grid {
    padding: 68px 0 76px;
  }

  .home-hero h1,
  .subhero h1 {
    font-size: clamp(2.5rem, 11vw, 3.35rem);
  }

  .hero-proof {
    display: grid;
    gap: 8px;
  }

  .framework-card,
  .diagnostic-output,
  .contact-aside,
  .contact-form,
  .location-copy,
  .map-consent {
    padding: 24px;
  }

  .home-hero__visual,
  .home-hero__visual img {
    min-height: 0;
  }

  .home-hero__visual img {
    height: 330px;
  }

  .subhero-visual,
  .subhero-visual > img {
    min-height: 0;
  }

  .subhero-visual > img {
    height: 330px;
  }

  .subhero-panel--overlay {
    position: static;
    border-width: 1px 0 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .subhero-panel--overlay ul {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 320px;
  }

  .common-leaks-image,
  .buyer-readiness-image {
    height: 320px;
  }

  .framework-card__header {
    display: grid;
  }

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

  .principle-strip > div,
  .principle-strip > div + div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .principle-strip > div:first-child {
    border-top: 0;
  }

  .capability-card {
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding: 26px;
  }

  .capability-card__arrow {
    display: none;
  }

  .phase-grid,
  .phase-grid--five,
  .approach-grid,
  .question-list {
    grid-template-columns: 1fr;
  }

  .phase-card,
  .approach-step {
    min-height: auto;
  }

  .diagnostic-row {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .diagnostic-row > :last-child {
    display: none;
  }

  .readiness-row {
    grid-template-columns: 34px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .readiness-tag {
    display: none;
  }

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

  .form-field,
  .form-field--full,
  .consent-field,
  .form-actions,
  .form-status,
  .preview-notice {
    grid-column: 1;
  }

  .preview-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row,
  .form-actions,
  .focused-engagement-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .btn,
  .form-actions .btn,
  .focused-engagement-actions .btn {
    width: 100%;
  }

  .cta-home-content .btn {
    width: 100%;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 0;
  }

  .cta-inner .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 58px 0 42px;
  }

  .footer-compact-main {
    padding: 30px 0 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 760px) {
  .diagram-figure {
    margin-top: 30px;
  }

  .diagram-viewport {
    border-radius: var(--radius-md);
  }

  .diagram-viewport img {
    width: 940px;
    max-width: none;
    border-radius: calc(var(--radius-md) - 1px);
  }

  .diagram-figure--audience .diagram-viewport img,
  .diagram-figure--integrated .diagram-viewport img {
    width: 900px;
  }

  .diagram-caption::after {
    content: " Swipe horizontally to view the full diagram.";
  }
}
