:root {
  --ink: #10202c;
  --muted: #5f6f7a;
  --paper: #f6f8f8;
  --white: #ffffff;
  --navy: #071827;
  --blue: #0c5276;
  --teal: #11a8a3;
  --green: #66b24f;
  --amber: #f2a51a;
  --coral: #d95f54;
  --line: rgba(16, 32, 44, 0.12);
  --shadow: 0 24px 70px rgba(7, 24, 39, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: 0;
}

body::selection {
  background: rgba(17, 168, 163, 0.24);
}

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

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

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

svg {
  width: 1.15rem;
  height: 1.15rem;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 17, 29, 0.95) 0%, rgba(5, 17, 29, 0.84) 35%, rgba(5, 17, 29, 0.24) 70%, rgba(5, 17, 29, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 17, 29, 0.68) 0%, rgba(5, 17, 29, 0) 32%, rgba(5, 17, 29, 0.72) 100%);
  z-index: -1;
}

.topbar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 17, 29, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.topbar__links a {
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  transition: background 180ms ease, color 180ms ease;
}

.topbar__links a:hover,
.topbar__links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.hero__content {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(86svh - 100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 28px;
  padding: 42px 0 30px;
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero__copy {
  max-width: 760px;
  padding: 30px;
  background: rgba(5, 17, 29, 0.68);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.closing h2 {
  margin: 0;
  font-weight: 840;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: 3.75rem;
}

.lead {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-action {
  background: var(--teal);
  color: #032321;
  box-shadow: 0 18px 40px rgba(17, 168, 163, 0.28);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero__panel {
  align-self: end;
  padding: 22px;
  background: rgba(255, 255, 255, 0.13);
}

.status-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.status-line strong {
  color: var(--white);
  text-align: right;
}

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

.metric-grid div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.metric-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.section--intro {
  padding-top: 58px;
  background:
    linear-gradient(180deg, #f6f8f8 0%, #eef5f2 100%);
}

.section--image,
.section--crm,
.section--method,
.section--after {
  background: var(--navy);
  color: var(--white);
}

.section--timeline {
  background:
    linear-gradient(180deg, #eef5f2 0%, #f7f8f5 100%);
}

.section--framework {
  background: #ffffff;
}

.section--deliverables {
  background: #f1f6f7;
}

.section--numbers {
  background: #10202c;
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 44px;
}

.section-copy h2,
.section-heading h2,
.dark-card h2,
.light-card h2,
.numbers-shell h2 {
  font-size: 2.72rem;
}

.section-copy p,
.section-heading p,
.dark-card p,
.light-card p,
.closing p {
  color: var(--muted);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading p {
  max-width: 760px;
  margin-top: 16px;
}

.diagnostic-shell {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(16, 32, 44, 0.08);
  background: var(--navy);
}

.diagnostic-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.92), rgba(7, 24, 39, 0.42) 58%, rgba(7, 24, 39, 0.16)),
    linear-gradient(180deg, rgba(7, 24, 39, 0.04), rgba(7, 24, 39, 0.92));
  pointer-events: none;
}

.diagnostic-media,
.briefing-media,
.method-media,
.journey-media,
.after-media {
  margin: 0;
}

.diagnostic-media {
  position: absolute;
  inset: 0;
}

.diagnostic-media img,
.briefing-media img,
.method-media img,
.journey-media img,
.after-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diagnostic-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 42px;
  color: var(--white);
}

.diagnostic-copy h2 {
  margin: 0;
  font-size: 2.72rem;
  line-height: 1.06;
}

.diagnostic-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.diagnostic-board {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.diagnostic-chip {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.diagnostic-chip span,
.diagnostic-chip strong {
  display: block;
}

.diagnostic-chip span {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.22;
}

.diagnostic-chip strong {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.diagnostic-chip.is-active,
.diagnostic-chip:hover,
.diagnostic-chip:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(17, 168, 163, 0.66);
  background: rgba(17, 168, 163, 0.18);
  outline: none;
}

.image-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 28px;
}

.image-feature--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.process-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.process-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.dark-card,
.light-card {
  padding: 34px;
}

.dark-card {
  background: rgba(255, 255, 255, 0.1);
}

.dark-card p,
.light-card p {
  margin-top: 18px;
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.78);
}

.light-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 32, 44, 0.1);
}

.check-list,
.phase-panel ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.phase-panel li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
}

.check-list li::before,
.phase-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(17, 168, 163, 0.12);
}

.system-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.system-lane div {
  min-height: 126px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.system-lane span,
.system-lane strong,
.system-lane small {
  display: block;
}

.system-lane span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.system-lane strong {
  margin-top: 28px;
  color: var(--white);
  line-height: 1.1;
}

.system-lane small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  line-height: 1.3;
}

.briefing-grid,
.deliverable-grid,
.roadmap {
  display: grid;
  gap: 16px;
}

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

.briefing-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-color: rgba(16, 32, 44, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.briefing-media {
  min-height: 620px;
}

.briefing-content {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  backdrop-filter: blur(18px);
}

.briefing-content .section-heading {
  margin-bottom: 24px;
}

.briefing-content .briefing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.deliverable,
.roadmap-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 32, 44, 0.08);
}

.card-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 850;
}

.info-card h3,
.deliverable h3,
.roadmap-card h3,
.method-card h3,
.phase-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.18;
}

.info-card p,
.deliverable p,
.roadmap-card p,
.phase-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.timeline-controls {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
}

.phase-button {
  min-height: 42px;
  padding: 9px 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.phase-button.is-active {
  color: #052420;
  background: rgba(17, 168, 163, 0.18);
  box-shadow: inset 0 0 0 1px rgba(17, 168, 163, 0.22);
}

.phase-stage {
  min-height: 360px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(16, 32, 44, 0.08);
}

.phase-panel {
  display: none;
  min-height: 336px;
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(17, 168, 163, 0.14), rgba(242, 165, 26, 0.12));
  border-radius: 6px;
}

.phase-panel.is-active {
  display: grid;
  align-content: center;
}

.phase-label {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 168, 163, 0.28);
  color: #064842;
  background: rgba(17, 168, 163, 0.12);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.method-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #061522;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.method-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.18), rgba(7, 24, 39, 0.85)),
    linear-gradient(90deg, rgba(7, 24, 39, 0.74), rgba(7, 24, 39, 0.08) 56%, rgba(7, 24, 39, 0.52));
  pointer-events: none;
}

.method-media {
  position: absolute;
  inset: 0;
}

.method-overlay {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 28px;
  padding: 30px;
  color: var(--white);
  background: rgba(7, 24, 39, 0.66);
}

.method-overlay h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.72rem;
  line-height: 1.06;
}

.method-overlay p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.method-shell .method-rail {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.method-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(16, 32, 44, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.method-shell .method-card {
  min-height: 228px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 24, 39, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.method-shell .method-card h3 {
  color: var(--white);
}

.method-shell .method-card p {
  color: rgba(255, 255, 255, 0.72);
}

.method-shell .method-card span {
  color: rgba(255, 255, 255, 0.28);
}

.method-shell .method-card.is-active,
.method-shell .method-card:hover {
  border-color: rgba(17, 168, 163, 0.58);
  background: rgba(6, 58, 64, 0.72);
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.method-card:nth-child(2)::before {
  background: var(--teal);
}

.method-card:nth-child(3)::before {
  background: var(--green);
}

.method-card:nth-child(4)::before {
  background: var(--amber);
}

.method-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: rgba(16, 32, 44, 0.28);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.method-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.method-card.is-active,
.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 168, 163, 0.35);
  background: #fbfffe;
}

.outbound-flow {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.outbound-flow div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(16, 32, 44, 0.1);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 6px;
}

.outbound-flow strong {
  color: var(--blue);
}

.outbound-flow span {
  color: var(--muted);
  font-size: 0.92rem;
}

.kotler-strip {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(17, 168, 163, 0.25);
  background: rgba(17, 168, 163, 0.1);
  border-radius: 6px;
}

.kotler-strip strong,
.kotler-strip span {
  display: block;
}

.kotler-strip strong {
  color: var(--blue);
  line-height: 1.2;
}

.kotler-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.framework-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 44px;
}

.journey-shell {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(16, 32, 44, 0.08);
  background: var(--white);
}

.journey-media {
  height: 430px;
}

.journey-copy {
  max-width: 660px;
  padding: 34px 34px 18px;
}

.journey-copy h2 {
  margin: 0;
  font-size: 2.72rem;
  line-height: 1.06;
}

.journey-copy p:not(.eyebrow) {
  color: var(--muted);
}

.journey-shell .journey {
  padding: 0 34px 34px;
}

.journey {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.journey div {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f7faf9;
  border-radius: var(--radius);
}

.journey span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.journey div:nth-child(2) span {
  background: var(--teal);
}

.journey div:nth-child(3) span {
  background: var(--green);
}

.journey div:nth-child(4) span {
  background: var(--amber);
  color: #241601;
}

.journey div:nth-child(5) span {
  background: var(--coral);
}

.journey strong,
.journey small {
  display: block;
}

.journey strong {
  font-size: 1.05rem;
  line-height: 1.2;
}

.journey small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

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

.deliverable svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  color: var(--teal);
}

.numbers-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
}

.numbers-shell h2,
.numbers-shell .eyebrow {
  color: var(--white);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.numbers-grid div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.numbers-grid strong,
.numbers-grid span {
  display: block;
}

.numbers-grid strong {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.1;
}

.numbers-grid span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.34;
}

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

.after-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #061522;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.after-media {
  height: 470px;
}

.after-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.08) 0%, rgba(7, 24, 39, 0.32) 55%, rgba(7, 24, 39, 0.86) 100%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.8), rgba(7, 24, 39, 0.1) 62%);
  pointer-events: none;
}

.after-copy {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  max-width: 590px;
  padding: 30px;
  color: var(--white);
  background: rgba(7, 24, 39, 0.66);
}

.after-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 2.72rem;
  line-height: 1.06;
}

.after-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.after-shell .roadmap {
  position: relative;
  z-index: 2;
  margin: -84px 28px 28px;
}

.after-shell .roadmap-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.roadmap-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.closing {
  padding: 96px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.96), rgba(7, 24, 39, 0.86)),
    url("hero-industrial.png") center / cover;
}

.closing__inner {
  max-width: 860px;
}

.closing p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.closing .primary-action {
  margin-top: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  body {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__content,
  .split,
  .image-feature,
  .image-feature--reverse,
  .briefing-shell,
  .framework-grid,
  .numbers-shell {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 620px;
  }

  .briefing-grid,
  .briefing-content .briefing-grid,
  .method-rail,
  .diagnostic-board,
  .system-lane,
  .journey,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverable-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .briefing-media {
    min-height: 360px;
  }

  .method-shell {
    min-height: auto;
  }

  .method-media {
    position: relative;
    height: 430px;
  }

  .method-shell .method-rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 24px 24px;
  }

  .method-overlay {
    margin: -150px 24px 18px;
  }

  .after-copy {
    position: relative;
    top: auto;
    left: auto;
    margin: -180px 24px 18px;
  }

  .after-shell .roadmap {
    margin: 0 24px 24px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container,
  .hero__content,
  .topbar {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 84svh;
  }

  .hero__content {
    min-height: calc(84svh - 92px);
    gap: 10px;
    padding: 22px 0 18px;
  }

  .topbar {
    margin-top: 14px;
  }

  .topbar__links {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero__copy,
  .hero__panel,
  .dark-card,
  .light-card,
  .numbers-shell,
  .phase-panel {
    padding: 16px;
  }

  .hero__panel {
    padding: 12px;
  }

  .hero__panel .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero__panel .metric-grid div {
    min-height: 58px;
    padding: 10px;
  }

  .hero__panel .metric-grid strong {
    font-size: 1.05rem;
  }

  .hero__panel .metric-grid span {
    margin-top: 4px;
    font-size: 0.74rem;
  }

  .hero__panel .status-line {
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .lead {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .primary-action,
  .secondary-action {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .section {
    padding: 68px 0;
  }

  .section--intro {
    padding-top: 22px;
  }

  .section-copy h2,
  .section-heading h2,
  .diagnostic-copy h2,
  .method-overlay h2,
  .journey-copy h2,
  .after-copy h2,
  .dark-card h2,
  .light-card h2,
  .numbers-shell h2,
  .closing h2 {
    font-size: 2rem;
  }

  .briefing-grid,
  .briefing-content .briefing-grid,
  .diagnostic-board,
  .system-lane,
  .method-rail,
  .journey,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-shell {
    min-height: auto;
    background: var(--navy);
  }

  .diagnostic-media {
    position: relative;
    height: 260px;
  }

  .diagnostic-shell::after {
    background:
      linear-gradient(180deg, rgba(7, 24, 39, 0.05), rgba(7, 24, 39, 0.94) 78%);
  }

  .diagnostic-copy {
    padding: 18px;
  }

  .diagnostic-board {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 18px 18px;
  }

  .diagnostic-chip {
    min-height: 92px;
    padding: 14px;
  }

  .system-lane div {
    min-height: 94px;
  }

  .system-lane strong {
    margin-top: 16px;
  }

  .briefing-content {
    padding: 18px;
  }

  .briefing-media {
    min-height: 260px;
  }

  .method-media {
    height: 270px;
  }

  .method-overlay {
    margin: -92px 14px 14px;
    padding: 18px;
  }

  .method-shell .method-rail {
    padding: 0 14px 14px;
  }

  .method-shell .method-card {
    min-height: 190px;
  }

  .journey-media {
    height: 260px;
  }

  .journey-copy {
    padding: 18px;
  }

  .journey-shell .journey {
    padding: 0 18px 18px;
  }

  .after-media {
    height: 300px;
  }

  .after-copy {
    margin: -112px 14px 14px;
    padding: 18px;
  }

  .after-shell .roadmap {
    margin: 0 14px 14px;
  }

  .board-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .board-row strong {
    width: fit-content;
    text-align: left;
  }

  .process-frame img {
    min-height: 280px;
  }

  .timeline-controls {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .outbound-flow div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #111111;
    font-size: 12pt;
  }

  .topbar,
  .hero__actions,
  .timeline-controls,
  .icon-button {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: #ffffff;
  }

  .hero__content {
    min-height: auto;
    padding: 48px 0;
  }

  .section,
  .closing {
    padding: 42px 0;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
