:root {
  color-scheme: light;
  --ink: #071a2b;
  --ink-soft: #385166;
  --blue: #087ff5;
  --blue-solid: #087ff5;
  --blue-deep: #0458b2;
  --teal: #08a88a;
  --amber: #f3a712;
  --rose: #e85d75;
  --cyan: #8edcff;
  --sky: #dff4ff;
  --ice: #f5fbff;
  --white: #ffffff;
  --navy: #061b2d;
  --line: rgba(7, 26, 43, .14);
  --line-light: rgba(255,255,255,.17);
  --pad: clamp(24px, 5vw, 88px);
  --header-h: 76px;
  --content: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ice);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--cyan); color: var(--ink); }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(245,251,255,.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 15px;
}
.brand-name { white-space: nowrap; }
.brand-mark {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-solid);
  font-size: 15px;
  letter-spacing: 0;
}
.desktop-nav {
  display: flex;
  justify-self: start;
  margin-left: clamp(28px, 4vw, 72px);
  gap: 38px;
}
.desktop-nav a {
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
}
.header-login {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color .25s;
}
.header-login:hover { color: var(--blue); }
.header-cta {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta span { color: var(--blue); }
.menu-toggle { display: none; }

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 68px) var(--pad) 76px;
  display: grid;
  grid-template-columns: minmax(410px, .82fr) minmax(600px, 1.18fr);
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
  position: relative;
  isolation: isolate;
  background: linear-gradient(118deg, #f9fdff 0 46%, #eaf7ff 46% 76%, #fff8e8 100%);
}
.hero-grid, .closing-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .4;
  background-image:
    linear-gradient(rgba(7,26,43,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,43,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .13em;
  color: var(--blue);
}
.eyebrow.light { color: var(--cyan); }
.hero h1, .problem-heading h2, .management-heading h2, .result-heading h2, .modules-heading h2, .closing-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -.048em;
  line-height: 1.02;
}
.hero h1 { font-size: clamp(56px, 5.4vw, 94px); }
.hero h1 span, .problem-heading h2 span, .result-heading h2 span, .modules-heading h2 span { color: var(--blue); }
.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-scope {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 620px;
}
.hero-scope span {
  position: relative;
  padding-left: 15px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}
.hero-scope span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  top: 7px;
  background: var(--blue);
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.button {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid currentColor;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--blue-solid); color: var(--white); border-color: var(--blue-solid); }
.button-primary:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.text-link { font-size: 14px; font-weight: 700; display: inline-flex; gap: 14px; align-items: center; }
.text-link span { color: var(--blue); }

.hero-visual {
  position: relative;
  min-width: 0;
  box-shadow: 0 40px 90px rgba(15,73,115,.15);
  background: var(--white);
  border: 1px solid rgba(7,26,43,.1);
}
.visual-header {
  min-height: 82px;
  padding: 18px 24px 18px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.visual-header > div { display: flex; flex-direction: column; gap: 4px; }
.visual-kicker { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--blue); }
.visual-header strong { font-family: "Manrope"; font-size: 22px; }
.status-chip { font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; color: #226143; }
.status-chip i { width: 8px; height: 8px; border-radius: 50%; background: #29a56a; box-shadow: 0 0 0 5px rgba(41,165,106,.12); }
.visual-body { display: grid; grid-template-columns: 58px 1fr; min-height: 540px; }
.visual-sidebar { background: var(--navy); display: flex; flex-direction: column; align-items: center; gap: 24px; padding: 18px 0; }
.sidebar-logo { width: 30px; aspect-ratio: 1; display: grid; place-items: center; background: var(--blue-solid); color: white; font-weight: 800; margin-bottom: 18px; }
.visual-sidebar i { width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.36); opacity: .65; }
.visual-sidebar i.active { background: var(--cyan); border-color: var(--cyan); opacity: 1; }
.visual-content { padding: 22px; background: #f6fbfe; min-width: 0; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.metric-row article, .chart-card, .status-list-card, .visual-bottom article { background: white; border: 1px solid rgba(7,26,43,.08); }
.metric-row article { padding: 17px 18px; }
.metric-row small, .card-title small { display: block; font-size: 12px; color: #5c7285; margin-bottom: 8px; }
.metric-row strong { display: block; font-family: "Manrope"; font-size: 22px; margin-bottom: 6px; }
.metric-row span { color: #60788b; font-size: 12px; }
.visual-middle { display: grid; grid-template-columns: minmax(0,1fr) 180px; gap: 12px; margin-top: 12px; }
.chart-card { min-width: 0; padding: 18px; }
.card-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.card-title > div { display: flex; flex-direction: column; }
.card-title strong { font-size: 16px; }
.card-title > span { color: #6b8193; font-size: 12px; }
.chart-card svg { width: 100%; height: 200px; overflow: visible; }
.chart-guides line { stroke: rgba(7,26,43,.08); }
.chart-area { fill: url(#areaGradient); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 4; }
.chart-line.secondary { stroke: #8fa8bb; stroke-width: 2.4; stroke-dasharray: 7 7; }
.chart-card circle { fill: white; stroke: var(--blue); stroke-width: 4; }
.chart-legend { display: flex; gap: 24px; font-size: 12px; color: #60788b; }
.chart-legend span { display: flex; align-items: center; gap: 7px; }
.chart-legend i { width: 18px; height: 2px; background: var(--blue); }
.chart-legend i.spent { background: #8fa8bb; }
.status-list-card { padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.status-list-card > small { display: block; font-size: 12px; color: #5c7285; margin-bottom: 14px; }
.status-list-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.status-list-card li { display: flex; align-items: center; gap: 9px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.status-list-card li span { width: 9px; height: 9px; background: var(--teal); box-shadow: 0 0 0 5px rgba(8,168,138,.11); }
.status-list-card li:nth-child(2) span { background: var(--blue); box-shadow: 0 0 0 5px rgba(8,127,245,.11); }
.status-list-card li:nth-child(3) span { background: var(--amber); box-shadow: 0 0 0 5px rgba(243,167,18,.12); }
.status-list-card li:nth-child(4) span { background: var(--rose); box-shadow: 0 0 0 5px rgba(232,93,117,.11); }
.visual-bottom { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.visual-bottom article { padding: 15px 16px; display: flex; align-items: center; gap: 13px; }
.visual-bottom article > span { font-family: "Manrope"; font-weight: 700; font-size: 24px; color: var(--blue); }
.visual-bottom p { margin: 0; display: flex; flex-direction: column; gap: 3px; }
.visual-bottom strong { font-size: 12px; }
.visual-bottom small { font-size: 11px; color: #6b8193; }
.floating-note { position: absolute; background: white; box-shadow: 0 20px 45px rgba(20,77,116,.16); border-left: 3px solid var(--blue); padding: 16px 18px; }
.floating-note span, .floating-note strong { display: block; font-size: 13px; color: var(--blue); margin-bottom: 5px; }
.floating-note p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }
.note-one { left: -50px; bottom: -34px; width: 240px; }
.note-two { right: -28px; top: 100px; width: 150px; }

.audience-bar {
  min-height: 104px;
  padding: 24px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--navy);
  color: white;
}
.audience-bar p { margin: 0; color: var(--cyan); font-size: 14px; font-weight: 700; }
.audience-bar > div { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px,3vw,48px); flex-wrap: wrap; }
.audience-bar span { font-family: "Manrope"; font-weight: 600; font-size: clamp(17px,1.45vw,24px); }
.audience-bar i { width: 5px; height: 5px; background: var(--blue); transform: rotate(45deg); }

.problem-section, .result-section, .modules-section { padding: 140px var(--pad); position: relative; }
.section-index { position: absolute; top: 48px; left: var(--pad); color: #63798b; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.section-index.light { color: rgba(255,255,255,.58); }
.problem-heading { margin-left: 0; max-width: 1100px; text-align: left; }
.problem-heading h2, .management-heading h2, .result-heading h2, .modules-heading h2 { font-size: clamp(44px, 5.2vw, 86px); }
.problem-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,10vw,180px); margin-top: 100px; }
.problem-copy { align-self: start; position: sticky; top: 130px; }
.problem-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; max-width: 500px; }
.problem-copy .lead-copy { color: var(--ink); font-family: "Manrope"; font-weight: 600; font-size: clamp(23px,2vw,34px); line-height: 1.35; }
.problem-list { border-top: 1px solid var(--line); }
.problem-row { display: grid; grid-template-columns: 58px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.problem-row > span { color: var(--blue); font-weight: 700; font-size: 14px; padding-top: 5px; }
.problem-row h3 { margin: 0 0 8px; font-family: "Manrope"; font-size: clamp(22px,2vw,31px); }
.problem-row p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.55; }
.transition-statement { margin: 120px 0 0; padding-top: 36px; border-top: 1px solid var(--line); max-width: 1050px; text-align: left; }
.transition-statement p { margin: 0 0 8px; color: var(--ink-soft); font-size: clamp(19px,2vw,30px); }
.transition-statement strong { font-family: "Manrope"; font-size: clamp(34px,4vw,68px); color: var(--blue); letter-spacing: -.04em; }

.management-section { background: var(--navy); color: white; }
.management-intro { padding: 140px var(--pad) 64px; position: relative; display: flex; align-items: flex-end; }
.management-heading { margin-left: 0; max-width: 1050px; text-align: left; }
.management-heading > p:last-child { max-width: 650px; margin: 30px 0 0; color: #b7cad9; font-size: 18px; line-height: 1.65; }
.solution-layout {
  padding: 0 var(--pad) 130px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.solution-card {
  grid-column: span 3;
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution-card:nth-child(5) { grid-column: span 6; min-height: 190px; }
.solution-card span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
}
.solution-card h3 {
  margin: auto 0 16px;
  font-family: "Manrope";
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.solution-card p {
  margin: 0;
  color: #b7cad9;
  font-size: 16px;
  line-height: 1.58;
}
.solution-flow {
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(142,220,255,.28);
  background: linear-gradient(180deg, rgba(8,127,245,.18), rgba(8,168,138,.10));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution-flow > p {
  margin: 0;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.flow-steps {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}
.flow-steps span {
  position: relative;
  padding: 17px 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  font-family: "Manrope";
  font-weight: 700;
}
.flow-steps span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -15px;
  width: 1px;
  height: 15px;
  background: rgba(142,220,255,.48);
}
.flow-note {
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 24px;
}
.flow-note strong {
  display: block;
  font-family: "Manrope";
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.flow-note small {
  display: block;
  color: #c6d8e5;
  font-size: 14px;
  line-height: 1.6;
}

.result-section { background: var(--sky); }
.result-heading { margin-left: 0; max-width: 1000px; text-align: left; }
.result-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 100px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.result-grid article { min-height: 350px; padding: 34px 30px; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.result-grid article:last-child { border-right: 0; }
.result-grid article > span { color: var(--blue); font-size: 14px; font-weight: 700; }
.result-grid h3 { font-family: "Manrope"; font-size: clamp(24px,2vw,32px); line-height: 1.15; margin: auto 0 18px; }
.result-grid p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

.modules-heading { display: grid; grid-template-columns: 1.5fr .5fr; gap: 50px; align-items: end; }
.modules-heading > p { margin: 0 0 5px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; max-width: 390px; }
.accordion { margin-top: 95px; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  min-height: 112px;
  padding: 0;
  display: grid;
  grid-template-columns: 60px 1fr 150px 34px;
  align-items: center;
  gap: 20px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.accordion-number { color: var(--blue); font-size: 14px; font-weight: 700; }
.accordion-title { font-family: "Manrope"; font-size: clamp(22px,2.2vw,36px); font-weight: 600; letter-spacing: -.025em; }
.accordion-meta { color: #647b8d; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.accordion-icon { width: 28px; height: 28px; position: relative; }
.accordion-icon::before, .accordion-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform .3s; }
.accordion-icon::before { width: 18px; height: 1px; left: 5px; top: 14px; }
.accordion-icon::after { width: 1px; height: 18px; left: 14px; top: 5px; }
.accordion-item.is-open .accordion-icon::after { transform: rotate(90deg); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1); }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-content { overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-left: 80px; padding-right: 60px; }
.accordion-item.is-open .accordion-content { padding-bottom: 42px; }
.accordion-content p { margin: 0; max-width: 650px; color: var(--ink-soft); font-size: 17px; line-height: 1.65; }
.accordion-content ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.accordion-content li { font-size: 14px; padding-left: 17px; position: relative; }
.accordion-content li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--blue); }

.closing-section {
  min-height: 82svh;
  padding: 120px var(--pad) 90px;
  background: var(--blue-solid);
  color: white;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 80px;
  align-items: end;
  isolation: isolate;
}
.closing-grid { opacity: .18; mask-image: none; }
.closing-copy h2 { font-size: clamp(56px,7vw,116px); }
.closing-copy h2 span { color: var(--cyan); }
.closing-action { align-self: end; padding-bottom: 8px; }
.closing-action p { margin: 0 0 30px; max-width: 440px; font-size: 17px; line-height: 1.65; }
.button-light { color: var(--ink); background: white; border-color: white; }
.button-light:hover { background: var(--cyan); border-color: var(--cyan); }

.site-footer { padding: 34px var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); background: #f8fcff; color: var(--ink-soft); font-size: 13px; }
.site-footer p { margin: 0; }
.site-footer p:last-child { justify-self: end; }
.footer-brand { color: var(--ink); }

.dark {
  color-scheme: dark;
  --ink: #e2e8f0;
  --ink-soft: #a8bfd0;
  --blue: #60a5fa;
  --blue-solid: #1d4ed8;
  --blue-deep: #1e40af;
  --cyan: #67e8f9;
  --sky: #13283c;
  --ice: #0b1220;
  --navy: #06111f;
  --line: rgba(148,163,184,.24);
}

.dark ::selection { color: #082f49; }
.dark .page-noise { opacity: .045; }
.dark .site-header.scrolled {
  background: rgba(15,23,42,.88);
  border-color: var(--line);
}
.dark .hero {
  background: linear-gradient(118deg, #0b1220 0 46%, #10243a 46% 76%, #251e12 100%);
}
.dark .hero-grid,
.dark .closing-grid {
  background-image:
    linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
}
.dark .hero-visual {
  border-color: rgba(148,163,184,.26);
  background: #0f172a;
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
}
.dark .visual-content { background: #111c2e; }
.dark .metric-row article,
.dark .chart-card,
.dark .status-list-card,
.dark .visual-bottom article {
  border-color: rgba(148,163,184,.18);
  background: #1e293b;
}
.dark .metric-row small,
.dark .card-title small,
.dark .status-list-card > small,
.dark .metric-row span,
.dark .card-title > span,
.dark .chart-legend,
.dark .visual-bottom small {
  color: #a8bfd0;
}
.dark .status-chip { color: #86efac; }
.dark .chart-guides line { stroke: rgba(148,163,184,.18); }
.dark .chart-line.secondary { stroke: #94a3b8; }
.dark .chart-card circle { fill: #1e293b; }
.dark .floating-note {
  border-color: var(--blue);
  background: #1e293b;
  box-shadow: 0 20px 45px rgba(0,0,0,.34);
}
.dark .section-index { color: #94a3b8; }
.dark .result-grid,
.dark .result-grid article {
  border-color: rgba(148,163,184,.26);
}
.dark .accordion-meta { color: #94a3b8; }
.dark .button-light { color: #0f172a; }
.dark .site-footer {
  border-color: var(--line);
  background: #0f172a;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .hero { grid-template-columns: minmax(380px,.8fr) minmax(540px,1.2fr); gap: 45px; }
  .visual-bottom article:nth-child(3) { display: none; }
  .visual-bottom { grid-template-columns: 1fr 1fr; }
  .solution-layout { grid-template-columns: 1fr .48fr; }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 20px; }
  .header-actions { justify-self: end; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 7px; border: 0; background: transparent; padding: 8px 0 8px 12px; }
  .menu-toggle span { display: block; width: 24px; height: 1px; background: var(--ink); transition: transform .25s; }
  body.menu-open { overflow: hidden; }
  body.menu-open .desktop-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    margin-left: 0;
    padding: var(--pad);
    background: rgba(245,251,255,.98);
    backdrop-filter: blur(20px);
    z-index: 49;
  }
  .dark body.menu-open .site-header {
    background: rgba(15,23,42,.96);
  }
  .dark body.menu-open .desktop-nav {
    background: rgba(15,23,42,.98);
    box-shadow: 0 24px 50px rgba(0,0,0,.32);
  }
  body.menu-open .desktop-nav a { font-family: "Manrope"; font-size: clamp(34px,7vw,62px); font-weight: 700; letter-spacing: -.04em; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 840px; }
  .hero-visual { margin: 30px 0 25px; }
  .problem-heading, .result-heading, .management-heading { margin-left: 0; }
  .problem-layout { grid-template-columns: 1fr; gap: 55px; }
  .problem-copy { position: static; }
  .transition-statement { margin-left: 0; }
  .management-intro { padding-top: 110px; }
  .solution-layout { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .result-grid article:nth-child(2) { border-right: 0; }
  .result-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .modules-heading { grid-template-columns: 1fr; }
  .closing-section { grid-template-columns: 1fr; min-height: 720px; }
}

@media (max-width: 760px) {
  :root { --header-h: 66px; --pad: 20px; }
  body { font-size: 16px; }
  .header-login { font-size: 13px; }
  .eyebrow { font-size: 12px; margin-bottom: 17px; }
  .hero { padding-top: 112px; padding-bottom: 60px; background: linear-gradient(160deg,#f9fdff 0 54%,#eaf7ff 54% 100%); }
  .dark .hero { background: linear-gradient(160deg,#0b1220 0 54%,#10243a 54% 100%); }
  .hero h1 { font-size: clamp(38px,10.6vw,52px); letter-spacing: -.035em; }
  .hero-lead { font-size: 18px; margin-top: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .hero-visual { margin-top: 25px; }
  .visual-header { padding-left: 18px; }
  .visual-header strong { font-size: 18px; }
  .status-chip { display: none; }
  .visual-body { grid-template-columns: 38px 1fr; min-height: 410px; }
  .visual-sidebar { gap: 17px; }
  .visual-sidebar i { width: 13px; height: 13px; }
  .sidebar-logo { width: 26px; }
  .visual-content { padding: 12px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row article:nth-child(3) { display: none; }
  .metric-row article { padding: 13px; }
  .metric-row strong { font-size: 17px; }
  .metric-row small, .metric-row span { font-size: 11px; }
  .visual-middle { grid-template-columns: 1fr; }
  .chart-card { padding: 13px; }
  .chart-card svg { height: 150px; }
  .card-title > span, .status-list-card { display: none; }
  .visual-bottom article { padding: 12px; }
  .visual-bottom article > span { font-size: 20px; }
  .visual-bottom strong { font-size: 11px; }
  .visual-bottom small { display: none; }
  .floating-note { display: none; }
  .audience-bar { align-items: flex-start; flex-direction: column; gap: 20px; padding-top: 28px; padding-bottom: 28px; }
  .audience-bar > div { justify-content: flex-start; gap: 14px 18px; }
  .audience-bar span { font-size: 17px; }
  .problem-section, .result-section, .modules-section { padding-top: 105px; padding-bottom: 95px; }
  .section-index { top: 28px; font-size: 12px; }
  .problem-heading h2, .management-heading h2, .result-heading h2, .modules-heading h2 { font-size: clamp(40px,11vw,58px); }
  .problem-layout { margin-top: 60px; }
  .problem-copy .lead-copy { font-size: 24px; }
  .problem-copy p, .problem-row p { font-size: 16px; }
  .problem-row { grid-template-columns: 38px 1fr; gap: 12px; padding: 24px 0; }
  .problem-row h3 { font-size: 22px; }
  .transition-statement { margin-top: 75px; }
  .transition-statement strong { font-size: 36px; }
  .management-intro { padding-top: 105px; padding-bottom: 54px; }
  .management-heading > p:last-child { font-size: 17px; }
  .solution-layout { padding-bottom: 90px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card, .solution-card:nth-child(5) { grid-column: auto; min-height: 210px; padding: 22px; }
  .solution-card h3 { font-size: 27px; }
  .solution-card p { font-size: 15px; }
  .solution-flow { padding: 24px; }
  .result-grid { grid-template-columns: 1fr; margin-top: 60px; }
  .result-grid article { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .result-grid article:last-child { border-bottom: 0; }
  .result-grid h3 { font-size: 26px; }
  .accordion { margin-top: 60px; }
  .accordion-trigger { grid-template-columns: 34px 1fr 28px; gap: 12px; min-height: 96px; }
  .accordion-title { font-size: 22px; }
  .accordion-meta { display: none; }
  .accordion-content { grid-template-columns: 1fr; gap: 22px; margin-left: 46px; padding-right: 0; }
  .accordion-content p { font-size: 16px; }
  .accordion-content ul { grid-template-columns: 1fr; }
  .closing-section { min-height: 650px; padding-top: 90px; padding-bottom: 70px; gap: 55px; }
  .closing-copy h2 { font-size: clamp(48px,13vw,68px); }
  .closing-action p { font-size: 16px; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; font-size: 12px; }
  .site-footer p:last-child { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
