:root {
  --mm-bg: #f4f0e8;
  --mm-bg-2: #eee8dd;
  --mm-paper: #fbf9f4;
  --mm-ink: #0d1728;
  --mm-ink-2: #172238;
  --mm-muted: #657083;
  --mm-line: rgba(13, 23, 40, 0.14);
  --mm-line-strong: rgba(13, 23, 40, 0.22);
  --mm-gold: #d9b45e;
  --mm-teal: #119c93;
  --mm-teal-hover: #0b887f;
  --mm-dark: #081220;
  --mm-dark-2: #0d192b;
  --mm-offwhite: #edf1f5;
  --mm-cta-top: #dfe5e3;
  --mm-cta-mid: #d6dede;
  --mm-cta-bottom: #cfd9da;
  --pioneer: #5bc3b5;
  --builder: #63b999;
  --expert: #85b8d2;
  --strategist: #a896cf;
  --confidant: #c88faa;
  --architect: #d8b15d;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 52px);
  --display: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--mm-ink);
  background: var(--mm-bg);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }

.shell {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
}

.page-shell { min-height: 100%; }

.nav-wrap {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--mm-line);
}

.brand {
  color: var(--mm-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--mm-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-cta:hover { background: rgba(255, 255, 255, .55); border-color: rgba(13, 23, 40, .32); transform: translateY(-1px); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid var(--mm-teal);
  border-radius: 999px;
  background: var(--mm-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 8px 24px rgba(17, 156, 147, .12);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn:hover { background: var(--mm-teal-hover); border-color: var(--mm-teal-hover); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(17, 156, 147, .18); }
.btn.secondary { background: transparent; border-color: var(--mm-line-strong); color: var(--mm-ink); box-shadow: none; }
.btn.secondary:hover { background: rgba(255, 255, 255, .42); border-color: var(--mm-ink); }
.btn:focus-visible, .nav-cta:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(17, 156, 147, .45); outline-offset: 4px; }
.arrow { font-size: 1.05em; transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 12vw, 150px) 0 clamp(90px, 12vw, 144px);
  isolation: isolate;
}

.hero-copy { position: relative; z-index: 1; max-width: var(--max); margin-inline: auto; text-align: center; }
.hero h1, .chapter h2, .final-cta-title { font-family: var(--display); font-weight: 900; text-wrap: balance; }
.hero h1 { max-width: 1180px; margin: 0 auto 26px; font-size: clamp(50px, 6.4vw, 88px); line-height: .97; letter-spacing: -.062em; }
.hero .lede, .body-lg { color: var(--mm-muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.56; letter-spacing: -.015em; }
.hero .lede { max-width: 760px; margin: 0 auto; }
.hero-actions, .final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-actions { margin-top: 32px; }
.meta { color: var(--mm-muted); font-size: 12px; font-weight: 650; letter-spacing: .01em; }

.chapter { position: relative; padding: clamp(92px, 12vw, 158px) 0; }
.chapter + .chapter { border-top: 1px solid var(--mm-line); }
.chapter-number { margin-bottom: 24px; color: var(--mm-gold); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.chapter h2 { margin: 0; font-size: clamp(46px, 6vw, 78px); line-height: .98; letter-spacing: -.058em; }
.body-lg { margin: 0; }
.body-md { margin: 0; color: var(--mm-muted); font-size: 16px; line-height: 1.62; letter-spacing: -.01em; }

.layout-centred { display: grid; place-items: center; text-align: center; }
.layout-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.layout-comparison { width: 100%; border-top: 1px solid var(--mm-line-strong); }
.layout-process { display: grid; gap: 0; }
.numbered-rows { border-top: 1px solid var(--mm-line-strong); }
.numbered-row { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--mm-line); }
.numbered-row__number { color: var(--mm-gold); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.numbered-row__text { margin: 0; font-size: 17px; line-height: 1.45; font-weight: 760; }

.final-cta-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--mm-cta-top) 0%, var(--mm-cta-mid) 46%, var(--mm-cta-bottom) 100%);
}

.final-cta-main { position: relative; z-index: 1; display: grid; place-items: center; padding: clamp(96px, 13vh, 156px) var(--gutter) clamp(72px, 9vh, 104px); }
.final-cta-content { width: min(900px, 100%); margin-inline: auto; text-align: center; }
.final-cta-kicker { display: inline-flex; align-items: center; gap: 12px; color: #b78f37; font-size: 11px; line-height: 1; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.final-cta-kicker::before, .final-cta-kicker::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .62; }
.final-cta-title { max-width: 860px; margin: 25px auto 28px; color: var(--mm-ink); font-size: clamp(58px, 7.2vw, 104px); line-height: .91; letter-spacing: -.065em; }
.final-cta-lede { max-width: 680px; margin: 0 auto; color: rgba(13, 23, 40, .64); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.58; letter-spacing: -.012em; }
.final-cta-actions { margin-top: 34px; }
.final-cta-section .meta { color: rgba(13, 23, 40, .48); }
.final-footer { border-top: 1px solid rgba(13, 23, 40, .12); }
.final-footer-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.final-footer .brand { color: #b78f37; font-size: 10px; opacity: .88; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .72s ease, transform .72s cubic-bezier(.2, .7, .25, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.svg-draw { stroke-dasharray: var(--draw-length, 1000); stroke-dashoffset: var(--draw-length, 1000); transition: stroke-dashoffset 1.25s cubic-bezier(.2, .75, .2, 1); }
.is-visible .svg-draw { stroke-dashoffset: 0; }
.node-reveal { opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(.6); transition: opacity .4s ease, transform .4s ease; }
.is-visible .node-reveal { opacity: 1; transform: scale(1); }

.share-backdrop[hidden], .share-panel[hidden] { display: none; }
.share-backdrop { position: fixed; inset: 0; z-index: 100; background: rgba(8, 18, 32, .42); }
.share-panel { position: fixed; inset: 50% auto auto 50%; z-index: 101; width: min(520px, calc(100% - 36px)); transform: translate(-50%, -50%); padding: 28px; border: 1px solid var(--mm-line-strong); border-radius: 18px; background: var(--mm-paper); box-shadow: 0 24px 80px rgba(8, 18, 32, .24); }
.share-panel__header { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.share-panel__title { margin: 0; font-family: var(--display); font-size: 26px; line-height: 1.05; letter-spacing: -.04em; }
.share-panel__close { width: 36px; height: 36px; border: 1px solid var(--mm-line-strong); border-radius: 50%; background: transparent; color: var(--mm-ink); cursor: pointer; }
.share-panel__copy { margin: 16px 0 0; color: var(--mm-muted); line-height: 1.55; }
.share-panel__actions { display: grid; gap: 10px; margin-top: 22px; }
.share-panel__status { min-height: 1.5em; margin-top: 14px; color: var(--mm-muted); font-size: 13px; }
.share-panel__status[data-tone="error"] { color: #9b3d37; }

.technical-harness { min-height: 100svh; padding: 140px 0 80px; }
.technical-harness__intro { max-width: 680px; }
.technical-harness__intro h1 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(42px, 6vw, 78px); line-height: .98; letter-spacing: -.058em; }
.technical-harness__intro p { color: var(--mm-muted); font-size: 18px; line-height: 1.55; }
.technical-harness__controls { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.technical-harness__output { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--mm-line); color: var(--mm-muted); font: 13px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; white-space: pre-wrap; overflow-wrap: anywhere; }

@media (min-width: 981px) and (min-height: 680px) {
  html { scroll-snap-type: y mandatory; }
  .hero, .chapter, .final-cta-section { scroll-snap-align: start; scroll-snap-stop: always; }
  .hero, .chapter { min-height: 100svh; display: grid; align-items: center; }
  .hero { padding-top: clamp(92px, 11vh, 132px); padding-bottom: clamp(70px, 9vh, 108px); }
  .chapter { padding-top: clamp(52px, 7vh, 82px); padding-bottom: clamp(52px, 7vh, 82px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .reveal, .node-reveal { opacity: 1 !important; transform: none !important; }
  .svg-draw { stroke-dashoffset: 0 !important; }
}

@media (max-width: 980px) {
  .layout-split { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 700px) {
  :root { --gutter: 22px; }
  .nav { min-height: 64px; }
  .brand { font-size: 11px; }
  .nav-cta { min-height: 38px; padding: 0 13px; font-size: 12px; }
  .hero { min-height: auto; padding-top: 96px; padding-bottom: 104px; }
  .hero h1 { font-size: clamp(46px, 13vw, 66px); }
  .hero .lede { font-size: 17px; }
  .chapter { padding: 92px 0; }
  .chapter h2 { font-size: clamp(43px, 12vw, 62px); }
  .numbered-row { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; }
  .final-cta-main { padding: 108px var(--gutter) 76px; }
  .final-cta-title { font-size: clamp(46px, 14vw, 82px); }
  .final-footer-inner { min-height: 0; padding: 22px 0 26px; flex-direction: column; align-items: flex-start; }
  .technical-harness { padding-top: 108px; }
}

@media (max-width: 460px) {
  .nav-cta .nav-label { display: none; }
  .nav-cta { width: 38px; padding: 0; justify-content: center; }
  .btn { width: 100%; }
  .technical-harness__controls { flex-direction: column; align-items: stretch; }
}
