/* ============================================================
   METISTRAD — site-wide styles (multi-page marketing site)
   Built on the Metistrad design system tokens.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg-2); color: var(--ink); }
body { font-family: var(--font-body); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; }
::selection { background: var(--brand-blue-pale); color: var(--deep-navy); }

/* ---------- Container & section ---------- */
.mt-container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.mt-container--wide { max-width: 1320px; }
.mt-section { padding: 96px 0; }
.mt-section--sm { padding: 72px 0; }
.mt-section--tinted { background: var(--brand-blue-pale); }
.mt-section--offwhite { background: var(--off-white); }
.mt-section--navy { background: var(--deep-navy); color: #fff; }
.mt-section__header { max-width: 760px; margin-bottom: 56px; }
.mt-section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.mt-section__title {
  font-family: var(--font-display); font-weight: 600; font-size: 38px;
  line-height: 1.12; letter-spacing: 0.02em; color: var(--ink); margin: 14px 0 16px;
}
.mt-section--navy .mt-section__title { color: #fff; }
.mt-section__lede { font-size: 20px; color: var(--slate); margin: 0; max-width: 660px; }
.mt-section--navy .mt-section__lede { color: rgba(255,255,255,0.72); }
.mt-section__header--center .mt-section__lede { margin-left: auto; margin-right: auto; }

/* ---------- Eyebrows ---------- */
.mt-eyebrow {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue);
  display: inline-block; white-space: nowrap;
}
.mt-eyebrow--light { color: var(--brand-blue-light); }
.mt-eyebrow--stamp {
  border: 1px solid var(--brand-blue); border-radius: 4px;
  padding: 7px 13px 6px; color: var(--brand-blue); white-space: nowrap;
}
.mt-eyebrow--stamp.mt-eyebrow--light { border-color: rgba(91,127,188,0.55); }

/* ---------- Buttons ---------- */
.mt-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.10em; text-transform: uppercase;
  border-radius: 8px; padding: 15px 26px; border: 0; white-space: nowrap;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 120ms var(--ease-out);
  display: inline-flex; align-items: center; gap: 10px;
}
.mt-btn svg { width: 17px; height: 17px; flex: none; }
.mt-btn--sm { padding: 11px 18px; font-size: 13px; }
.mt-btn--lg { padding: 18px 32px; font-size: 15px; }
.mt-btn--primary { background: var(--brand-blue); color: #fff; }
.mt-btn--primary:hover { background: var(--brand-blue-hover); }
.mt-btn--secondary { background: #fff; color: var(--brand-blue); border: 2px solid var(--brand-blue); padding: 13px 24px; }
.mt-btn--secondary.mt-btn--sm { padding: 9px 16px; }
.mt-btn--secondary.mt-btn--lg { padding: 16px 30px; }
.mt-btn--secondary:hover { background: var(--brand-blue-pale); }
.mt-btn--ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); padding: 13px 24px; }
.mt-btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.mt-btn--on-blue { background: #fff; color: var(--brand-blue); }
.mt-btn--on-blue:hover { background: var(--deep-navy); color: #fff; }

/* ---------- Text link with arrow ---------- */
.mt-link {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--brand-blue);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 180ms var(--ease-out), color 120ms var(--ease-out);
}
.mt-link svg { width: 16px; height: 16px; transition: transform 180ms var(--ease-out); }
.mt-link:hover { color: var(--brand-blue-hover); }
.mt-link:hover svg { transform: translateX(4px); }
.mt-link--light { color: var(--brand-blue-light); }
.mt-link--light:hover { color: #fff; }

/* ============================================================
   NAV (injected by site.js)
   ============================================================ */
.mt-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
}
.mt-nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  height: 90px; display: flex; align-items: center; gap: 28px;
}
.mt-nav__brand img { display: block; height: 108px; }
.mt-nav__links { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.mt-nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink);
  transition: color 120ms var(--ease-out); position: relative; padding: 4px 0; white-space: nowrap;
}
.mt-nav__links a:hover { color: var(--brand-blue); }
.mt-nav__links a[aria-current="page"] { color: var(--brand-blue); }
.mt-nav__links a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand-blue);
}
.mt-nav__cta { display: flex; }
.mt-nav__toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; margin-left: auto; }
.mt-nav__toggle svg { width: 26px; height: 26px; }

/* mobile menu — dropdown card hung from the nav, animated open/close */
.mt-nav__mobile { display: none; }
@media (max-width: 1080px) {
  .mt-nav__links { display: none; }
  .mt-nav__cta { display: none; }
  .mt-nav__toggle { display: block; }
  .mt-nav__mobile {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px);
    z-index: 49; display: flex; flex-direction: column; gap: 2px;
    background: rgba(15,25,46,0.97);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(8,15,30,0.45);
    padding: 10px 24px 24px;
    max-height: calc(100vh - 160px); overflow-y: auto;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-10px) scale(0.98); transform-origin: top center;
    transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), visibility 0s linear 220ms;
  }
  .mt-nav__mobile.is-open {
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out), visibility 0s;
  }
  .mt-nav__mobile a {
    font-family: var(--font-display); font-weight: 500; font-size: 20px;
    letter-spacing: 0.06em; text-transform: uppercase; color: #fff;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    opacity: 0; transform: translateY(-6px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  }
  .mt-nav__mobile a:last-of-type { border-bottom: 0; }
  .mt-nav__mobile .mt-btn {
    margin-top: 14px; justify-content: center;
    opacity: 0; transform: translateY(-6px);
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  }
  .mt-nav__mobile.is-open a, .mt-nav__mobile.is-open .mt-btn { opacity: 1; transform: none; }
  .mt-nav__mobile.is-open a:nth-child(1) { transition-delay: 50ms; }
  .mt-nav__mobile.is-open a:nth-child(2) { transition-delay: 90ms; }
  .mt-nav__mobile.is-open a:nth-child(3) { transition-delay: 130ms; }
  .mt-nav__mobile.is-open a:nth-child(4) { transition-delay: 170ms; }
  .mt-nav__mobile.is-open a:nth-child(5) { transition-delay: 210ms; }
  .mt-nav__mobile.is-open a:nth-child(6) { transition-delay: 250ms; }
  .mt-nav__mobile.is-open .mt-btn { transition-delay: 290ms; }
  /* align the card with the floating island's side margins on the home hero */
  body[data-hero-overlay] .mt-nav__mobile { left: 24px; right: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .mt-nav__mobile, .mt-nav__mobile a, .mt-nav__mobile .mt-btn { transition: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.mt-hero { background: var(--deep-navy); color: #fff; position: relative; overflow: hidden; padding: 116px 0 124px; }
.mt-hero--sm { padding: 92px 0 96px; }
.mt-hero__lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background:
    repeating-linear-gradient(45deg, transparent 0 26px,
      rgba(91,127,188,0.10) 26px, rgba(91,127,188,0.10) 27px);
  mask-image: linear-gradient(135deg, transparent 38%, #000 100%);
}
.mt-hero__inner { position: relative; }
.mt-hero__split { display: grid; grid-template-columns: 1.45fr 1fr; gap: 72px; align-items: end; }
.mt-hero__copy { max-width: 720px; }
.mt-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.0; letter-spacing: 0.01em; text-transform: uppercase;
  color: #fff; margin: 20px 0 26px; text-wrap: balance;
}
.mt-hero__title .accent { color: var(--brand-blue-light); }
.mt-hero__sub { font-size: 21px; line-height: 1.55; color: rgba(255,255,255,0.78); margin: 0 0 38px; max-width: 600px; }
.mt-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero snapshot card */
.mt-hero__card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px; padding: 30px;
}
.mt-hero__stats { display: grid; gap: 18px; margin: 18px 0 0; }
.mt-hero__stats > div { display: grid; gap: 5px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mt-hero__stats > div:last-child { border: none; padding-bottom: 0; }
.mt-hero__stats dt {
  font-family: var(--font-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.mt-hero__stats dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: #fff; letter-spacing: 0.01em; }

/* ---------- HERO: full-bleed photo variant ---------- */
.mt-hero--photo {
  min-height: 94vh; padding: 0; display: flex; align-items: center;
  position: relative; overflow: hidden;
  /* Cool-toned dusk glass-tower fallback, shown until a photo is dropped */
  background:
    radial-gradient(58% 46% at 74% 28%, rgba(91,127,188,0.30), transparent 72%),
    radial-gradient(46% 38% at 18% 64%, rgba(91,127,188,0.20), transparent 74%),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(120,150,200,0.06) 21px 22px),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(120,150,200,0.06) 28px 29px),
    linear-gradient(178deg, #0c1830 0%, #16243F 52%, #20365e 100%);
}
.mt-hero__topo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; display: block; pointer-events: none;
}
.mt-hero__bg { position: absolute; inset: 0; display: block; z-index: 0; }
image-slot.mt-hero__bg { color: rgba(255,255,255,0.72); }
image-slot.mt-hero__bg::part(frame) { background: transparent; }
image-slot.mt-hero__bg::part(ring) { border-color: rgba(255,255,255,0.28); }
.mt-hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; display: block; background: transparent;
}
@media (prefers-reduced-motion: reduce) { .mt-hero__video { display: none; } }
.mt-hero__scrim {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    linear-gradient(180deg, rgba(12,21,42,0.82) 0%, rgba(12,21,42,0.30) 24%, rgba(12,21,42,0.32) 62%, rgba(12,21,42,0.86) 100%),
    radial-gradient(120% 80% at 50% 42%, transparent 40%, rgba(12,21,42,0.45) 100%);
}
.mt-hero__photo-inner {
  position: relative; z-index: 3; text-align: left; margin: 0;
  max-width: 920px; padding-top: 64px; pointer-events: none;
}
.mt-hero__photo-inner .mt-eyebrow--stamp { backdrop-filter: none; }
.mt-hero__photo-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6.8vw, 104px); line-height: 0.98; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff; margin: 18px 0 30px;
  text-shadow: 0 2px 30px rgba(8,15,30,0.45); text-wrap: balance;
}
.mt-hero__photo-title .accent { color: #fff; }
.mt-hero__photo-title .sky {
  color: #8FB2E2; display: inline-block; pointer-events: auto;
  cursor: pointer; transition: transform 180ms var(--ease-out), color 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}
.mt-hero__photo-title .sky:hover {
  transform: scale(1.08) translateY(-3px);
  color: #BBD2F2;
  text-shadow: 0 10px 28px rgba(8,15,30,0.55);
}
.mt-hero__photo-title .sky.is-active { color: #BBD2F2; }

/* Intro: words pop off the page once on load, in order buy → build → group */
@keyframes mt-hero-pop {
  0%   { transform: scale(1) translateY(0); color: #8FB2E2; text-shadow: 0 2px 30px rgba(8,15,30,0.45); }
  42%  { transform: scale(1.18) translateY(-12px); color: #D6E6FB; text-shadow: 0 18px 40px rgba(8,15,30,0.6); }
  100% { transform: scale(1) translateY(0); color: #8FB2E2; text-shadow: 0 2px 30px rgba(8,15,30,0.45); }
}
@media (prefers-reduced-motion: no-preference) {
  .mt-hero__photo-title .sky { animation: mt-hero-pop 1150ms var(--ease-out) backwards; }
  .mt-hero__photo-title .sky[data-explain="buy"]   { animation-delay: 450ms; }
  .mt-hero__photo-title .sky[data-explain="build"] { animation-delay: 1050ms; }
  .mt-hero__photo-title .sky[data-explain="group"] { animation-delay: 1650ms; }
}

/* Hero explain pop-out (buy / build / group) */
.mt-hero__explain-backdrop {
  position: absolute; inset: 0; z-index: 4;
  background: rgba(8,15,30,0.68);
  opacity: 0; pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}
.mt-hero.is-explaining .mt-hero__explain-backdrop {
  opacity: 1; pointer-events: auto;
}
.mt-hero__explain-wrap {
  position: absolute; inset: 0; z-index: 5;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  pointer-events: none; display: flex; align-items: center; justify-content: flex-end;
}
.mt-hero__explain {
  width: min(420px, 100%); pointer-events: auto; display: none; position: relative;
  background: rgba(18,30,56,0.92); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px; padding: 36px 34px; box-shadow: var(--shadow-lg);
}
.mt-hero__explain.is-open {
  display: block;
  animation: mt-explain-in 220ms var(--ease-out) both;
}
@keyframes mt-explain-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mt-hero__explain-close {
  position: absolute; top: 16px; right: 16px; background: none; border: 0;
  color: rgba(255,255,255,0.6); padding: 6px; border-radius: 6px; cursor: pointer;
  transition: color 120ms var(--ease-out), background 120ms var(--ease-out);
}
.mt-hero__explain-close:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mt-hero__explain-close svg { width: 20px; height: 20px; }
.mt-hero__explain [data-explain-content] { display: none; }
.mt-hero__explain [data-explain-content].is-shown { display: block; }
.mt-hero__explain-title {
  font-family: var(--font-display); font-weight: 600; font-size: 27px;
  letter-spacing: 0.02em; color: #fff; margin: 10px 0 14px; line-height: 1.15;
}
.mt-hero__explain p { font-size: 16px; line-height: 1.62; color: rgba(255,255,255,0.82); margin: 0; }
@media (max-width: 600px) {
  .mt-hero__explain-wrap { align-items: flex-end; padding-bottom: 28px; }
  .mt-hero__explain { padding: 28px 24px; }
}
.mt-hero__photo-title .boxed {
  display: inline-block; color: #fff;
  border: 3px solid #8FB2E2; border-radius: 0;
  padding: 0.2em 0.18em; line-height: 0.74;
}
.mt-hero__photo-sub {
  font-size: 21px; line-height: 1.55; color: rgba(255,255,255,0.86);
  margin: 0 0 38px; max-width: 660px; text-shadow: 0 1px 16px rgba(8,15,30,0.4);
}
.mt-hero__photo-inner .mt-hero__ctas { justify-content: flex-start; }
.mt-hero__photo-inner .mt-btn, .mt-hero__photo-inner a { pointer-events: auto; }
.mt-hero__scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 3;
  color: rgba(255,255,255,0.65); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  pointer-events: none;
}
.mt-hero__scroll svg { width: 22px; height: 22px; }
@media (max-width: 560px) { .mt-hero--photo { min-height: 88vh; } .mt-hero__scroll { display: none; } }

/* ---------- NAV: floating island over hero (opt-in via body[data-hero-overlay]) ---------- */
body[data-hero-overlay] .mt-nav {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; border-bottom: 0; padding: 18px 24px 0;
}
body[data-hero-overlay] .mt-nav__inner {
  max-width: 1320px; height: 90px; padding: 0 18px 0 24px;
  background: rgba(22,36,63,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(8,15,30,0.28);
  transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
body[data-hero-overlay] .mt-nav__links a { color: #fff; }
body[data-hero-overlay] .mt-nav__links a:hover { color: var(--brand-blue-light); }
body[data-hero-overlay] .mt-nav__links a[aria-current="page"] { color: #fff; }
body[data-hero-overlay] .mt-nav__toggle { color: #fff; }
body[data-hero-overlay] .mt-nav.is-solid .mt-nav__inner {
  background: rgba(15,25,46,0.96);
  box-shadow: 0 10px 30px rgba(8,15,30,0.42);
}
/* inner-page small heroes: add clearance so content drops below the floating island */
body[data-hero-overlay] .mt-hero--sm { padding-top: 152px; }
@media (max-width: 1080px) {
  body[data-hero-overlay] .mt-hero--sm { padding-top: 132px; }
}

/* ============================================================
   FEATURE LIST (3-point) — numbered cards
   ============================================================ */
.mt-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mt-pillars--2 { grid-template-columns: repeat(2, 1fr); }
.mt-pillars--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .mt-pillars--4 { grid-template-columns: repeat(2, 1fr); } }
.mt-pillar {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
  position: relative;
}
.mt-pillar:hover { box-shadow: var(--shadow-md); border-color: rgba(56,94,157,0.3); }
.mt-pillar__num { font-family: var(--font-mono); font-size: 12px; color: var(--brand-blue); letter-spacing: 0.1em; margin-bottom: 24px; }
.mt-pillar__icon { width: 32px; height: 32px; color: var(--brand-blue); margin-bottom: 20px; }
.mt-pillar__icon svg { width: 100%; height: 100%; }
.mt-pillar__title { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: 0.02em; color: var(--ink); margin: 0 0 12px; }
.mt-pillar__body { font-size: 16px; line-height: 1.6; color: var(--slate); margin: 0; }

/* ============================================================
   STATS BAND
   ============================================================ */
.mt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.mt-stats--3 { grid-template-columns: repeat(3, 1fr); }
.mt-stat { padding: 8px 32px; border-left: 1px solid var(--border); }
.mt-stat:first-child { padding-left: 0; border-left: 0; }
.mt-section--navy .mt-stat { border-color: rgba(255,255,255,0.14); }
.mt-stat__num { font-family: var(--font-display); font-weight: 700; font-size: 54px; line-height: 1; letter-spacing: 0.01em; color: var(--brand-blue); }
.mt-section--navy .mt-stat__num { color: #fff; }
.mt-stat__label { font-size: 15px; color: var(--slate); margin-top: 12px; }
.mt-section--navy .mt-stat__label { color: rgba(255,255,255,0.7); }

/* ============================================================
   FEATURE SPLIT (image / panel + copy)
   ============================================================ */
.mt-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mt-split--narrow-left { grid-template-columns: 5fr 7fr; }
.mt-split--narrow-right { grid-template-columns: 7fr 5fr; }
.mt-split__copy .mt-section__title { margin-top: 14px; }
.mt-split__body { font-size: 18px; line-height: 1.65; color: var(--slate); margin: 0 0 24px; }
.mt-split__body:last-child { margin-bottom: 0; }
.mt-split__media { position: relative; }

/* checklist */
.mt-checklist { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.mt-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; color: var(--ink); }
.mt-checklist svg { width: 22px; height: 22px; color: var(--brand-blue); flex: none; margin-top: 2px; }
.mt-checklist strong { font-family: var(--font-display); font-weight: 600; letter-spacing: 0.02em; }

/* "vs" comparison */
.mt-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mt-compare__col { border-radius: 12px; padding: 32px; border: 1px solid var(--border); }
.mt-compare__col--them { background: var(--off-white); }
.mt-compare__col--us { background: var(--deep-navy); color: #fff; border-color: var(--deep-navy); }
.mt-compare__tag { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 20px; display: block; }
.mt-compare__col--us .mt-compare__tag { color: var(--brand-blue-light); }
.mt-compare__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.mt-compare__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.mt-compare__list svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.mt-compare__col--them svg { color: var(--slate); }
.mt-compare__col--us svg { color: var(--brand-blue-light); }
.mt-compare__col--us li { color: rgba(255,255,255,0.9); }

/* media placeholder */
.mt-media {
  border-radius: 12px; overflow: hidden; background: var(--deep-navy);
  aspect-ratio: 4 / 3; position: relative; display: flex; align-items: center; justify-content: center;
}
.mt-media__lines {
  position: absolute; inset: 0; opacity: 0.55;
  background: repeating-linear-gradient(45deg, transparent 0 24px, rgba(91,127,188,0.16) 24px, rgba(91,127,188,0.16) 25px);
}
.mt-media__label {
  position: relative; font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.25); padding: 9px 16px; border-radius: 4px;
}

/* ============================================================
   PROCESS (numbered steps)
   ============================================================ */
.mt-process { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mt-process--3 { grid-template-columns: repeat(3, 1fr); }
.mt-process__step { display: flex; flex-direction: column; gap: 14px; padding-top: 24px; border-top: 2px solid var(--brand-blue); }
.mt-process__num { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--brand-blue); letter-spacing: 0.02em; }
.mt-process__label { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); margin: 0; letter-spacing: 0.02em; }
.mt-process__body { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 0; }

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.mt-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mt-cases--2 { grid-template-columns: repeat(2, 1fr); }
.mt-case {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.mt-case:hover { box-shadow: var(--shadow-md); border-color: rgba(56,94,157,0.3); }
.mt-case__media { aspect-ratio: 16 / 10; background: var(--deep-navy); position: relative; display: flex; align-items: center; justify-content: center; }
.mt-case__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--brand-blue); padding: 6px 12px; border-radius: 999px;
}
.mt-case__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.mt-case__sector { font-family: var(--font-display); font-weight: 500; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; }
.mt-case__title { font-family: var(--font-display); font-weight: 600; font-size: 23px; letter-spacing: 0.02em; color: var(--ink); margin: 0 0 12px; }
.mt-case__text { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 0 0 20px; }
.mt-case__outcome { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); display: flex; gap: 24px; }
.mt-case__metric { display: flex; flex-direction: column; gap: 2px; }
.mt-case__metric b { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--brand-blue); letter-spacing: 0.01em; }
.mt-case__metric span { font-size: 12px; color: var(--slate); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.mt-quote { margin: 0; max-width: 900px; }
.mt-quote--center { margin-left: auto; margin-right: auto; text-align: center; }
.mt-quote__mark { width: 46px; height: 46px; margin-bottom: 24px; }
.mt-quote--center .mt-quote__mark { margin-left: auto; margin-right: auto; }
.mt-quote__text {
  font-family: var(--font-display); font-weight: 500; font-size: 34px;
  line-height: 1.25; color: var(--ink); margin: 0 0 28px; text-wrap: balance;
}
.mt-section--navy .mt-quote__text { color: #fff; }
.mt-quote__cite { display: flex; flex-direction: column; gap: 2px; font-size: 14px; color: var(--slate); }
.mt-quote--center .mt-quote__cite { align-items: center; }
.mt-quote__cite strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; }
.mt-section--navy .mt-quote__cite { color: rgba(255,255,255,0.6); }
.mt-section--navy .mt-quote__cite strong { color: #fff; }

/* testimonial cards (multiple) */
.mt-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mt-testi {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.mt-testi__text { font-size: 18px; line-height: 1.55; color: var(--ink); margin: 0; }
.mt-testi__cite { display: flex; flex-direction: column; gap: 2px; margin-top: auto; }
.mt-testi__cite strong { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.mt-testi__cite span { font-size: 13px; color: var(--slate); }
.mt-testi__role { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue); }

/* ============================================================
   CTA band
   ============================================================ */
.mt-cta { background: var(--brand-blue); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.mt-cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent 0 26px, rgba(255,255,255,0.06) 26px, rgba(255,255,255,0.06) 27px);
  mask-image: linear-gradient(180deg, transparent 0%, #000 85%);
}
.mt-cta__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; position: relative; }
.mt-cta__title { font-family: var(--font-display); font-weight: 700; font-size: 46px; line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; margin: 14px 0 18px; color: #fff; }
.mt-cta__body { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.88); margin: 0; max-width: 480px; }
.mt-cta__actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.mt-cta__actions .mt-btn { width: auto; }
.mt-cta__note { font-size: 14px; color: rgba(255,255,255,0.72); display: flex; align-items: center; gap: 9px; }
.mt-cta__note svg { width: 17px; height: 17px; }
@media (min-width: 880px) { .mt-cta__actions { align-items: flex-end; text-align: right; } }

/* ============================================================
   FAQ accordion
   ============================================================ */
.mt-faq { max-width: 860px; }
.mt-faq__item { border-bottom: 1px solid var(--border); }
.mt-faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; font-family: var(--font-display); font-weight: 600; font-size: 21px;
  letter-spacing: 0.02em; color: var(--ink);
}
.mt-faq__q svg { width: 24px; height: 24px; color: var(--brand-blue); flex: none; transition: transform 180ms var(--ease-out); }
.mt-faq__item.is-open .mt-faq__q svg { transform: rotate(45deg); }
.mt-faq__a { max-height: 0; overflow: hidden; transition: max-height 280ms var(--ease-out); }
.mt-faq__a-inner { padding: 0 0 26px; font-size: 17px; line-height: 1.65; color: var(--slate); max-width: 720px; }

/* ============================================================
   CONTACT
   ============================================================ */
.mt-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.mt-contact__details { display: flex; flex-direction: column; gap: 4px; }
.mt-contact-row { display: flex; gap: 18px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
.mt-contact-row:first-of-type { border-top: 1px solid var(--border); }
.mt-contact-row__icon { width: 44px; height: 44px; border-radius: 8px; background: var(--brand-blue-pale); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; flex: none; }
.mt-contact-row__icon svg { width: 22px; height: 22px; }
.mt-contact-row__label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 4px; }
.mt-contact-row__value { font-size: 18px; color: var(--ink); }
.mt-contact-row__value a { color: var(--brand-blue); }
.mt-contact-row__value a:hover { text-decoration: underline; }

/* form */
.mt-form { display: flex; flex-direction: column; gap: 18px; background: #fff; padding: 36px; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.mt-form--lg { padding: 40px; }
.mt-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mt-field { display: flex; flex-direction: column; gap: 7px; }
.mt-field > span { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink); }
.mt-field input, .mt-field select, .mt-field textarea {
  font-family: var(--font-body); font-size: 15px; padding: 13px 14px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
  color: var(--ink); outline: none; width: 100%;
  transition: border-color 120ms var(--ease-out), box-shadow 120ms var(--ease-out);
}
.mt-field textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.mt-field input:focus, .mt-field select:focus, .mt-field textarea:focus { border-color: var(--brand-blue); box-shadow: var(--shadow-focus); }
.mt-field__err { color: var(--error); font-size: 12px; font-style: normal; }
.mt-form__sent { padding: 16px 0; text-align: center; }
.mt-form__sent-icon { width: 56px; height: 56px; border-radius: 999px; background: var(--brand-blue-pale); color: var(--brand-blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.mt-form__sent-icon svg { width: 28px; height: 28px; }
.mt-form__sent-title { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--ink); margin: 0 0 12px; letter-spacing: 0.02em; }
.mt-form__sent p { font-size: 16px; color: var(--slate); margin: 0; }
.mt-form__legal { font-size: 13px; color: var(--slate); margin: 0; display: flex; gap: 9px; align-items: flex-start; }
.mt-form__legal svg { width: 16px; height: 16px; color: var(--brand-blue); flex: none; margin-top: 2px; }

/* ============================================================
   PARTNERS GRID
   ============================================================ */
.mt-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mt-partner {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.mt-partner:hover { box-shadow: var(--shadow-md); border-color: rgba(56,94,157,0.3); }
.mt-partner__logo {
  height: 80px; border-radius: 8px; background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 0 24px;
}
.mt-partner__logo span {
  font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--brand-blue); text-align: center; line-height: 1.1;
}
.mt-partner__kind { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.mt-partner__name { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: 0.02em; color: var(--ink); margin: 0; }
.mt-partner__body { font-size: 15px; line-height: 1.6; color: var(--slate); margin: 0; flex: 1; }

/* ============================================================
   PROSE / generic
   ============================================================ */
.mt-prose p { font-size: 18px; line-height: 1.7; color: var(--slate); margin: 0 0 20px; max-width: 720px; }
.mt-prose p:last-child { margin-bottom: 0; }
.mt-prose strong { color: var(--ink); font-weight: 600; }

.mt-lead { font-size: 22px; line-height: 1.5; color: var(--ink); font-weight: 400; margin: 0 0 28px; }

/* ============================================================
   FOOTER (injected by site.js)
   ============================================================ */
.mt-footer { background: var(--deep-navy); color: rgba(255,255,255,0.78); padding: 80px 0 32px; }
.mt-footer__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mt-footer__brand img { display: block; height: 42px; margin-bottom: 18px; }
.mt-footer__tag { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin: 0 0 24px; }
.mt-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mt-footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.mt-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.mt-footer__col a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 120ms var(--ease-out); }
.mt-footer__col a:hover { color: #fff; }
.mt-footer__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 12px; color: rgba(255,255,255,0.5); gap: 16px; flex-wrap: wrap; }
.mt-footer__legal a { color: rgba(255,255,255,0.6); margin-left: 20px; }
.mt-footer__legal a:hover { color: #fff; }

/* ============================================================
   MODAL (booking) — injected by site.js
   ============================================================ */
.mt-modal-scrim {
  position: fixed; inset: 0; background: rgba(22,36,63,0.6);
  display: flex; align-items: center; justify-content: center; z-index: 100;
  padding: 24px;
}
.mt-modal-scrim[hidden] { display: none; }
.mt-modal {
  background: #fff; border-radius: 12px; padding: 48px 46px; max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg); animation: modal-in 220ms var(--ease-out); position: relative;
  max-height: 90vh; overflow-y: auto;
}
/* Splat / wavy edge — clip-path is generated by site.js; shadow follows the shape */
.mt-modal--splat {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 34px rgba(22,36,63,0.26));
}
.mt-modal__close { position: absolute; top: 26px; right: 28px; background: none; border: 0; color: var(--slate); padding: 6px; border-radius: 6px; transition: background 120ms var(--ease-out); z-index: 3; }
.mt-modal__close:hover { background: var(--off-white); color: var(--ink); }
.mt-modal__close svg { width: 22px; height: 22px; }
.mt-modal__eyebrow { font-family: var(--font-display); font-weight: 500; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-blue); }
.mt-modal__title { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); margin: 8px 0 12px; }
.mt-modal__body { font-size: 16px; line-height: 1.6; color: var(--slate); margin: 0 0 24px; }
/* Intro video placeholder inside the booking modal */
.mt-modal__video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden;
  background: var(--deep-navy); margin: 0 0 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.mt-modal__video-lines {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent 0 22px,
    rgba(91,127,188,0.16) 22px, rgba(91,127,188,0.16) 23px);
}
.mt-modal__video .mt-playbtn { position: relative; z-index: 2; }
.mt-modal__video-cap {
  position: relative; z-index: 2; font-family: var(--font-display); font-weight: 500;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.mt-playbtn--sm { width: 56px; height: 56px; border-width: 2px; }
.mt-playbtn--sm svg { width: 20px; height: 20px; margin-left: 3px; }
/* Intro audio message inside the booking modal (replaces the video reserve) */
.mt-modal__audio {
  position: relative; border-radius: 10px; overflow: hidden;
  background: var(--deep-navy); margin: 0 0 26px;
  display: flex; align-items: center; gap: 18px; padding: 18px 22px;
}
.mt-modal__audio .mt-playbtn { position: relative; z-index: 2; flex: none; }
.mt-modal__audio-wave {
  position: relative; z-index: 2; display: flex; align-items: center; gap: 3px;
  height: 30px; flex: 1; min-width: 0; overflow: hidden;
}
.mt-modal__audio-wave span { width: 3px; flex: none; border-radius: 2px; background: var(--brand-blue-light); height: 28%; }
.mt-modal__audio.is-playing .mt-modal__audio-wave span { animation: mt-vn-wave 0.95s var(--ease-in-out) infinite; }
.mt-modal__audio .mt-modal__video-cap { white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .mt-modal__audio.is-playing .mt-modal__audio-wave span { animation: none; }
}
@keyframes modal-in { from { transform: translateY(10px); } to { transform: none; } }
@media (max-width: 600px) {
  .mt-modal-scrim { padding: 12px; }
  .mt-modal { padding: 22px 20px 26px; max-height: 92vh; max-height: calc(100dvh - 24px); }
  .mt-modal__body { display: none; }
  .mt-modal__title { font-size: 24px; margin: 6px 30px 14px 0; }
  .mt-modal__close { top: 14px; right: 12px; }
  .mt-modal__audio { padding: 14px 18px; margin-bottom: 20px; }
  .mt-modal__audio .mt-modal__video-cap { display: none; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
/* Reveal hooks are inert: content is always visible. No entrance animation —
   keeps output bulletproof for print/PDF/reduced-motion and screenshots. */
.mt-reveal { opacity: 1; transform: none; }

/* ============================================================
   WISH LIST — scrolling ticker of outlined "stamp" chips
   ============================================================ */
.mt-wishlist {
  position: relative;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 38px;
  overflow: hidden;
}
/* numbers → people reveal backdrop (cursor digitises the numbers out) */
.mt-wishlist__bg {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
}
.mt-wishlist__people { position: absolute; inset: 0; display: flex; background: var(--deep-navy); }
img.mt-wishlist__person {
  flex: 1 1 0; min-width: 0; width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: 50% 46%;
}
image-slot.mt-wishlist__person {
  flex: 1 1 0; min-width: 0; height: 100%; display: block;
  color: rgba(255,255,255,0.62);
}
image-slot.mt-wishlist__person::part(frame) { background: var(--deep-navy); }
image-slot.mt-wishlist__person::part(ring) { border-color: rgba(255,255,255,0.28); }
.mt-wishlist__numbers {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; display: block;
}
.mt-wishlist__head,
.mt-wishlist__track { position: relative; z-index: 1; }
.mt-wishlist__head {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px;
  margin-bottom: 58px;
  min-height: 60px;
  position: relative; isolation: isolate;
}
.mt-wishlist__head-row {
  display: inline-flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.mt-wishlist__note {
  font-family: 'Caveat', ui-rounded, cursive;
  font-weight: 700;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1;
  color: var(--brand-blue);
  margin: 0;
  white-space: nowrap;
  position: relative;
  transform: rotate(-1.4deg);
  transform-origin: left center;
}
.mt-wishlist__note-vara { display: none; width: 610px; max-width: 86vw; }
.mt-wishlist__note-vara svg { display: block; overflow: visible; margin-bottom: -14px; }
.mt-wishlist__note-vara svg path { stroke: var(--brand-blue); stroke-linecap: round; stroke-linejoin: round; }
.mt-wishlist__note.vara-init .mt-wishlist__note-vara { display: block; }
.mt-wishlist__note.vara-ready .mt-wishlist__note-fallback { display: none; }
@media (max-width: 600px) {
  .mt-wishlist__note { white-space: normal; font-size: 21px; }
}
.mt-wishlist__head::before {
  content: ''; position: absolute; inset: -10px -30px -13px -24px;
  z-index: -1;
  background:
    radial-gradient(108% 150% at 50% 50%,
      var(--off-white) 0,
      var(--off-white) 74%,
      rgba(246,248,251,0.6) 89%,
      rgba(246,248,251,0) 100%);
}
.mt-wishlist__title {
  font-family: var(--font-display);
  font-weight: var(--fw-display-semi);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
}
.mt-wishlist__wink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--slate);
}
.mt-wink {
  display: inline-flex;
  align-items: center;
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-weight: var(--fw-display-semi);
  font-size: 1.2em;
  line-height: 1;
  letter-spacing: 0.04em;
}
.mt-wink__paren { opacity: 0.7; }
.mt-wink__eye { display: inline-block; }
.mt-wink__eye-l { margin: 0 0.06em; }
.mt-wink__eye-r {
  position: relative;
  display: inline-block;
}
.mt-wink__open,
.mt-wink__shut {
  display: inline-block;
}
.mt-wink__shut {
  position: absolute;
  left: 0; top: 0;
}
.mt-wink__open { animation: mt-wink-open 3.2s ease-in-out infinite; }
.mt-wink__shut { animation: mt-wink-shut 3.2s ease-in-out infinite; }
@keyframes mt-wink-open {
  0%, 80%, 100% { opacity: 1; }
  85%, 92%      { opacity: 0; }
}
@keyframes mt-wink-shut {
  0%, 80%, 100% { opacity: 0; }
  85%, 92%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .mt-wink__open { animation: none; opacity: 0; }
  .mt-wink__shut { animation: none; opacity: 1; }
}
.mt-wishlist__track {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  -webkit-mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.mt-wishlist__rail {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: mt-wishlist-scroll 22s linear infinite;
}
@keyframes mt-wishlist-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mt-wishlist__item {
  flex: 0 0 auto;
  display: inline-flex; align-items: center;
  height: 56px; padding: 0 26px;
  border: 1.5px solid var(--brand-blue);
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: var(--fw-display-med);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--brand-blue);
  background: #fff;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .mt-wishlist__track { overflow-x: auto; -webkit-mask: none; mask: none; }
  .mt-wishlist__rail { animation: none; }
}

/* ============================================================
   STATEMENT (opportunity) — scroll-scrubbed survive→thrive
   ============================================================ */
.mt-statement { padding: 120px 0; overflow: hidden; }
.mt-statement__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.mt-statement__eyebrow { margin-bottom: 28px; }
.mt-statement__lead {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.12; letter-spacing: 0.01em;
  color: var(--ink); margin: 0 auto; max-width: 880px;
}
.mt-statement__gain {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 7.4vw, 104px); line-height: 0.98; letter-spacing: 0.005em;
  color: var(--ink); margin: 18px 0 0;
}
.mt-statement__gain-word {
  color: var(--brand-blue); text-transform: uppercase; letter-spacing: 0.02em;
}
.mt-statement__sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px); line-height: 1.6; color: var(--slate);
  margin: 40px auto 0; max-width: 620px;
}
.mt-statement__sub strong { color: var(--ink); font-weight: 600; }
.mt-sub-line2 { white-space: nowrap; }
@media (max-width: 560px) { .mt-sub-line2 { white-space: normal; } }

/* survive (struck) + thrive (correction) — base = final state, bulletproof */
.mt-strike { position: relative; white-space: nowrap; }
.mt-strike::after {
  content: ""; position: absolute; left: -2px; right: -2px; top: 56%;
  height: 2px; background: var(--slate); transform: scaleX(1); transform-origin: left;
  border-radius: 2px;
}
.mt-replace {
  color: var(--brand-blue); font-weight: 600; white-space: nowrap;
}
.mt-replace.is-typing::after {
  content: ""; display: inline-block; width: 2px; height: 0.95em;
  margin-left: 2px; vertical-align: -0.08em; background: var(--brand-blue);
  animation: mt-caret 0.9s steps(1) infinite;
}
.mt-type-lead.is-typing::after {
  content: ""; display: inline-block; width: 2px; height: 0.95em;
  margin-left: 1px; vertical-align: -0.08em; background: var(--slate);
  animation: mt-caret 0.9s steps(1) infinite;
}
@keyframes mt-caret { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* ---- Sequence mode: auto-plays once scrolled into view (JS adds .seq) ---- */
.mt-statement.seq .mt-statement__gain {
  opacity: 0; filter: blur(18px); transform: translateY(22px);
  transition: opacity 2.2s var(--ease-out), filter 2.2s var(--ease-out), transform 2.2s var(--ease-out);
  will-change: opacity, filter, transform;
}
.mt-statement.seq.seq-gain .mt-statement__gain { opacity: 1; filter: blur(0px); transform: none; }

/* lead headline starts centred in the section, then floats up to its resting spot */
.mt-statement.seq .mt-statement__lead {
  transform: translateY(var(--lead-shift, 0));
  transition: transform 0.85s var(--ease-out);
  will-change: transform;
}
.mt-statement.seq.seq-up .mt-statement__lead { transform: none; }

.mt-statement.seq .mt-statement__sub {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.mt-statement.seq.seq-sub .mt-statement__sub { opacity: 1; transform: none; }

.mt-statement.seq .mt-strike::after {
  transform: scaleX(0); transition: transform 0.45s var(--ease-out);
}
.mt-statement.seq.seq-strike .mt-strike::after { transform: scaleX(1); }

@media (max-width: 560px) {
  .mt-statement { padding: 80px 0; }
  .mt-statement__sub { margin-top: 32px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .mt-hero__split, .mt-split, .mt-split--narrow-left, .mt-split--narrow-right,
  .mt-cta__inner, .mt-contact, .mt-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .mt-pillars, .mt-pillars--2, .mt-pillars--4, .mt-cases, .mt-cases--2, .mt-process, .mt-process--3,
  .mt-partners, .mt-testi-grid, .mt-compare { grid-template-columns: 1fr; }
  .mt-stats, .mt-stats--3 { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .mt-stat { padding: 8px 24px; }
  .mt-stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .mt-section__title, .mt-cta__title { font-size: 32px; }
  .mt-quote__text { font-size: 26px; }
  .mt-cta__actions { align-items: flex-start; text-align: left; }
  .mt-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mt-section { padding: 64px 0; }
  .mt-container { padding: 0 20px; }
  .mt-stats, .mt-stats--3 { grid-template-columns: 1fr; }
  .mt-stat { padding-left: 0; border-left: 0; }
}

/* ============================================================
   ONSLAUGHT — pinned scrollytelling "Why we do this" (Dir B)
   Headline pins; the shock cards swap in on scroll.
   ============================================================ */
.mt-onslaught {
  position: relative;
  background: var(--deep-navy);
  color: #fff;
  height: 400vh;                 /* scroll runway for 4 shocks */
  --ons-stage-h: min(74vh, 680px);
}
.mt-onslaught__lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.6;
  background: repeating-linear-gradient(45deg, transparent 0 26px,
    rgba(91,127,188,0.10) 26px, rgba(91,127,188,0.10) 27px);
  -webkit-mask-image: linear-gradient(135deg, transparent 40%, #000 100%);
          mask-image: linear-gradient(135deg, transparent 40%, #000 100%);
}
.mt-onslaught__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.mt-onslaught__grid {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.mt-onslaught__headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.0; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff; margin: 16px 0 22px; text-wrap: balance;
}
.mt-onslaught__headline .accent { color: var(--brand-blue-light); }
.mt-onslaught__standfirst {
  font-size: 18px; line-height: 1.62; color: rgba(255,255,255,0.74);
  margin: 0 0 34px; max-width: 460px;
}
.mt-onslaught__rail { display: flex; flex-direction: column; gap: 0; border-left: 1px solid rgba(255,255,255,0.14); }
.mt-onslaught__rail button {
  display: flex; align-items: center; gap: 16px; background: none; border: 0;
  padding: 14px 20px; text-align: left; color: rgba(255,255,255,0.45);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-left: 2px solid transparent; margin-left: -1px;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.mt-onslaught__rail button .n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; opacity: 0.85; }
.mt-onslaught__rail button:hover { color: rgba(255,255,255,0.82); }
.mt-onslaught__rail button.is-active { color: #fff; border-left-color: var(--brand-blue-light); }

/* Right column is a tall clipped viewport filling the pinned section; the card
   track scrolls through it as the user scrolls. */
.mt-onslaught__stage { position: relative; height: var(--ons-stage-h); overflow: hidden; }
.mt-onslaught__stage::before,
.mt-onslaught__stage::after {
  content: ""; position: absolute; left: 0; right: 0; height: 72px; z-index: 2; pointer-events: none;
}
.mt-onslaught__stage::before { top: 0; background: linear-gradient(180deg, var(--deep-navy), transparent); }
.mt-onslaught__stage::after { bottom: 0; background: linear-gradient(0deg, var(--deep-navy), transparent); }
.mt-onslaught__track {
  display: flex; flex-direction: column; gap: 20px;
  will-change: transform; transition: transform 140ms linear;
}
.mt-onslaught__card {
  flex: 0 0 var(--ons-stage-h); height: var(--ons-stage-h);
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; padding: 50px 48px 46px; overflow: hidden;
  opacity: 0.34; transition: opacity 360ms var(--ease-out);
}
.mt-onslaught__card.is-active { opacity: 1; }
.mt-onslaught__index {
  position: absolute; top: -28px; right: 4px;
  font-family: var(--font-display); font-weight: 700; font-size: 210px; line-height: 1;
  color: rgba(91,127,188,0.16); pointer-events: none; user-select: none;
}
.mt-onslaught__kicker {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue-light);
}
.mt-onslaught__name {
  position: relative; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff; margin: 14px 0 18px;
}
.mt-onslaught__desc { position: relative; font-size: 18px; line-height: 1.62; color: rgba(255,255,255,0.82); margin: 0; max-width: 440px; }
.mt-onslaught__tie {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.6); max-width: 460px;
}
.mt-onslaught__tie b { color: #fff; font-weight: 600; }
@media (max-width: 880px) {
  .mt-onslaught { height: auto; }
  .mt-onslaught__sticky { position: static; height: auto; padding: 72px 0; }
  .mt-onslaught__grid { grid-template-columns: 1fr; gap: 36px; }
  .mt-onslaught__rail { display: none; }
  .mt-onslaught__stage { height: auto; overflow: visible; }
  .mt-onslaught__stage::before, .mt-onslaught__stage::after { display: none; }
  .mt-onslaught__track { transform: none !important; gap: 16px; }
  .mt-onslaught__card { flex: none; height: auto; opacity: 1; }
  .mt-onslaught__index { font-size: 150px; top: -18px; }
}
/* Stacked fallback (reduced-motion on desktop) — mirrors the mobile layout */
.mt-onslaught.is-stacked { height: auto; }
.mt-onslaught.is-stacked .mt-onslaught__sticky { position: static; height: auto; padding: 88px 0; }
.mt-onslaught.is-stacked .mt-onslaught__grid { grid-template-columns: 1fr; gap: 40px; }
.mt-onslaught.is-stacked .mt-onslaught__rail { display: none; }
.mt-onslaught.is-stacked .mt-onslaught__stage { height: auto; overflow: visible; }
.mt-onslaught.is-stacked .mt-onslaught__stage::before,
.mt-onslaught.is-stacked .mt-onslaught__stage::after { display: none; }
.mt-onslaught.is-stacked .mt-onslaught__track { transform: none !important; gap: 18px; }
.mt-onslaught.is-stacked .mt-onslaught__card { flex: none; height: auto; opacity: 1; }

/* ============================================================
   TWO SERVICES — big split panels (Sell / Grow), hover-expand
   ============================================================ */
.mt-services { background: var(--deep-navy); position: relative; scroll-margin-top: 124px; }
.mt-services__split { display: flex; min-height: 560px; }
.mt-service {
  position: relative; flex: 1 1 0; min-width: 0; overflow: hidden;
  text-decoration: none;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate;
  transition: flex-grow 460ms var(--ease-out);
}
.mt-service + .mt-service { border-left: 1px solid rgba(255,255,255,0.12); }
.mt-service:hover, .mt-service:focus, .mt-service:focus-visible,
.mt-service:hover .mt-service__title, .mt-service:hover .mt-service__body,
.mt-service:hover .mt-service__go, .mt-service:hover .mt-eyebrow {
  text-decoration: none;
}
.mt-service--sell { background: var(--deep-navy); }
.mt-service--grow { background: var(--brand-blue); }
.mt-service__lines {
  position: absolute; inset: 0; z-index: 1; opacity: 0.7; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent 0 24px,
    rgba(255,255,255,0.10) 24px, rgba(255,255,255,0.10) 25px);
}
.mt-service--grow .mt-service__lines {
  background: repeating-linear-gradient(-45deg, transparent 0 24px,
    rgba(255,255,255,0.10) 24px, rgba(255,255,255,0.10) 25px);
}
.mt-service__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,21,42,0.05) 0%, rgba(12,21,42,0.10) 40%, rgba(12,21,42,0.74) 100%);
}
.mt-service--grow .mt-service__scrim {
  background: linear-gradient(180deg, rgba(20,36,63,0.04) 0%, rgba(20,36,63,0.12) 40%, rgba(20,36,63,0.66) 100%);
}
.mt-service__content { position: relative; z-index: 3; padding: 56px 56px 52px; max-width: 540px; }
.mt-service__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 88px); line-height: 0.9; letter-spacing: 0.02em;
  text-transform: uppercase; color: #fff; margin: 14px 0 16px;
}
.mt-service__body { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); margin: 0 0 24px; max-width: 380px; }
.mt-service__go {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.10em; text-transform: uppercase; color: #fff;
  display: inline-flex; align-items: center; gap: 9px;
}
.mt-service__go svg { width: 16px; height: 16px; transition: transform 180ms var(--ease-out); }
.mt-service:hover .mt-service__go svg { transform: translateX(5px); }
@media (hover: hover) and (min-width: 881px) {
  .mt-services__split:hover .mt-service { flex-grow: 0.82; }
  .mt-services__split .mt-service:hover { flex-grow: 1.55; }
}
@media (max-width: 880px) {
  .mt-services__split { flex-direction: column; min-height: 0; }
  .mt-service { min-height: 380px; }
  .mt-service + .mt-service { border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
}

/* "Pick a lane" cue — flashes up when the section is scrolled into view */
.mt-services__cue {
  position: absolute; top: 25%; left: 50%; z-index: 5; pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9); opacity: 0;
  display: inline-flex; align-items: center; gap: 14px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  background: rgba(15,25,46,0.86); border: 1px solid rgba(255,255,255,0.24);
  padding: 16px 30px; border-radius: 999px; box-shadow: var(--shadow-lg);
}
.mt-services__cue svg { width: 20px; height: 20px; color: var(--brand-blue-light); }
.mt-services__cue.is-flash { animation: mt-cue-flash 2.6s var(--ease-out) forwards; }
@keyframes mt-cue-flash {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.88); }
  12%  { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
  20%  { transform: translate(-50%, -50%) scale(1); }
  72%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -56%) scale(0.98); }
}
@media (prefers-reduced-motion: reduce) {
  .mt-services__cue.is-flash { animation: none; opacity: 0; }
}
/* On mobile the panels stack, so the cue sits on the seam between Sell and Grow */
@media (max-width: 880px) {
  .mt-services__cue { top: 50%; }
}

/* ============================================================
   BRAND FILM — full-width reserve, scales up on scroll
   ============================================================ */
.mt-brandfilm { background: var(--bg-2); padding: 104px 0; overflow: hidden; }
.mt-brandfilm__intro {
  width: min(1320px, calc(100% - 48px)); margin: 0 auto clamp(28px, 4vw, 56px);
  text-align: center; will-change: opacity, transform;
}
.mt-brandfilm__heading {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink); margin: 0;
}
.mt-brandfilm__frame {
  position: relative; width: min(1320px, calc(100% - 48px)); margin: 0 auto;
  aspect-ratio: 16 / 13.5; border-radius: 18px; overflow: hidden;
  background: var(--deep-navy); box-shadow: var(--shadow-lg);
  transform: scale(0.86); transform-origin: center; will-change: transform;
}
/* Below ~1220px a strict 16:9 frame gets too short for the embedded
   engine's content — hold the height at 680px instead so the whole
   piece always fits without internal scrolling. */
@media (max-width: 1220px) {
  .mt-brandfilm__frame { aspect-ratio: auto; height: 900px; }
}
.mt-brandfilm__bg { position: absolute; inset: 0; z-index: 0; }
image-slot.mt-brandfilm__bg { color: rgba(255,255,255,0.6); }
image-slot.mt-brandfilm__bg::part(frame) { background: transparent; }
image-slot.mt-brandfilm__bg::part(ring) { border-color: rgba(255,255,255,0.26); }
.mt-brandfilm__lines {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent 0 26px,
    rgba(91,127,188,0.14) 26px, rgba(91,127,188,0.14) 27px);
}
.mt-brandfilm__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 50%, transparent 40%, rgba(8,15,30,0.5) 100%);
}
.mt-brandfilm__center {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.mt-playbtn {
  width: 84px; height: 84px; border-radius: 999px; border: 2px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 180ms var(--ease-out), transform 180ms var(--ease-out);
}
.mt-playbtn svg { width: 30px; height: 30px; margin-left: 4px; }
.mt-brandfilm__frame:hover .mt-playbtn { background: rgba(255,255,255,0.2); transform: scale(1.04); }
.mt-brandfilm__caption {
  font-family: var(--font-display); font-weight: 500; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.78);
}
.mt-brandfilm__tag {
  position: absolute; top: 22px; left: 22px; z-index: 4;
  font-family: var(--font-display); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: rgba(56,94,157,0.85); border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 13px; border-radius: 999px;
}
@media (max-width: 880px) {
  .mt-brandfilm { padding: 72px 0; }
  .mt-brandfilm__frame { transform: none !important; border-radius: 12px; }
  .mt-playbtn { width: 64px; height: 64px; }
  .mt-playbtn svg { width: 24px; height: 24px; }
}

/* ============================================================
   FOUNDER VOICE NOTE — sticky mini-player (reserve)
   ============================================================ */
.mt-voicenote {
  position: fixed; left: 24px; bottom: 24px; z-index: 60;
  display: flex; align-items: center; gap: 14px;
  background: rgba(15,25,46,0.95); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px; padding: 9px 16px 9px 9px; box-shadow: var(--shadow-lg);
  color: #fff; max-width: calc(100vw - 48px);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
}
.mt-voicenote.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.mt-voicenote__btn {
  width: 48px; height: 48px; border-radius: 999px; background: var(--brand-blue); color: #fff;
  border: 0; flex: none; display: flex; align-items: center; justify-content: center;
  transition: background 160ms var(--ease-out);
}
.mt-voicenote__btn:hover { background: var(--brand-blue-hover); }
.mt-voicenote__btn svg { width: 20px; height: 20px; }
.mt-voicenote__wave { display: flex; align-items: center; gap: 3px; height: 24px; }
.mt-voicenote__wave span { width: 3px; border-radius: 2px; background: var(--brand-blue-light); height: 28%; }
.mt-voicenote.is-playing .mt-voicenote__wave span { animation: mt-vn-wave 0.95s var(--ease-in-out) infinite; }
@keyframes mt-vn-wave { 0%, 100% { height: 26%; } 50% { height: 92%; } }
.mt-voicenote__meta { display: flex; flex-direction: column; gap: 2px; padding-right: 4px; }
.mt-voicenote__label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; }
.mt-voicenote__sub { font-size: 11.5px; color: rgba(255,255,255,0.58); line-height: 1; }
.mt-voicenote__close {
  width: 26px; height: 26px; border-radius: 999px; border: 0; flex: none;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.66);
  display: flex; align-items: center; justify-content: center;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}
.mt-voicenote__close:hover { background: rgba(255,255,255,0.16); color: #fff; }
.mt-voicenote__close svg { width: 15px; height: 15px; }
@media (prefers-reduced-motion: reduce) {
  .mt-voicenote.is-playing .mt-voicenote__wave span { animation: none; }
}
@media (max-width: 560px) {
  .mt-voicenote__wave { display: none; }
  .mt-voicenote { left: 14px; bottom: 14px; }
}

/* ============================================================
   PROCESS — 5-up journey (Dir B)
   ============================================================ */
.mt-process--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .mt-process--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .mt-process--5 { grid-template-columns: 1fr; } }

/* ============================================================
   INNER-PAGE ADDITIONS (What & Why and other inner pages)
   ============================================================ */

/* ---- Light, calm inner-page hero (white surface, ink type) ---- */
.mt-hero--light { background: var(--off-white); color: var(--ink); }
.mt-hero--light .mt-hero__lines {
  opacity: 1;
  background: repeating-linear-gradient(45deg, transparent 0 27px,
    rgba(56,94,157,0.07) 27px, rgba(56,94,157,0.07) 28px);
  -webkit-mask-image: linear-gradient(135deg, transparent 44%, #000 100%);
          mask-image: linear-gradient(135deg, transparent 44%, #000 100%);
}
.mt-hero--light .mt-hero__title { color: var(--ink); }
.mt-hero--light .mt-hero__title .accent { color: var(--brand-blue); }
.mt-hero--light .mt-hero__sub { color: var(--slate); }
.mt-hero__inner .mt-eyebrow { margin-bottom: 18px; }

/* ---- Dark topographic inner-page hero (animated contour canvas) ---- */
.mt-hero--topo {
  background:
    radial-gradient(60% 60% at 62% 34%, rgba(56,94,157,0.32), transparent 70%),
    radial-gradient(55% 50% at 90% 82%, rgba(56,94,157,0.16), transparent 72%),
    linear-gradient(178deg, #060c18 0%, #0a1324 56%, #0c1830 100%);
  color: #fff; min-height: 62vh;
}
.mt-hero--topo .mt-hero__scrim {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,15,30,0.74) 0%, rgba(8,15,30,0.34) 44%, transparent 74%),
    linear-gradient(180deg, rgba(8,15,30,0.45) 0%, transparent 26%, transparent 62%, rgba(8,15,30,0.74) 100%);
}
.mt-hero--topo .mt-hero__inner { position: relative; z-index: 2; }
.mt-hero--topo .mt-hero__title { color: #fff; }
.mt-hero--topo .mt-hero__sub { color: rgba(255,255,255,0.8); }
/* clickable light-blue hero words — mirrors the home hero ".sky" treatment */
.mt-hero--topo .mt-hero__title .sky {
  color: #8FB2E2; display: inline-block; pointer-events: auto; cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms var(--ease-out), color 180ms var(--ease-out), text-shadow 180ms var(--ease-out);
}
.mt-hero--topo .mt-hero__title .sky:hover {
  transform: scale(1.08) translateY(-3px);
  color: #BBD2F2; text-shadow: 0 10px 28px rgba(8,15,30,0.55);
}
.mt-hero--topo .mt-hero__title .sky:focus-visible {
  outline: none; color: #BBD2F2; text-shadow: 0 10px 28px rgba(8,15,30,0.55);
}
@media (prefers-reduced-motion: no-preference) {
  .mt-hero--topo .mt-hero__title .sky { animation: mt-hero-pop 1150ms var(--ease-out) backwards; }
  .mt-hero--topo .mt-hero__title .sky:nth-of-type(1) { animation-delay: 450ms; }
  .mt-hero--topo .mt-hero__title .sky:nth-of-type(2) { animation-delay: 1050ms; }
  .mt-hero--topo .mt-hero__title .sky:nth-of-type(3) { animation-delay: 1650ms; }
}
@media (max-width: 560px) { .mt-hero--topo { min-height: 56vh; } }

/* ---- Prose block (body paragraphs on inner pages) ---- */
.mt-prose { max-width: 640px; }
.mt-prose p { font-size: 19px; line-height: 1.62; color: var(--slate); margin: 0 0 18px; text-wrap: pretty; }
.mt-prose p:last-child { margin-bottom: 0; }
.mt-prose p.mt-prose__lead { font-size: 22px; color: var(--ink); font-weight: 500; }
.mt-prose strong { color: var(--ink); font-weight: 600; }
.mt-section--navy .mt-prose p { color: rgba(255,255,255,0.78); }
.mt-section--navy .mt-prose p.mt-prose__lead,
.mt-section--navy .mt-prose strong { color: #fff; }

/* ---- Tag row (stamp eyebrows used as chips) ---- */
.mt-tagrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

/* ---- Risk spectrum scale (1 bonds → 10 crypto, marker at 7) ---- */
.mt-riskscale { max-width: 880px; }
.mt-riskscale__ends { display: flex; justify-content: space-between; gap: 24px; }
.mt-riskscale__end { display: flex; flex-direction: column; gap: 5px; }
.mt-riskscale__end--hi { text-align: right; }
.mt-riskscale__end .n {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; color: var(--brand-blue);
}
.mt-riskscale__end .t {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
}
.mt-riskscale__plot { position: relative; padding: 78px 0 38px; }
.mt-riskscale__track {
  position: relative; height: 8px; border-radius: var(--r-sm);
  background: var(--brand-blue-pale); border: 1px solid var(--border);
}
.mt-riskscale__fill {
  position: absolute; top: -1px; bottom: -1px; left: -1px; width: 66.666%;
  background: var(--brand-blue); opacity: 0.16; border-radius: var(--r-sm) 0 0 var(--r-sm);
}
.mt-riskscale__tick {
  position: absolute; top: -6px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.mt-riskscale__tick i { width: 1px; height: 20px; background: var(--border); display: block; }
.mt-riskscale__tick span {
  margin-top: 9px; font-family: var(--font-mono); font-size: 11px; color: var(--slate);
}
.mt-riskscale__tick--on i { background: var(--brand-blue); }
.mt-riskscale__tick--on span { color: var(--brand-blue); font-weight: 600; }
.mt-riskscale__marker { position: absolute; top: 50%; transform: translate(-50%, -50%); z-index: 2; }
.mt-riskscale__dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--brand-blue);
  border: 3px solid #fff; box-shadow: var(--shadow-md);
}
.mt-riskscale__flag {
  position: absolute; bottom: calc(100% + 16px); left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: var(--brand-blue); color: #fff; padding: 9px 15px;
  border-radius: var(--r-sm); font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase;
}
.mt-riskscale__flag::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--brand-blue);
}
@media (max-width: 560px) {
  .mt-riskscale__end .t { font-size: 13px; }
  .mt-riskscale__flag { font-size: 11px; padding: 7px 11px; }
  .mt-riskscale__tick:nth-child(even) span { display: none; }
}

/* ---- Inline founder voice note (reserve, in-flow) ---- */
.mt-audionote {
  display: flex; align-items: center; gap: 18px; max-width: 580px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 16px 20px; box-shadow: var(--shadow-sm);
}
.mt-audionote__btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand-blue); color: #fff;
  border: 0; flex: none; display: flex; align-items: center; justify-content: center;
  transition: background 160ms var(--ease-out);
}
.mt-audionote__btn:hover { background: var(--brand-blue-hover); }
.mt-audionote__btn svg { width: 20px; height: 20px; margin-left: 2px; }
.mt-audionote__wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 30px; min-width: 0; }
.mt-audionote__wave span { flex: 1; min-width: 2px; background: var(--brand-blue); opacity: 0.36; border-radius: 2px; }
.mt-audionote__meta { display: flex; flex-direction: column; gap: 3px; white-space: nowrap; }
.mt-audionote__label {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); line-height: 1;
}
.mt-audionote__sub { font-size: 13px; color: var(--slate); line-height: 1; }
.mt-audionote__tag {
  font-family: var(--font-display); font-weight: 600; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-blue); border: 1px solid var(--brand-blue);
  border-radius: var(--r-pill); padding: 4px 9px; margin-left: auto; align-self: center;
}
@media (max-width: 560px) {
  .mt-audionote { flex-wrap: wrap; }
  .mt-audionote__wave { order: 4; flex-basis: 100%; }
}

/* ---- GAIN statement re-used on a navy band (static) ---- */
.mt-statement--on-navy .mt-statement__lead { color: #fff; }
.mt-statement--on-navy .mt-statement__gain { color: #fff; }
.mt-statement--on-navy .mt-statement__gain-word { color: var(--brand-blue-light); }
.mt-statement--on-navy .mt-statement__sub { color: rgba(255,255,255,0.72); }
.mt-statement--on-navy .mt-statement__sub strong { color: #fff; }

/* ---- Big lead stat (data reality-check) ---- */
.mt-bigstat { display: flex; flex-direction: column; gap: 18px; max-width: 880px; }
.mt-bigstat__fig {
  font-family: var(--font-display); font-weight: 700; line-height: 0.94;
  letter-spacing: 0.01em; color: var(--brand-blue);
  font-size: clamp(56px, 8.5vw, 120px);
}
.mt-bigstat__fig .unit { color: var(--ink); }
.mt-bigstat__cap { font-size: 20px; line-height: 1.55; color: var(--ink); max-width: 620px; margin: 0; }
.mt-bigstat__cap strong { font-weight: 600; }
.mt-bigstat__pct {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px); color: var(--brand-blue);
  letter-spacing: 0.04em; margin-top: 4px;
}

/* ---- Two-path cards (light surface, hover lift — same tokens as .mt-case) ---- */
.mt-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mt-pathcard {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--r-md); padding: 40px;
  transition: box-shadow 180ms var(--ease-out), border-color 180ms var(--ease-out);
}
.mt-pathcard:hover { box-shadow: var(--shadow-md); border-color: rgba(56,94,157,0.3); }
.mt-pathcard__title {
  font-family: var(--font-display); font-weight: 600; font-size: 30px;
  letter-spacing: 0.02em; color: var(--ink); margin: 14px 0 14px;
}
.mt-pathcard__body { font-size: 17px; line-height: 1.62; color: var(--slate); margin: 0 0 28px; }
.mt-pathcard .mt-link { margin-top: auto; }
@media (max-width: 980px) { .mt-paths { grid-template-columns: 1fr; } }

/* ---- Team portraits (B&W environmental, name + role, voice reserve) ---- */
.mt-team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.mt-team__card { display: flex; flex-direction: column; }
.mt-team__portrait {
  display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--r-md); border: 1px solid var(--border);
  background: var(--off-white); filter: grayscale(1) contrast(1.02);
  transition: filter 220ms var(--ease-out);
}
.mt-team__card:hover .mt-team__portrait { filter: grayscale(0.55) contrast(1.02); }
.mt-team__name {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  letter-spacing: 0.01em; color: var(--ink); margin: 20px 0 4px;
}
.mt-team__role {
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin: 0;
}
.mt-team__voicewrap { margin-top: 16px; }
.mt-team__voice {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-blue);
  transition: color 120ms var(--ease-out);
}
.mt-team__voice:hover { color: var(--brand-blue-hover); }
.mt-team__voice-ico {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  background: var(--brand-blue-pale); color: var(--brand-blue);
  display: flex; align-items: center; justify-content: center;
  transition: background 140ms var(--ease-out), color 140ms var(--ease-out);
}
.mt-team__voice-ico svg { width: 14px; height: 14px; }
.mt-team__voicewrap.is-playing .mt-team__voice-ico { background: var(--brand-blue); color: #fff; }
@media (max-width: 1080px) { .mt-team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .mt-team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .mt-team { grid-template-columns: 1fr; } }

/* ---- End-to-end timeline (vertical rail, numbered nodes) ---- */
.mt-timeline { list-style: none; margin: 0; padding: 0; max-width: 820px; }
.mt-timeline__step {
  position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding-bottom: 44px;
}
.mt-timeline__step:last-child { padding-bottom: 0; }
/* vertical rail through the node column */
.mt-timeline__step::before {
  content: ""; position: absolute; left: 31px; top: 8px; bottom: -8px;
  width: 2px; background: var(--border);
}
.mt-timeline__step:last-child::before { display: none; }
.mt-timeline__node {
  position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.02em;
  color: var(--brand-blue); background: #fff;
  border: 2px solid var(--brand-blue);
}
.mt-timeline__body { padding-top: 10px; }
.mt-timeline__label {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  letter-spacing: 0.02em; color: var(--ink); margin: 0 0 8px;
}
.mt-timeline__text { font-size: 17px; line-height: 1.62; color: var(--slate); margin: 0; max-width: 600px; }
/* the final "beyond" node reads as the destination */
.mt-timeline__step--end .mt-timeline__node { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.mt-timeline__step--end .mt-timeline__node svg { width: 26px; height: 26px; }
@media (max-width: 560px) {
  .mt-timeline__step { grid-template-columns: 48px 1fr; gap: 20px; }
  .mt-timeline__step::before { left: 23px; }
  .mt-timeline__node { width: 48px; height: 48px; font-size: 18px; }
  .mt-timeline__label { font-size: 21px; }
}
