/* MacroHaul — styles */
:root {
  --bg: #FAF7F2;
  --bg-2: #F2EDE2;
  --bg-3: #E8E1D1;
  --card: #FFFFFF;
  --fg: #0F1410;
  --fg-2: #36413B;
  --muted: rgba(15,20,16,.58);
  --hair: rgba(15,20,16,.10);
  --hair-2: rgba(15,20,16,.06);
  --green: oklch(0.58 0.14 145);
  --green-ink: oklch(0.38 0.12 145);
  --green-soft: oklch(0.94 0.05 145);
  --coral: oklch(0.72 0.17 35);
  --coral-ink: oklch(0.42 0.15 35);
  --coral-soft: oklch(0.95 0.04 35);
  --blue: oklch(0.58 0.13 235);
  --berry: oklch(0.58 0.18 350);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display: "Inter Tight", "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --max: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);
}

[data-theme="dark"] {
  --bg: #0C100E;
  --bg-2: #141916;
  --bg-3: #1C211E;
  --card: #161B18;
  --fg: #F3EFE6;
  --fg-2: #CDC8BC;
  --muted: rgba(243,239,230,.58);
  --hair: rgba(243,239,230,.12);
  --hair-2: rgba(243,239,230,.06);
  --green-soft: oklch(0.28 0.08 145);
  --coral-soft: oklch(0.28 0.08 35);
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-feature-settings: "ss01" 1, "cv11" 1;
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.mh-mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.mh-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  line-height: 1.5;
}
.mh-tag-green { background: var(--green-soft); color: var(--green-ink); }
.mh-tag-coral { background: var(--coral-soft); color: var(--coral-ink); }
.mh-tag-ink { background: var(--fg); color: var(--bg); }
.mh-tag-ghost { border: 1px solid var(--hair); color: var(--fg); }

.mh-dot { display: inline-block; border-radius: 999px; vertical-align: middle; }
.mh-pulse { animation: mh-pulse 1.4s ease-in-out infinite; }
@keyframes mh-pulse {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  70% { box-shadow: 0 0 0 6px transparent; opacity: .6; }
}

/* ────── Nav ────── */
.mh-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.mh-nav.is-scrolled { border-bottom-color: var(--hair); }
.mh-nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 14px var(--pad-x);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.mh-logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700;
  letter-spacing: -0.01em; font-size: 17px;
}
.mh-logo-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--fg); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 14px;
  letter-spacing: -0.04em;
}
[data-theme="dark"] .mh-logo-mark { background: var(--green); color: var(--fg); }
.mh-nav-links {
  display: flex; gap: 28px; justify-self: center;
  font-size: 14px; color: var(--fg-2);
}
.mh-nav-links a:hover { color: var(--fg); }
.mh-nav-cta { display: inline-flex; align-items: center; gap: 12px; }
.mh-link-muted { color: var(--fg-2); font-size: 14px; }
.mh-link-muted:hover { color: var(--fg); }
@media (max-width: 760px) {
  .mh-nav-links { display: none; }
  .mh-nav-inner { grid-template-columns: auto 1fr auto; }
}

/* ────── Buttons ────── */
.mh-btn {
  appearance: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-size: 14px; font-weight: 600;
  border-radius: 999px;
  transition: transform .1s, background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.mh-btn-lg { padding: 15px 22px; font-size: 15px; }
.mh-btn-block { width: 100%; justify-content: center; }
.mh-btn-primary { background: var(--fg); color: var(--bg); }
.mh-btn-primary:hover { transform: translateY(-1px); background: var(--green-ink); }
.mh-btn-green { background: var(--green); color: #04140A; }
.mh-btn-green:hover { transform: translateY(-1px); filter: brightness(1.05); }
.mh-btn-ghost { background: transparent; color: var(--fg); border-color: var(--hair); }
.mh-btn-ghost:hover { border-color: var(--fg); }
.mh-btn-arrow { transition: transform .15s; }
.mh-btn:hover .mh-btn-arrow { transform: translateX(3px); }

/* ────── Hero ────── */
.mh-hero {
  max-width: var(--max); margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
  position: relative;
}
.mh-hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 980px) {
  .mh-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.mh-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 12px;
  border: 1px solid var(--hair);
  background: var(--card);
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--fg-2);
}
.mh-h1 {
  font-family: var(--display);
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.mh-h1 em {
  font-style: normal;
  color: var(--green-ink);
  position: relative;
  white-space: nowrap;
}
[data-theme="dark"] .mh-h1 em { color: var(--green); }
.mh-h1 em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 4%;
  height: 30%;
  background: var(--green-soft);
  z-index: -1;
  border-radius: 4px;
}
.mh-lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 54ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.mh-hero-cta { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.mh-hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--hair-2);
}
.mh-hero-trust > div { display: flex; flex-direction: column; gap: 4px; }
.mh-hero-trust strong {
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* ────── Phone mockup ────── */
.mh-phone-wrap {
  position: relative;
  display: flex; justify-content: center;
  min-height: 600px;
}
.mh-phone-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, var(--green-soft) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.mh-phone {
  position: relative; z-index: 1;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #0F1410;
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 0 0 2px #2A2D29,
    0 40px 80px -30px rgba(0,0,0,.35),
    0 0 0 6px rgba(0,0,0,.04);
}
.mh-phone-screen {
  width: 100%; height: 100%;
  background: #FAF7F2;
  color: #0F1410;
  border-radius: 36px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.mh-phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0F1410;
  border-radius: 999px;
  z-index: 10;
}
.mh-phone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 0;
  font-family: var(--mono);
  font-size: 13px; font-weight: 600;
  position: relative; z-index: 2;
}
.mh-phone-status-right {
  display: inline-flex; gap: 6px; align-items: center;
  font-size: 10px;
}
.mh-phone-body {
  padding: 48px 20px 16px;
  overflow: hidden;
  flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.mh-phone-h1 {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0F1410;
}
.mh-phone-sub {
  font-size: 12px;
  color: #6A7A6F;
  margin: 2px 0 0;
}

/* Macro rings */
.mh-rings {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
}
.mh-ring {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.mh-ring svg { width: 48px; height: 48px; }
.mh-ring-track { fill: none; stroke: #F0EADF; stroke-width: 5; }
.mh-ring-fill {
  fill: none; stroke-width: 5; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dasharray .6s cubic-bezier(.3,.7,.4,1);
}
.mh-ring-val {
  font-family: var(--display);
  font-size: 12px; font-weight: 700;
  letter-spacing: -0.01em;
  color: #0F1410;
  font-variant-numeric: tabular-nums;
}
.mh-ring-lbl {
  font-family: var(--sans);
  font-size: 9px;
  color: #6A7A6F;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mh-meal-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
  display: flex; gap: 10px; align-items: center;
}
.mh-meal-thumb {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-soft), var(--coral-soft));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.mh-meal-body { flex: 1; min-width: 0; }
.mh-meal-ttl {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.01em;
  color: #0F1410;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mh-meal-meta {
  font-family: var(--mono);
  font-size: 9px;
  color: #6A7A6F;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.mh-meal-price {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--green-ink);
}
.mh-meal-price s {
  font-weight: 400;
  font-size: 10px;
  color: #A8A59B;
  margin-right: 4px;
  text-decoration: line-through;
  text-decoration-color: #D4D0C3;
}
.mh-phone-section-lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6A7A6F;
  margin: 4px 2px -6px;
}

/* Floating badge */
.mh-badge-fly {
  position: absolute; z-index: 2;
  background: #0F1410;
  color: #FAF7F2;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 10px;
}
.mh-badge-fly strong {
  font-family: var(--display); font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--green);
}
.mh-badge-fly-1 { top: 18%; left: -8%; animation: mh-float 6s ease-in-out infinite; }
.mh-badge-fly-2 { bottom: 16%; right: -4%; animation: mh-float 7s ease-in-out -2s infinite; }
@keyframes mh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ────── Section scaffolding ────── */
.mh-section {
  max-width: var(--max); margin: 0 auto;
  padding: 96px var(--pad-x);
}
.mh-section-head { max-width: 760px; margin: 0 0 48px; }
.mh-section-head-center { margin: 0 auto 48px; text-align: center; }
.mh-h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 14px 0 16px;
  text-wrap: balance;
}
.mh-h3 {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 8px;
}
.mh-lede-sm {
  font-size: 17px; line-height: 1.5;
  color: var(--fg-2);
  max-width: 62ch; margin: 0;
  text-wrap: pretty;
}

/* ────── Goals ────── */
.mh-goals {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 48px clamp(24px, 4vw, 56px);
}
.mh-goal-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 6px;
  background: var(--card);
  border-radius: 999px;
  width: fit-content;
  border: 1px solid var(--hair);
}
.mh-goal-tab {
  appearance: none; border: 0; background: transparent;
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--fg-2);
  transition: background .15s, color .15s;
}
.mh-goal-tab.is-on { background: var(--fg); color: var(--bg); }
.mh-goal-tab:hover:not(.is-on) { color: var(--fg); }
.mh-goal-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 48px; align-items: start;
}
@media (max-width: 900px) { .mh-goal-grid { grid-template-columns: 1fr; gap: 28px; } }
.mh-goal-blurb {}
.mh-goal-blurb h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 10px 0 14px;
  line-height: 1.05;
}
.mh-goal-blurb p {
  font-size: 16px; line-height: 1.55;
  color: var(--fg-2); margin: 0 0 20px;
  text-wrap: pretty;
}
.mh-goal-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.mh-goal-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
}
.mh-goal-metric {
  background: var(--card);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.mh-goal-metric strong {
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mh-goal-metric .unit { font-size: 16px; font-weight: 400; color: var(--muted); margin-left: 3px; }
.mh-goal-metric .sub { font-size: 13px; color: var(--fg-2); line-height: 1.4; }

/* ────── How it works ────── */
.mh-flow {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
  border-left: 1px solid var(--hair);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 860px) { .mh-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mh-flow { grid-template-columns: 1fr; } }
.mh-flow-step {
  padding: 28px 24px;
  background: var(--card);
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
}
.mh-flow-step-n {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.mh-flow-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mh-flow-step:nth-child(2) .mh-flow-icon { background: var(--coral-soft); color: var(--coral-ink); }
.mh-flow-step:nth-child(3) .mh-flow-icon { background: color-mix(in oklch, var(--blue) 18%, var(--bg-2)); color: var(--blue); }
.mh-flow-step:nth-child(4) .mh-flow-icon { background: color-mix(in oklch, var(--berry) 16%, var(--bg-2)); color: var(--berry); }
.mh-flow-step h3 {
  font-family: var(--display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.mh-flow-step p {
  font-size: 14px; line-height: 1.5;
  color: var(--fg-2); margin: 0;
  text-wrap: pretty;
}

/* ────── Deal scanner demo ────── */
.mh-scanner {
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px clamp(24px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .mh-scanner { grid-template-columns: 1fr; } }
.mh-scanner .mh-h2 { color: var(--bg); }
.mh-scanner .mh-lede-sm { color: color-mix(in oklch, var(--bg) 70%, transparent); }
.mh-scanner .mh-mono { color: color-mix(in oklch, var(--bg) 60%, transparent); }

.mh-scan-panel {
  background: #161B18;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.mh-scan-hd {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.mh-scan-row {
  display: grid;
  grid-template-columns: 26px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  transition: background .3s;
}
.mh-scan-row:last-child { border-bottom: 0; }
.mh-scan-row.is-new {
  background: color-mix(in oklch, var(--green) 15%, transparent);
  animation: mh-hilite 1.2s ease-out;
}
@keyframes mh-hilite {
  0% { background: color-mix(in oklch, var(--green) 30%, transparent); }
  100% { background: color-mix(in oklch, var(--green) 0%, transparent); }
}
.mh-store-chip {
  width: 26px; height: 26px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.mh-scan-item {
  font-family: var(--display); font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.mh-scan-item .mh-mono-inline {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(243,239,230,.5);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2px;
}
.mh-scan-price {
  font-family: var(--mono);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.mh-scan-price s {
  display: block;
  font-size: 10px; color: rgba(243,239,230,.4);
  text-decoration: line-through;
  text-decoration-color: rgba(255,100,100,.5);
}
.mh-scan-save {
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--green);
  background: color-mix(in oklch, var(--green) 14%, transparent);
  padding: 3px 8px; border-radius: 999px;
  min-width: 54px; text-align: center;
}
.mh-scan-ft {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mh-scan-total {
  font-family: var(--display);
  font-size: 24px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--green);
}
.mh-scan-total s {
  display: inline; font-size: 14px; font-weight: 400;
  color: rgba(243,239,230,.4);
  text-decoration: line-through;
  margin-right: 8px;
}

/* ────── Pregnancy spotlight ────── */
.mh-preg {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 900px) { .mh-preg { grid-template-columns: 1fr; } }
.mh-preg-card {
  background: linear-gradient(145deg,
    color-mix(in oklch, var(--berry) 10%, var(--card)),
    var(--card));
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.mh-preg-trimesters {
  display: flex; gap: 6px;
  padding: 6px;
  background: var(--bg-2);
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid var(--hair);
}
.mh-preg-trim-btn {
  appearance: none; border: 0; background: transparent;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--fg-2);
}
.mh-preg-trim-btn.is-on {
  background: var(--berry); color: #fff;
}
.mh-preg-micros {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.mh-preg-micro {
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 4px;
}
.mh-preg-micro-name {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: -0.01em;
}
.mh-preg-micro-bar {
  height: 4px; background: var(--hair);
  border-radius: 999px;
  overflow: hidden; position: relative;
  margin-top: 4px;
}
.mh-preg-micro-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--berry);
  transition: width .6s cubic-bezier(.3,.7,.4,1);
}
.mh-preg-micro-val {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted);
  display: flex; justify-content: space-between;
}

/* ────── Pricing ────── */
.mh-plans {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .mh-plans { grid-template-columns: 1fr; } }
.mh-plan {
  padding: 32px 28px;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  background: var(--card);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.mh-plan.is-featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.mh-plan.is-featured .mh-mono { color: color-mix(in oklch, var(--bg) 60%, transparent); }
.mh-plan.is-featured .mh-check { background: var(--green); color: #04140A; }
.mh-plan.is-featured .mh-btn-primary { background: var(--green); color: #04140A; }
.mh-plan.is-featured .mh-btn-ghost { border-color: color-mix(in oklch, var(--bg) 30%, transparent); color: var(--bg); }
.mh-plan-hd { display: flex; justify-content: space-between; align-items: center; }
.mh-plan-t {
  font-family: var(--display);
  font-size: 24px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.mh-plan-price {
  display: flex; align-items: baseline; gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair);
}
.mh-plan.is-featured .mh-plan-price { border-color: color-mix(in oklch, var(--bg) 20%, transparent); }
.mh-plan-price strong {
  font-family: var(--display);
  font-size: 48px; font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mh-plan-price .unit { font-size: 14px; color: var(--muted); }
.mh-plan-feats {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.mh-plan-feats li {
  font-size: 14px; line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
}
.mh-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  background: var(--green); color: #04140A;
  border-radius: 50%;
  font-size: 10px; flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}

/* ────── Final CTA ────── */
.mh-cta-block {
  max-width: var(--max); margin: 40px auto 0;
  padding: 0 var(--pad-x);
}
.mh-cta-inner {
  background: var(--green);
  color: #04140A;
  padding: clamp(48px, 8vw, 88px) clamp(28px, 6vw, 72px);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  text-align: center;
}
.mh-cta-h {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 20px auto 16px;
  text-wrap: balance;
  max-width: 20ch;
}
.mh-cta-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: color-mix(in srgb, #04140A 78%, transparent);
  max-width: 48ch;
  margin: 0 auto 32px;
}
.mh-cta-form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto 16px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(0,0,0,.1);
  padding: 6px;
  border-radius: 999px;
}
.mh-cta-form input {
  appearance: none; background: transparent; border: 0;
  padding: 10px 16px;
  font-size: 15px; font-family: inherit;
  color: #04140A;
  flex: 1; min-width: 0;
  outline: none;
}
.mh-cta-form input::placeholder { color: rgba(4,20,10,.4); }
.mh-cta-form .mh-btn { background: #04140A; color: var(--green); padding: 10px 18px; }
.mh-cta-fine {
  font-size: 12px;
  color: color-mix(in srgb, #04140A 60%, transparent);
}

/* ────── Footer ────── */
.mh-footer {
  max-width: var(--max); margin: 80px auto 0;
  padding: 56px var(--pad-x) 28px;
  border-top: 1px solid var(--hair);
}
.mh-foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 860px) { .mh-foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .mh-foot-grid { grid-template-columns: 1fr; } }
.mh-foot-brand p {
  font-size: 14px; color: var(--fg-2);
  line-height: 1.5;
  margin: 14px 0 12px;
  max-width: 36ch;
}
.mh-foot-lbl { margin-bottom: 14px; display: block; font-weight: 600; color: var(--fg); }
.mh-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mh-footer ul li { font-size: 14px; color: var(--fg-2); cursor: pointer; transition: color .15s; }
.mh-footer ul li:hover { color: var(--fg); }
.mh-foot-bar {
  display: flex; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--hair-2);
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--muted);
}
