:root {
  --mxf-ink: #10263c;
  --mxf-muted: #5d6d7b;
  --mxf-black: #071a2c;
  --mxf-surface: #f2f7fa;
  --mxf-white: #ffffff;
  --mxf-lime: #ffb000;
  --mxf-lime-dark: #b86900;
  --mxf-gold: #ff8f00;
  --mxf-line: rgba(43, 125, 167, .16);
  --mxf-radius: 24px;
  --mxf-shadow: 0 24px 80px rgba(0, 0, 0, .15);
}

.mxf-premium-active .site-content {
  display: block;
  padding: 0;
}

.mxf-premium-active #primary,
.mxf-premium-active .content-area {
  float: none;
  width: 100%;
  margin: 0;
}

.mxf-premium-active .inside-article,
.mxf-premium-active .site-main,
.mxf-premium-active .entry-content {
  margin: 0;
  padding: 0;
  background: transparent;
}

.mxf-premium-active .entry-content > .mxf-page {
  margin-top: 0;
}

.mxf-page,
.mxf-page * {
  box-sizing: border-box;
}

.mxf-page {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: var(--mxf-ink);
  background: var(--mxf-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.mxf-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mxf-page a {
  text-underline-offset: 3px;
}

.mxf-page :focus-visible {
  outline: 3px solid var(--mxf-gold);
  outline-offset: 4px;
}

.mxf-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.mxf-hero {
  position: relative;
  min-height: 740px;
  padding: 82px 0 68px;
  overflow: hidden;
  color: var(--mxf-white);
  background:
    radial-gradient(circle at 77% 38%, rgba(255, 157, 0, .22), transparent 28%),
    radial-gradient(circle at 60% 84%, rgba(255, 176, 0, .12), transparent 25%),
    linear-gradient(135deg, #061728 0%, #0d3c5e 58%, #071421 100%);
}

.mxf-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.mxf-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.mxf-glow-one {
  top: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: rgba(255, 157, 0, .18);
}

.mxf-glow-two {
  bottom: -160px;
  left: 22%;
  width: 360px;
  height: 360px;
  background: rgba(255, 176, 0, .12);
}

.mxf-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.mxf-eyebrow,
.mxf-kicker,
.mxf-callout-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mxf-lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
}

.mxf-eyebrow::before,
.mxf-kicker::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.mxf-hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  color: var(--mxf-white);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
}

.mxf-hero h1::first-line {
  color: var(--mxf-lime);
}

.mxf-lead {
  max-width: 720px;
  margin: 0 0 16px;
  color: #f6f7f3;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.mxf-hero-copy > p:not(.mxf-lead):not(.mxf-microcopy) {
  max-width: 690px;
  color: #bdc4b9;
}

.mxf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mxf-btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.mxf-btn:hover {
  transform: translateY(-2px);
}

.mxf-btn-primary {
  color: #071a2c !important;
  background: linear-gradient(135deg, #ffd66d, var(--mxf-lime));
  box-shadow: 0 14px 40px rgba(255, 176, 0, .24);
}

.mxf-btn-primary:hover {
  color: #071a2c !important;
  box-shadow: 0 18px 50px rgba(255, 176, 0, .35);
}

.mxf-btn-ghost {
  color: var(--mxf-white) !important;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.mxf-btn-ghost:hover {
  background: rgba(255, 255, 255, .11);
}

.mxf-btn-wide {
  width: 100%;
}

.mxf-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: -46px;
  margin-bottom: 54px;
}

.mxf-inline-cta .mxf-btn {
  min-width: 250px;
}

.mxf-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #d6dad3;
  font-size: 14px;
  list-style: none;
}

.mxf-trust-row span {
  color: var(--mxf-lime);
  font-weight: 900;
}

.mxf-microcopy {
  margin: 13px 0 0;
  color: #8f978b !important;
  font-size: 12px;
  line-height: 1.5;
}

.mxf-hero-media {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
}

.mxf-hero-media > img {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  filter: drop-shadow(0 42px 50px rgba(0, 0, 0, .52));
  animation: mxf-float 5s ease-in-out infinite;
}

.mxf-product-orbit {
  position: absolute;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 176, 0, .36);
  border-radius: 50%;
}

.mxf-product-orbit::before,
.mxf-product-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: inherit;
  content: "";
}

.mxf-product-orbit::before { inset: 38px; }
.mxf-product-orbit::after { inset: 86px; }

@keyframes mxf-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mxf-floating-card {
  position: absolute;
  z-index: 3;
  min-width: 130px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(6, 28, 47, .86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
  backdrop-filter: blur(12px);
}

.mxf-floating-card small {
  display: block;
  margin-bottom: 3px;
  color: #9ba393;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.mxf-floating-card strong {
  color: var(--mxf-white);
  font-size: 16px;
}

.mxf-card-top { top: 20%; right: 0; }
.mxf-card-bottom { bottom: 18%; left: 0; }

.mxf-quick {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 26px 0;
  border-bottom: 1px solid var(--mxf-line);
  background: var(--mxf-white);
}

.mxf-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mxf-quick article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 12px 20px;
  border-right: 1px solid var(--mxf-line);
}

.mxf-quick article:last-child { border-right: 0; }

.mxf-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: #172008;
  background: var(--mxf-lime);
  font-size: 12px;
  font-weight: 900;
}

.mxf-quick strong { display: block; font-size: 15px; }
.mxf-quick p { margin: 2px 0 0; color: var(--mxf-muted); font-size: 13px; line-height: 1.45; }

.mxf-toc {
  margin-top: 70px;
  padding: 24px 28px;
  border: 1px solid var(--mxf-line);
  border-radius: 18px;
  background: #fcfaff;
}

.mxf-toc-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  color: var(--mxf-ink);
  background: none;
  font: inherit;
  font-weight: 850;
}

.mxf-toc ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  counter-reset: mxf-toc;
  list-style: none;
}

.mxf-toc li { counter-increment: mxf-toc; }

.mxf-toc a {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--mxf-ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.mxf-toc a::before {
  color: var(--mxf-lime-dark);
  content: "0" counter(mxf-toc);
  font-size: 10px;
  font-weight: 900;
}

.mxf-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mxf-section h2,
.mxf-gallery h2,
.mxf-band h2,
.mxf-offer h2,
.mxf-conclusion h2,
.mxf-callout h2 {
  max-width: 880px;
  margin: 14px 0 24px;
  color: var(--mxf-ink);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.mxf-section > p,
.mxf-section > .mxf-shell > p {
  max-width: 860px;
}

.mxf-section p,
.mxf-gallery p {
  color: #3e443b;
}

.mxf-kicker { color: var(--mxf-lime-dark); }

.mxf-section-dark {
  width: 100%;
  max-width: none;
  color: var(--mxf-white);
  background: linear-gradient(135deg, #071a2c, #0b476c);
}

.mxf-section-dark h2,
.mxf-section-dark h3 { color: var(--mxf-white); }
.mxf-section-dark p { color: #b8c0b4; }
.mxf-section-dark .mxf-kicker { color: var(--mxf-lime); }

.mxf-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.mxf-benefit-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--mxf-radius);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
}

.mxf-benefit-grid article > span {
  color: var(--mxf-lime);
  font-size: 12px;
  font-weight: 900;
}

.mxf-benefit-grid h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.mxf-benefit-grid p { margin: 0; font-size: 14px; line-height: 1.65; }

.mxf-split {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.mxf-split-reverse { grid-template-columns: .92fr 1.08fr; }

.mxf-product-stage {
  margin: 0;
  padding: 18px 18px 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, #f7f8f4, #e9ece3);
}

.mxf-product-stage img {
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: normal;
}

.mxf-product-stage figcaption {
  padding: 0 10px;
  color: var(--mxf-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.mxf-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.mxf-ingredient-grid article {
  padding: 18px 20px;
  border: 1px solid var(--mxf-line);
  border-radius: 16px;
}

.mxf-ingredient-grid strong { font-size: 15px; }
.mxf-ingredient-grid p { margin: 3px 0 0; font-size: 13px; line-height: 1.5; }

.mxf-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  margin-top: 10px;
  padding: 44px 48px;
  border: 1px solid rgba(255, 176, 0, .38);
  border-radius: 28px;
  background: linear-gradient(135deg, #edffd0, #faf5ff);
}

.mxf-callout-label { color: var(--mxf-lime-dark); }
.mxf-callout h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 46px); }
.mxf-callout p { margin: 0; color: #3f4934; }

.mxf-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.mxf-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--mxf-line);
  border-radius: 20px;
  background: #fff;
}

.mxf-steps article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #101509;
  background: var(--mxf-lime);
  font-size: 13px;
  font-weight: 900;
}

.mxf-steps h3 { margin: 0 0 5px; font-size: 18px; }
.mxf-steps p { margin: 0; font-size: 14px; line-height: 1.6; }

.mxf-band {
  overflow: hidden;
  color: var(--mxf-white);
  background: linear-gradient(110deg, #0d4f73, #071a2c);
}

.mxf-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: center;
  gap: 30px;
}

.mxf-band h2 { color: var(--mxf-white); }
.mxf-band p { max-width: 620px; color: #bac2b6; }
.mxf-band img { align-self: end; max-height: 500px; object-fit: contain; mix-blend-mode: normal; }

.mxf-section blockquote {
  max-width: 860px;
  margin: 36px 0;
  padding: 30px 34px;
  border: 0;
  border-left: 5px solid var(--mxf-lime);
  border-radius: 0 18px 18px 0;
  background: var(--mxf-surface);
}

.mxf-section blockquote p {
  margin: 0;
  color: var(--mxf-ink);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 850;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.mxf-section-soft {
  width: 100%;
  max-width: none;
  background: var(--mxf-surface);
}

.mxf-safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.mxf-safety-grid article {
  position: relative;
  padding: 26px 26px 26px 70px;
  border: 1px solid var(--mxf-line);
  border-radius: 20px;
  background: var(--mxf-white);
}

.mxf-safety-grid article > span {
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #211600;
  background: var(--mxf-lime);
  font-weight: 950;
}

.mxf-safety-grid h3 { margin: 0 0 6px; font-size: 18px; }
.mxf-safety-grid p { margin: 0; font-size: 14px; line-height: 1.6; }

.mxf-photo-stack {
  position: relative;
  min-height: 550px;
  margin: 0;
}

.mxf-photo-stack img {
  position: absolute;
  width: 67%;
  aspect-ratio: 3 / 4;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: var(--mxf-shadow);
  object-fit: cover;
}

.mxf-photo-stack img:first-child { top: 0; left: 0; transform: rotate(-3deg); }
.mxf-photo-stack img:last-child { right: 0; bottom: 0; transform: rotate(4deg); }

.mxf-gallery {
  padding-top: 34px;
  padding-bottom: 100px;
}

.mxf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.mxf-gallery-grid button {
  min-width: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--mxf-line);
  border-radius: 20px;
  background: #f8f9f5;
  cursor: zoom-in;
}

.mxf-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform .25s ease;
}

.mxf-gallery-grid button:hover img { transform: scale(1.035); }

.mxf-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 980px;
  margin: 36px 0;
}

.mxf-checklist label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--mxf-line);
  border-radius: 15px;
  color: #343a31;
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.mxf-checklist input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--mxf-lime-dark);
}

.mxf-offer {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  border-radius: 34px;
  color: var(--mxf-white);
  background:
    radial-gradient(circle at 85% 30%, rgba(255, 176, 0, .22), transparent 33%),
    #071a2c;
}

.mxf-offer h2 { color: var(--mxf-white); }
.mxf-offer p { color: #bdc5b9; }
.mxf-offer ul { margin: 24px 0; padding: 0; list-style: none; }
.mxf-offer li { margin: 8px 0; color: #e4e9df; font-size: 14px; }
.mxf-offer li::before { margin-right: 9px; color: var(--mxf-lime); content: "✓"; font-weight: 900; }
.mxf-offer > img { width: 100%; mix-blend-mode: normal; }

.mxf-faq-intro { max-width: 760px; }

.mxf-faq {
  max-width: 940px;
  margin-top: 38px;
  border-top: 1px solid var(--mxf-line);
}

.mxf-faq details { border-bottom: 1px solid var(--mxf-line); }
.mxf-faq summary {
  position: relative;
  padding: 22px 50px 22px 0;
  color: var(--mxf-ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}
.mxf-faq summary::-webkit-details-marker { display: none; }
.mxf-faq summary::after {
  position: absolute;
  top: 18px;
  right: 6px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #071a2c;
  background: var(--mxf-lime);
  content: "+";
}
.mxf-faq details[open] summary::after { content: "−"; }
.mxf-faq details p { margin: 0; padding: 0 50px 22px 0; color: var(--mxf-muted); }

.mxf-accordion {
  max-width: 940px;
  margin-top: 40px;
  border-top: 1px solid var(--mxf-line);
}

.mxf-accordion h3 {
  margin: 32px 0 8px;
  color: var(--mxf-lime-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mxf-accordion details { border-bottom: 1px solid var(--mxf-line); }

.mxf-accordion summary {
  position: relative;
  padding: 23px 52px 23px 0;
  color: var(--mxf-ink);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.mxf-accordion summary::-webkit-details-marker { display: none; }
.mxf-accordion summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mxf-surface);
  content: "+";
}
.mxf-accordion details[open] summary::after { content: "−"; }
.mxf-accordion details div { padding: 0 50px 20px 0; }
.mxf-accordion details p { margin: 0; color: var(--mxf-muted); }

.mxf-conclusion {
  padding: 100px 0;
  color: var(--mxf-white);
  background: linear-gradient(135deg, #071a2c, #0d4f73);
}

.mxf-conclusion-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: clamp(40px, 9vw, 120px);
  align-items: center;
}

.mxf-conclusion h2 { color: var(--mxf-white); }
.mxf-conclusion p { color: #b8c0b4; }

.mxf-conclusion-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .05);
}

.mxf-conclusion-card strong { font-size: 22px; }

.mxf-final {
  padding: 96px 0;
  color: var(--mxf-white);
  background: linear-gradient(135deg, #061728, #0d4d70);
}
.mxf-final-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}
.mxf-final h2 { margin: 18px 0; color: var(--mxf-white); }
.mxf-final p { color: #eadbd2; }
.mxf-final img { width: 100%; filter: drop-shadow(0 28px 35px rgba(0,0,0,.3)); }

.mxf-editorial-note {
  padding-top: 36px;
  padding-bottom: 110px;
}

.mxf-editorial-note p {
  margin: 0;
  color: #767d73;
  font-size: 12px;
  line-height: 1.6;
}

.mxf-sticky {
  position: fixed;
  z-index: 9998;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-width: 370px;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  color: #fff;
  background: rgba(6, 23, 40, .96);
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  transform: translateY(140%);
  transition: transform .35s ease;
}

.mxf-sticky.is-visible { transform: translateY(0); }
.mxf-sticky strong, .mxf-sticky span { display: block; }
.mxf-sticky strong { font-size: 15px; }
.mxf-sticky span { color: #e8d2c8; font-size: 11px; }
.mxf-sticky a { min-height: 44px; padding: 10px 18px; border-radius: 999px; color: #071a2c; background: var(--mxf-lime); font-size: 13px; font-weight: 850; text-decoration: none; }

.mxf-lightbox {
  width: min(880px, calc(100% - 30px));
  max-height: 90vh;
  padding: 20px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--mxf-shadow);
}

.mxf-lightbox::backdrop { background: rgba(0, 0, 0, .78); backdrop-filter: blur(4px); }
.mxf-lightbox img { width: 100%; max-height: calc(90vh - 40px); object-fit: contain; }
.mxf-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #111;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .mxf-hero-grid,
  .mxf-split,
  .mxf-split-reverse,
  .mxf-band-grid,
  .mxf-offer,
  .mxf-conclusion-grid,
  .mxf-final-grid,
  .mxf-callout { grid-template-columns: 1fr; }

  .mxf-hero { padding-top: 64px; }
  .mxf-hero-media { min-height: 520px; }
  .mxf-product-orbit { width: 420px; height: 420px; }
  .mxf-quick-grid { grid-template-columns: 1fr; }
  .mxf-quick article { border-right: 0; border-bottom: 1px solid var(--mxf-line); }
  .mxf-quick article:last-child { border-bottom: 0; }
  .mxf-toc ol { grid-template-columns: repeat(2, 1fr); }
  .mxf-benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .mxf-callout { gap: 15px; }
  .mxf-callout p { max-width: 760px; }
  .mxf-band-grid { padding-top: 70px; }
  .mxf-band img { justify-self: center; }
  .mxf-photo-stack { min-height: 640px; }
  .mxf-offer > img { max-width: 540px; justify-self: center; }
}

@media (max-width: 680px) {
  .mxf-page { font-size: 16px; }
  .mxf-shell { width: min(100% - 28px, 1180px); }
  .mxf-hero { min-height: 0; padding: 54px 0 36px; }
  .mxf-hero h1 { font-size: clamp(40px, 13vw, 60px); }
  .mxf-hero-actions { display: grid; }
  .mxf-btn { width: 100%; }
  .mxf-trust-row { display: grid; gap: 6px; }
  .mxf-hero-media { min-height: 430px; }
  .mxf-hero-media > img { width: min(420px, 104%); }
  .mxf-product-orbit { width: 330px; height: 330px; }
  .mxf-floating-card { min-width: 105px; padding: 10px 12px; }
  .mxf-card-top { right: -6px; }
  .mxf-card-bottom { left: -6px; }
  .mxf-toc { margin-top: 46px; padding: 20px; }
  .mxf-toc-toggle { display: flex; }
  .mxf-toc ol { display: none; grid-template-columns: 1fr; margin-top: 18px; }
  .mxf-toc.is-open ol { display: grid; }
  .mxf-section { padding-top: 72px; padding-bottom: 72px; }
  .mxf-section h2,
  .mxf-gallery h2,
  .mxf-band h2,
  .mxf-offer h2,
  .mxf-conclusion h2,
  .mxf-final h2,
  .mxf-callout h2 { font-size: clamp(32px, 10.5vw, 46px); }
  .mxf-benefit-grid,
  .mxf-ingredient-grid,
  .mxf-steps,
  .mxf-safety-grid,
  .mxf-checklist { grid-template-columns: 1fr; }
  .mxf-benefit-grid article { padding: 22px; }
  .mxf-callout { width: min(100% - 28px, 1180px); padding: 30px 24px; }
  .mxf-band-grid { min-height: 0; padding-top: 60px; }
  .mxf-photo-stack { min-height: 470px; }
  .mxf-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .mxf-offer { width: min(100% - 28px, 1180px); gap: 18px; border-radius: 24px; }
  .mxf-accordion summary { font-size: 16px; }
  .mxf-sticky {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-width: 0;
    padding: 10px 10px 10px 14px;
  }
  .mxf-sticky .mxf-btn { width: auto; }
}

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