/* ════════════════════════════════════════════════════════════════════════
   MMG Agent Growth Lab, site styles (locked brand spec)
   Mobile-first refinement + desktop killer polish.
   ════════════════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  /* iOS notch / home indicator safety */
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ─── Layout primitives ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container); /* 1180 */
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  position: relative;
}
.section--tight { padding-top: var(--section-y-tight); padding-bottom: var(--section-y-tight); }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 760px;
  margin-bottom: 64px;
}
.section__head .eyebrow-chip { margin-bottom: 24px; }
.section__head h2 { margin-bottom: 20px; }
.section__lead {
  font-size: var(--t-body-lg);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 56ch;
}

/* Numbered eyebrow chip */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold-tint);
  border: 1px solid rgba(201, 149, 107, 0.18);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.eyebrow-chip .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
  animation: pulseDot 2.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.eyebrow-chip .num { color: var(--fg-muted); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  white-space: nowrap;
  min-height: 48px;             /* touch target */
}
.btn-sm  { padding: 11px 18px; font-size: 14px; min-height: 40px; }
.btn-lg  { padding: 18px 32px; font-size: 16px; min-height: 56px; }

.btn-primary {
  background: var(--gold);
  color: #06060B;
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 2px 20px rgba(201, 149, 107, 0.2);
}
.btn-primary:hover {
  background: var(--gold-hover);
  color: #06060B;
  box-shadow: var(--shadow-gold-btn);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-link {
  background: transparent;
  border: none;
  padding: 12px 4px;
  color: var(--gold);
}
.btn-link:hover { color: var(--gold-hover); }

/* ─── Header ────────────────────────────────────────────────────── */
.mmg-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(7, 16, 32, 0);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base), border-color var(--dur-base), padding var(--dur-base);
  padding: 18px 0;
}
.mmg-header.is-scrolled {
  background: rgba(7, 16, 32, 0.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: rgba(201, 149, 107, 0.10);
  padding: 12px 0;
}
.mmg-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mmg-header__brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--fg);
  flex-shrink: 0;
}
.mmg-header__mark {
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 149, 107, 0.35);
  box-shadow: 0 0 16px rgba(201, 149, 107, 0.06);
  display: block;
  transition: border-color var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base);
}
.mmg-header__brand:hover .mmg-header__mark {
  border-color: rgba(201, 149, 107, 0.55);
  box-shadow: 0 0 24px rgba(201, 149, 107, 0.14);
}
.mmg-header__word { display: flex; flex-direction: column; line-height: 1.1; }
.mmg-header__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.mmg-header__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  white-space: nowrap;
}
.mmg-header__nav {
  margin-left: auto;
  display: flex; gap: 26px;
  align-items: center;
}
.mmg-header__nav > a {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  text-decoration: none;
  transition: color var(--dur-fast);
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}
.mmg-header__nav > a:hover { color: var(--fg); }
.mmg-header__nav > a.is-active { color: var(--gold); }
.mmg-header__nav > a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* Resources dropdown */
.nav-drop { position: relative; }
.nav-drop__toggle {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur-fast);
}
.nav-drop__toggle:hover { color: var(--fg); }
.nav-drop__toggle svg { transition: transform var(--dur-base) var(--ease); }
.nav-drop.is-open .nav-drop__toggle { color: var(--gold); }
.nav-drop.is-open .nav-drop__toggle svg { transform: rotate(180deg); }

.nav-drop__menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 320px;
  background: rgba(14, 33, 56, 0.96);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(201, 149, 107, 0.14);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 149, 107, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              visibility var(--dur-base);
  z-index: 60;
}
.nav-drop.is-open .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop__menu > a {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--font-text);
  color: var(--fg);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.nav-drop__menu > a:hover { background: rgba(201, 149, 107, 0.08); }
.nav-drop__icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(201, 149, 107, 0.08);
  border: 1px solid rgba(201, 149, 107, 0.18);
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.nav-drop__body { display: flex; flex-direction: column; gap: 2px; }
.nav-drop__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
}
.nav-drop__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.nav-drop__ext { color: var(--fg-muted); }
.nav-drop__sep {
  height: 1px;
  background: var(--border);
  margin: 4px 4px;
}

/* Burger (mobile menu toggle) */
.mmg-header__burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color var(--dur-fast);
}
.mmg-header__burger:hover { border-color: var(--gold); }
.mmg-header__burger span {
  width: 18px; height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base);
}
.mmg-header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mmg-header__burger.is-open span:nth-child(2) { opacity: 0; }
.mmg-header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  padding: 22px 24px env(safe-area-inset-bottom, 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease), visibility var(--dur-base);
  visibility: hidden;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--fg);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__nav > a {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}
.mobile-menu__nav > a:active { color: var(--gold); }
.mobile-menu__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 28px 0 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.mobile-menu__nav > a[data-resource] {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0;
}
.mobile-menu__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ─── Sticky mobile CTA bar (appears after hero) ─────────────────── */
.mobile-cta-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 48;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0));
  background: rgba(7, 16, 32, 0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-top: 1px solid rgba(201, 149, 107, 0.18);
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform var(--dur-base) var(--ease);
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar__meta {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.mobile-cta-bar__meta strong {
  display: block;
  font-family: var(--font-text);
  font-weight: 600;
  color: var(--fg);
  font-size: 14px;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.mobile-cta-bar .btn {
  flex-shrink: 0;
  min-height: 44px;
  padding: 12px 20px;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 200px;
  padding-bottom: var(--section-y-hero);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__chip { margin-bottom: 32px; }
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: var(--t-display);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
  color: var(--fg);
  text-wrap: balance;
  max-width: 18ch;
  margin: 0 0 28px 0;
}
.hero__h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero__sub {
  font-family: var(--font-text);
  font-size: var(--t-body-lg);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 64ch;
  margin: 0 0 56px 0;
  text-wrap: pretty;
}

/* VSL frame, double-wrapper gradient border (iOS-safe) */
.vsl {
  width: 100%;
  max-width: var(--container-vsl);
  margin: 0 0 40px 0;
  position: relative;
}
.vsl__frame {
  width: 100%;
  padding: 2px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--gold) 0%, rgba(201, 149, 107, 0.3) 35%, rgba(201, 149, 107, 0.3) 65%, var(--gold) 100%);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 60px -12px rgba(201, 149, 107, 0.35);
}
.vsl__inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.vsl__poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(140% 90% at 30% 30%, #1a2a4a 0%, #0F1E38 40%, #0A1428 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--fg);
  gap: 28px;
  cursor: pointer;
  transition: filter var(--dur-base);
}
.vsl__poster:hover { filter: brightness(1.1); }
.vsl__play {
  width: 84px; height: 84px;
  border-radius: 999px;
  background: var(--gold);
  color: #06060B;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding-left: 6px;
  transition: transform var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-base);
  box-shadow: 0 8px 32px rgba(201, 149, 107, 0.4);
}
.vsl__play:hover {
  background: var(--gold-hover);
  transform: scale(1.06);
  box-shadow: 0 12px 48px rgba(201, 149, 107, 0.55);
}
.vsl__play:active { transform: scale(0.98); }
.vsl__meta {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.04px;
  color: var(--fg-2);
  text-transform: uppercase;
}
.vsl__cap {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

.hero__cta-row {
  display: flex; gap: 14px;
  flex-wrap: wrap; justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.hero__cta-after {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-top: 20px;
}
.hero__cta-after .pip { color: var(--gold); margin-right: 6px; }

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 64px 0 0 0;
  width: 100%;
  max-width: 920px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero__strip li {
  padding: 22px 18px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--border);
}
.hero__strip li:last-child { border-right: none; }
.hero__strip .proof-num {
  font-size: 36px;
  line-height: 1;
}
.hero__strip li span:last-child {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  text-align: center;
  text-transform: uppercase;
}

/* ─── What this is ──────────────────────────────────────────────── */
.whatis__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.whatis__copy p {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 1em 0;
  max-width: 56ch;
}
.whatis__copy p strong { color: var(--fg); font-weight: 600; }
.whatis__pull {
  font-family: var(--font-display);
  font-variation-settings: "opsz" 96;
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.030em;
  color: var(--fg);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  text-wrap: balance;
}

/* ─── Who this is for ───────────────────────────────────────────── */
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.who__card {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--dur-base);
}
.who__card:not(:first-child) { padding-left: 28px; }
.who__card:last-child { border-right: none; padding-right: 0; }
.who__card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 56px;
  height: 1px;
  background: var(--gold);
}
.who__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.who__num strong { color: var(--gold); font-weight: 500; margin-right: 6px; }
.who__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.030em;
  color: var(--fg);
  margin: 0 0 14px 0;
}
.who__b {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}
.who__not {
  margin-top: 56px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.who__not-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.who__not-body {
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* ─── 16-week build (milestones) ────────────────────────────────── */
.weeks {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}
.weeks__row {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background var(--dur-slow);
}
.weeks__row:hover { background: rgba(201, 149, 107, 0.03); }
.weeks__label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
}
.weeks__label-n {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 56px;
  letter-spacing: -0.045em;
  color: var(--fg);
  line-height: 0.95;
  margin-bottom: 4px;
  display: block;
}
.weeks__label-when {
  display: block;
  color: var(--fg-muted);
  margin-top: 8px;
  font-size: 11px;
}
.weeks__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.030em;
  color: var(--fg);
  margin: 0 0 14px 0;
}
.weeks__body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}
.weeks__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.weeks__list li {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--fg-2);
  padding-left: 14px;
  position: relative;
  text-transform: uppercase;
}
.weeks__list li::before {
  content: ",";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── Case studies ──────────────────────────────────────────────── */
.case {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: background var(--dur-slow);
}
.case:hover { background: rgba(201, 149, 107, 0.025); }
.case:last-child { border-bottom: 1px solid var(--border); }
.case__portrait-wrap {}
.case__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  border: 1px solid var(--border);
  transition: border-color var(--dur-base), transform var(--dur-base);
}
.case:hover .case__portrait {
  border-color: rgba(201, 149, 107, 0.25);
}
.case__name-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.case__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: 40px;
  letter-spacing: -0.040em;
  color: var(--fg);
  margin: 0;
  line-height: 1;
}
.case__tenure {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 10px;
}
.case__body {}
.case__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 8px 0;
}
.case__challenge,
.case__outcome {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 20px 0;
  text-wrap: pretty;
}
.case__outcome strong { color: var(--fg); font-weight: 600; }
.case__proof {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 20px;
  text-align: center;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.case:hover .case__proof {
  border-color: rgba(201, 149, 107, 0.25);
  box-shadow: 0 0 24px rgba(201, 149, 107, 0.08);
}
.case__proof-n {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}
.case__proof-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.case__proof-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-2);
  letter-spacing: 0.06em;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ─── Operator (Jonathan) ───────────────────────────────────────── */
.operator { background: var(--bg-alt); }
.operator__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.operator__copy p {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 1em 0;
  max-width: 56ch;
}
.operator__copy p strong { color: var(--fg); font-weight: 600; }
.operator__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: 26px;
  line-height: 1.32;
  letter-spacing: -0.030em;
  color: var(--fg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 32px 0;
}
.operator__pull cite {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}
.operator__portrait-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.operator__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
}
.operator__cred {
  display: grid;
  border-top: 1px solid var(--border);
}
.operator__cred-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-text);
  font-size: 14px;
}
.operator__cred-row span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.operator__cred-row strong {
  font-family: var(--font-text);
  font-weight: 600;
  color: var(--fg);
  font-size: 14px;
}

/* ─── Guarantee ─────────────────────────────────────────────────── */
.guar__inner {
  background: var(--bg-card);
  border: 1px solid rgba(201, 149, 107, 0.18);
  border-radius: 14px;
  padding: 72px 64px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.guar__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.guar__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  position: relative;
}
.guar__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--fg);
  margin: 16px 0 24px 0;
}
.guar__h em { font-style: italic; color: var(--gold); }
.guar__lead {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}
.guar__terms-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.guar__terms ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guar__terms li {
  display: flex; gap: 12px; align-items: flex-start;
  font-family: var(--font-text);
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}
.guar__terms li svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.guar__fine {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin: 0;
}

/* ─── Bonuses ───────────────────────────────────────────────────── */
.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color var(--dur-base), background var(--dur-base), transform var(--dur-base);
}
.bonus:hover {
  border-color: rgba(201, 149, 107, 0.25);
  transform: translateY(-4px);
}
.bonus__n {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.bonus__n .num { color: var(--fg-muted); margin-right: 8px; }
.bonus__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.030em;
  color: var(--fg);
  margin: 0 0 12px 0;
}
.bonus__b {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* ─── FAQ ───────────────────────────────────────────────────────── */
.faq__list {
  display: grid;
  border-top: 1px solid var(--border);
}
.faq__row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.030em;
  color: var(--fg);
  margin: 0;
}
.faq__a {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0;
}

/* ─── Apply CTA block ───────────────────────────────────────────── */
.apply {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  pointer-events: none;
}
.apply__inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply__h {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--fg);
  margin: 24px 0 24px 0;
  max-width: 16ch;
}
.apply__h em { font-style: italic; color: var(--gold); }
.apply__lead {
  font-family: var(--font-text);
  font-size: 19px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 40px 0;
  max-width: 60ch;
}
.apply__fine {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-top: 20px;
  max-width: 60ch;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 80px 0 24px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__mark { width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid rgba(201, 149, 107, 0.35); }
.footer__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 96;
  font-size: 18px;
  letter-spacing: -0.025em;
  color: var(--fg);
  line-height: 1.1;
}
.footer__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  white-space: nowrap;
}
.footer__blurb {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 38ch;
  margin: 0 0 20px 0;
}
.footer__legal {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__col a {
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color var(--dur-fast);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--gold); }
.footer__ext { display: inline-flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.footer__static {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.footer__base {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
}
.footer__base-links { display: flex; gap: 20px; }
.footer__base-links a {
  font-size: 11px;
  color: var(--fg-muted);
  text-decoration: none;
}
.footer__base-links a:hover { color: var(--gold); }

/* ─── Reveal animation (fade + 8px-rise) ────────────────────────── */
html.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
html.js-reveal-ready [data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   1024, tablet & small laptop
    720, phone landscape & small tablet portrait
    480, phone portrait
   ════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root {
    --section-y: 96px;
    --section-y-hero: 120px;
  }
  .section__head { margin-bottom: 48px; }

  .whatis__inner { grid-template-columns: 1fr; gap: 40px; }

  .who__grid { grid-template-columns: 1fr; }
  .who__card { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .who__card:not(:first-child) { padding-left: 0; }
  .who__card:last-child { border-bottom: none; padding-bottom: 0; }

  .weeks__row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 32px 0;
  }
  .weeks__label { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
  .weeks__label-n { font-size: 44px; margin-bottom: 0; }
  .weeks__label-when { margin-top: 0; }
  .weeks__list { flex-direction: row; flex-wrap: wrap; gap: 12px 20px; margin-top: 8px; }
  .weeks__list li { font-size: 11px; }

  .case { grid-template-columns: 200px 1fr; gap: 32px; padding: 40px 0; }
  .case__proof {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 14px;
    padding: 18px 22px;
    text-align: left;
  }
  .case__proof-n { margin-bottom: 0; font-size: 40px; }
  .case__proof-sub { display: none; }

  .operator__inner { grid-template-columns: 1fr; gap: 48px; }
  .operator__portrait-wrap { position: static; max-width: 480px; }

  .guar__grid { grid-template-columns: 1fr; gap: 40px; }
  .guar__inner { padding: 48px 36px; }

  .bonuses__grid { grid-template-columns: 1fr; gap: 16px; }

  .faq__row { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Nav: show burger, hide inline nav */
  .mmg-header__nav { display: none; }
  .mmg-header__cta { display: none; }
  .mmg-header__burger { display: inline-flex; margin-left: auto; }
}

@media (max-width: 720px) {
  :root {
    --section-y: 72px;
    --section-y-hero: 96px;
    --t-display: clamp(40px, 11vw, 56px);
    --t-h1: clamp(32px, 8vw, 44px);
    --t-h2: clamp(26px, 6.5vw, 36px);
    --t-body: 17px;
    --t-body-lg: 18px;
  }

  body { padding-bottom: 80px; }  /* reserve space for sticky mobile CTA */
  .container { padding-left: 20px; padding-right: 20px; }

  /* Header */
  .mmg-header { padding: 14px 0; }
  .mmg-header.is-scrolled { padding: 10px 0; }
  .mmg-header__inner { padding: 0 20px; gap: 16px; }
  .mmg-header__mark { width: 36px; height: 36px; }
  .mmg-header__name { font-size: 16px; }
  .mmg-header__sub { font-size: 9px; }

  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }
  .hero__chip { margin-bottom: 24px; padding: 7px 12px; font-size: 11px; }
  .hero__h1 {
    max-width: 14ch;
    margin-bottom: 22px;
    line-height: 1.02;
  }
  .hero__sub { margin-bottom: 36px; font-size: 17px; line-height: 1.55; }

  .vsl { margin-bottom: 28px; }
  .vsl__frame { padding: 1.5px; border-radius: 10px; }
  .vsl__inner { border-radius: 9px; }
  .vsl__play { width: 64px; height: 64px; }
  .vsl__play svg { width: 20px; height: 20px; }
  .vsl__meta { font-size: 10px; padding: 0 12px; }
  .vsl__cap { flex-direction: column; gap: 4px; font-size: 10px; align-items: center; text-align: center; }

  .hero__cta-row { flex-direction: column; gap: 12px; width: 100%; }
  .hero__cta-row .btn { width: 100%; }
  .hero__cta-after {
    font-size: 11px;
    line-height: 1.55;
    text-align: center;
    margin-top: 16px;
    padding: 0 8px;
  }
  .hero__strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
  }
  .hero__strip li {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 12px;
  }
  .hero__strip li:nth-child(even) { border-right: none; }
  .hero__strip li:nth-last-child(-n+2) { border-bottom: none; }
  .hero__strip .proof-num { font-size: 28px; }
  .hero__strip li span:last-child { font-size: 10px; }

  /* Section heads */
  .section__head { margin-bottom: 36px; }

  /* What this is */
  .whatis__pull { font-size: 24px; padding-left: 16px; margin: 24px 0; }

  /* Who */
  .who__card { padding: 24px 0; }
  .who__h { font-size: 22px; }
  .who__not { padding: 20px; margin-top: 32px; }

  /* Weeks */
  .weeks__row { padding: 28px 0; }
  .weeks__label-n { font-size: 36px; }
  .weeks__h { font-size: 22px; }
  .weeks__body { font-size: 15px; }
  .weeks__list { gap: 8px 16px; }

  /* Cases */
  .case {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 0;
  }
  .case__portrait-wrap { display: grid; grid-template-columns: 96px 1fr; gap: 20px; align-items: center; }
  .case__portrait { width: 96px; height: 120px; aspect-ratio: 4/5; }
  .case__name-wrap { margin-bottom: 0; }
  .case__name { font-size: 30px; }
  .case__tenure { margin-top: 6px; font-size: 10px; }
  .case__challenge,
  .case__outcome { font-size: 15px; }
  .case__proof {
    grid-column: 1;
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 18px;
  }
  .case__proof-n { font-size: 32px; }

  /* Operator */
  .operator__copy p { font-size: 16px; }
  .operator__pull { font-size: 22px; padding: 22px 0; margin: 24px 0; }
  .operator__portrait-wrap { gap: 16px; }

  /* Guarantee */
  .guar__inner { padding: 36px 22px; border-radius: 10px; }
  .guar__lead { font-size: 16px; }
  .guar__terms li { font-size: 14px; }

  /* Bonuses */
  .bonus { padding: 24px 22px; }
  .bonus__h { font-size: 20px; }

  /* FAQ */
  .faq__row { padding: 20px 0; }
  .faq__q { font-size: 20px; }
  .faq__a { font-size: 15px; }

  /* Apply */
  .apply__h { margin-top: 18px; }
  .apply__lead { font-size: 16px; margin-bottom: 28px; }
  .apply__fine { font-size: 11px; margin-top: 16px; }

  /* Footer */
  .footer { padding: 56px 0 100px 0; }  /* extra bottom for sticky CTA */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer__brand { gap: 10px; }
  .footer__name { font-size: 16px; }
  .footer__base { font-size: 10px; gap: 14px; }

  /* Sticky bottom CTA on mobile */
  .mobile-cta-bar { display: flex; }
}

@media (max-width: 480px) {
  :root {
    --t-display: clamp(36px, 12vw, 48px);
  }
  .container { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 104px; }
  .hero__h1 { max-width: 12ch; }
  .vsl__cap { font-size: 9.5px; }
}

/* Larger screens, desktop polish */
@media (min-width: 1280px) {
  .hero { padding-top: 220px; }
  .vsl { max-width: 1000px; }
}
