/* ==========================================================================
   Mega Followers UK - content pages (mf-content.css)
   FAQ / help, contact, about, blog index + article, legal pages, 404.
   Loaded with add_css('mf-content.css') before partials/header; mf-ds.css
   loads after it, so every rule here uses its own .mfc- prefix and the
   mf-ds tokens (no raw brand hex outside illustrations).
   Colour rule: gradient / coral only on things you click, plus thin brand
   lines and the lightning-arrow bolt.
   ========================================================================== */

.mfc {
  --mfc-blush: var(--home-blush, #FFEAF2);
  --mfc-peach: var(--home-peach, #FFEEE4);
  --mfc-lilac: var(--home-lilac, #EFEBFF);
  --mfc-butter: var(--home-butter, #FFF4D6);
  --mfc-mint: var(--home-mint, #E2F7F1);
  --mfc-sky: var(--home-sky, #E8F2FF);
  --mfc-ring: 0 0 0 1px var(--border);
  --mfc-lift: 0 0 0 1px var(--border-strong), 0 14px 32px rgba(41, 47, 59, .09);
  --mfc-sticky-top: calc(var(--header-h) + 28px);
  color: var(--body);
  font-family: var(--font-body);
}
.mfc p { margin: 0 0 14px; }
.mfc a { transition: color .15s ease, background-color .15s ease, box-shadow .15s ease; }
.mfc section { scroll-margin-top: calc(var(--header-h) + 24px); }

/* --------------------------------------------------------------------------
   1. Page hero (shared)
   -------------------------------------------------------------------------- */
.mfc-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: 28px 0 48px;
  background:
    radial-gradient(70% 90% at 0% 0%, #FFF1F6 0%, rgba(255, 241, 246, 0) 60%),
    radial-gradient(60% 80% at 100% 10%, #FFF4EC 0%, rgba(255, 244, 236, 0) 65%),
    #fff;
}
.mfc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(rgba(41, 47, 59, .09) 1px, transparent 1.2px) 0 0 / 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%); mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.mfc-hero__bolt {
  position: absolute; z-index: -1; right: -70px; top: 0; width: 260px; height: 260px; opacity: .07; pointer-events: none;
  background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat;
}
.mfc-hero__grid { position: relative; display: grid; gap: 32px; align-items: center; }
.mfc-hero__copy { min-width: 0; }
.mfc-hero--center .mfc-hero__copy { max-width: 780px; margin-inline: auto; text-align: center; }
.mfc-hero--center .mfc-lead { margin-inline: auto; }
.mfc-hero--center .mfc-crumbs ol { justify-content: center; }
@media (min-width: 992px) {
  .mfc-hero { padding: 40px 0 80px; }
  .mfc-hero__bolt { right: -40px; top: 24px; width: 440px; height: 440px; }
  .mfc-hero__grid--split { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 56px; }
}
.mfc-eyebrow { color: var(--heading); }
.mfc-eyebrow .mf-bolt { width: 15px; height: 15px; }
.mfc-title { font: 800 clamp(2.125rem, 1.35rem + 3.2vw, 3.375rem)/1.08 var(--font-display); letter-spacing: -.03em; color: var(--heading); margin: 0 0 18px; overflow-wrap: break-word; }
.mfc-title--md { font-size: clamp(1.875rem, 1.3rem + 2.4vw, 2.875rem); line-height: 1.12; }
.mfc-lead { font-size: 1.0625rem; line-height: 1.7; color: var(--body); max-width: 640px; margin: 0 0 24px; }
@media (min-width: 992px) { .mfc-lead { font-size: 1.125rem; } }

/* Breadcrumbs */
.mfc-crumbs { margin: 0 0 22px; font-size: .8125rem; }
.mfc-crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; }
.mfc-crumbs li { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); min-width: 0; }
.mfc-crumbs li i { font-size: .55rem; color: #A1A6B1; }
.mfc-crumbs a { color: var(--heading); font-weight: 600; text-decoration: none; }
.mfc-crumbs a:hover { text-decoration: underline; text-underline-offset: 3px; }
.mfc-crumbs [aria-current] { color: var(--muted); max-width: 46ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Section head helpers */
.mfc-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.mfc-head--left { margin-left: 0; text-align: left; }
.mfc-head .mf-h2 { margin-bottom: 12px; }
.mfc-head p { color: var(--body); margin: 0; }
.mfc-head .mf-eyebrow .mf-bolt { width: 15px; height: 15px; }

/* Pastel icon tile (tilted, like the home promise icons) */
.mfc-ico { display: inline-grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 30%; background: var(--mfc-blush); color: var(--heading-alt); font-size: 1.1rem; transform: rotate(-6deg); }
.mfc-ico > * { transform: rotate(6deg); }
.mfc-ico--lg { width: 60px; height: 60px; flex-basis: 60px; font-size: 1.35rem; }
.mfc-ico--sm { width: 38px; height: 38px; flex-basis: 38px; font-size: .9rem; }
.mfc-ico--blush { background: var(--mfc-blush); }
.mfc-ico--peach { background: var(--mfc-peach); }
.mfc-ico--lilac { background: var(--mfc-lilac); }
.mfc-ico--butter { background: var(--mfc-butter); }
.mfc-ico--mint { background: var(--mfc-mint); }
.mfc-ico--sky { background: var(--mfc-sky); }
.mfc-ico .mf-bolt { width: 46%; height: 46%; }

/* Plain white panel */
.mfc-panel { position: relative; background: #fff; border-radius: var(--r-card-xl); box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .03); padding: 22px; }
@media (min-width: 768px) { .mfc-panel { padding: 32px; } }
.mfc-panel--edge::before { content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px; border-radius: 0 0 4px 4px; background: var(--brand-grad); }
.mfc-panel--glow { box-shadow: 0 0 0 1px var(--border), 0 24px 60px rgba(41, 47, 59, .10); }

/* Doodles */
.mfc-doodle { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--heading-alt); pointer-events: none; }

/* Arrow chip used on link cards */
.mfc-arrow { display: inline-grid; place-items: center; width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; background: var(--surface-2); color: var(--heading); font-size: .8rem; transition: background .15s ease, color .15s ease, transform .15s ease; }

/* Big link card (intent cards, help cards) */
.mfc-linkcard {
  position: relative; display: flex; flex-direction: column; gap: 14px; min-height: 100%; padding: 22px;
  background: #fff; border-radius: 20px; box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .04);
  color: var(--heading); text-decoration: none; overflow: hidden;
  transition: box-shadow .2s ease, transform .2s var(--ease);
}
.mfc-linkcard::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--brand-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.mfc-linkcard:hover { color: var(--heading); box-shadow: var(--mfc-lift); transform: translateY(-2px); }
.mfc-linkcard:hover::before { transform: scaleX(1); }
.mfc-linkcard:hover .mfc-arrow, .mfc-row:hover .mfc-arrow { background: var(--cta-gradient); color: #fff; }
.mfc-linkcard:focus-visible { box-shadow: 0 0 0 3px var(--focus); }
.mfc-linkcard__title { display: block; font: 700 1.125rem/1.3 var(--font-display); color: var(--heading); margin: 0; }
.mfc-linkcard__text { display: block; font-size: .9375rem; line-height: 1.55; color: var(--muted); margin: 0; }
.mfc-linkcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 4px; font: 700 .875rem/1.2 var(--font-body); color: var(--heading); }
@media (prefers-reduced-motion: reduce) { .mfc-linkcard, .mfc-linkcard::before { transition: none; } .mfc-linkcard:hover { transform: none; } }

/* Compact link row */
.mfc-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); text-decoration: none; min-width: 0; transition: box-shadow .2s ease; }
.mfc-row:hover { color: var(--heading); box-shadow: var(--mfc-lift); }
.mfc-row__copy { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.mfc-row__copy strong { font: 700 1rem/1.3 var(--font-display); }
.mfc-row__copy span { font-size: .875rem; line-height: 1.45; color: var(--muted); }

/* Dark "still need help" / CTA card */
.mfc-cta {
  position: relative; overflow: hidden; isolation: isolate; display: grid; gap: 20px; align-items: center;
  padding: 28px 22px; border-radius: 28px; background: var(--dark-indigo); color: #C9CBD6;
}
.mfc-cta::before { content: ""; position: absolute; z-index: -1; right: -60px; bottom: -110px; width: 320px; height: 320px; opacity: .12; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfc-cta::after { content: ""; position: absolute; z-index: -1; left: 30%; top: -40%; width: 60%; height: 120%; border-radius: 50%; background: linear-gradient(120deg, rgba(250, 21, 147, .22), rgba(251, 92, 6, .16)); filter: blur(70px); }
.mfc-cta h2, .mfc-cta h3 { color: #fff; margin: 0 0 8px; font: 800 clamp(1.5rem, 1.1rem + 1.6vw, 2.125rem)/1.15 var(--font-display); letter-spacing: -.02em; }
.mfc-cta p { color: #C9CBD6; margin: 0; font-size: 1rem; }
.mfc-cta p a { color: #fff; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .4); text-underline-offset: 3px; }
.mfc-cta p a:hover { color: #fff; text-decoration-color: #fff; }
.mfc-cta .mf-eyebrow { color: #A9ABC2; }
.mfc-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.mfc-cta .mf-btn--secondary { --btn-bg: rgba(255, 255, 255, .08); --btn-fg: #fff; --btn-edge: rgba(0, 0, 0, .35); border-color: rgba(255, 255, 255, .18); }
.mfc-cta .mf-btn--secondary:hover { background: rgba(255, 255, 255, .14); }
@media (min-width: 768px) { .mfc-cta { padding: 40px 44px; } }
@media (min-width: 992px) { .mfc-cta { grid-template-columns: minmax(0, 1fr) auto; gap: 40px; padding: 48px 56px; } }
@media (max-width: 575.98px) { .mfc-cta__actions .mf-btn { width: 100%; } }

/* --------------------------------------------------------------------------
   2. Readable prose (blog article + legal text)
   -------------------------------------------------------------------------- */
.mfc-prose { color: var(--body); font-size: 1.0625rem; line-height: 1.75; overflow-wrap: break-word; }
.mfc-prose > :first-child { margin-top: 0; }
.mfc-prose p { margin: 0 0 1.1em; }
.mfc-prose h1, .mfc-prose h2, .mfc-prose h3, .mfc-prose h4, .mfc-prose h5, .mfc-prose h6 { font-family: var(--font-display); color: var(--heading); letter-spacing: -.02em; scroll-margin-top: calc(var(--header-h) + 28px); }
.mfc-prose h2 { font-size: clamp(1.4375rem, 1.2rem + .9vw, 1.75rem); line-height: 1.25; font-weight: 800; margin: 2.2em 0 .7em; }
.mfc-prose h3 { font-size: 1.25rem; line-height: 1.35; font-weight: 700; margin: 1.8em 0 .55em; }
.mfc-prose h4, .mfc-prose h5, .mfc-prose h6 { font-size: 1.0625rem; font-weight: 700; margin: 1.5em 0 .5em; }
.mfc-prose ul, .mfc-prose ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.mfc-prose li { margin: 0 0 .55em; padding-left: .2em; }
.mfc-prose li > ul, .mfc-prose li > ol { margin: .55em 0 0; }
.mfc-prose ul > li::marker { color: var(--cta); font-size: 1.1em; }
.mfc-prose ol > li::marker { color: var(--heading); font-weight: 700; font-family: var(--font-display); }
.mfc-prose strong, .mfc-prose b { color: var(--heading); font-weight: 700; }
.mfc-prose a { color: var(--heading); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(248, 58, 90, .45); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.mfc-prose a:hover { color: var(--cta-edge); text-decoration-color: var(--cta); }
.mfc-prose img { max-width: 100%; height: auto; border-radius: 16px; }
.mfc-prose figure { margin: 2em 0; }
.mfc-prose figcaption { margin-top: 10px; font-size: .875rem; color: var(--muted); text-align: center; }
.mfc-prose blockquote { margin: 1.8em 0; padding: 18px 22px; border-left: 3px solid var(--cta); border-radius: 0 14px 14px 0; background: var(--surface-warm); color: var(--heading); font-weight: 500; }
.mfc-prose blockquote p:last-child { margin-bottom: 0; }
.mfc-prose hr { margin: 2.4em 0; border: 0; height: 1px; background: var(--border); opacity: 1; }
.mfc-prose table { width: 100%; margin: 1.6em 0; border-collapse: separate; border-spacing: 0; font-size: .9375rem; line-height: 1.5; border-radius: 14px; box-shadow: var(--mfc-ring); overflow: hidden; display: block; overflow-x: auto; }
.mfc-prose th, .mfc-prose td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.mfc-prose th { background: var(--surface); color: var(--heading); font-weight: 700; }
.mfc-prose tr:last-child td { border-bottom: 0; }
.mfc-prose code { padding: 2px 6px; border-radius: 6px; background: var(--surface-2); color: var(--heading); font-size: .9em; }
@media (max-width: 575.98px) { .mfc-prose { font-size: 1rem; } }

/* --------------------------------------------------------------------------
   3. Table of contents (legal + article)
   -------------------------------------------------------------------------- */
.mfc-toc { position: sticky; top: var(--mfc-sticky-top); max-height: calc(100vh - var(--mfc-sticky-top) - 24px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; }
.mfc-toc__title { display: flex; align-items: center; gap: 8px; margin: 0 0 12px; padding-left: 12px; font: 700 .75rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mfc-toc__title .mf-bolt { width: 13px; height: 13px; }
.mfc-toc__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.mfc-toc__link { position: relative; display: flex; align-items: baseline; gap: 10px; padding: 8px 12px; border-radius: 10px; color: var(--body); font-size: .875rem; line-height: 1.4; text-decoration: none; }
.mfc-toc__link:hover { background: var(--surface); color: var(--heading); }
.mfc-toc__link.is-active { background: var(--cta-tint); color: var(--heading); font-weight: 600; }
.mfc-toc__link.is-active::before { content: ""; position: absolute; left: 0; top: 9px; bottom: 9px; width: 3px; border-radius: 3px; background: var(--brand-grad); }
.mfc-toc__num { flex: 0 0 auto; min-width: 1.4em; font: 600 .8125rem/1.4 var(--font-mono); color: var(--muted); font-variant-numeric: tabular-nums; }
.mfc-toc__link.is-active .mfc-toc__num { color: var(--cta-edge); }
.mfc-toc__dot { flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong); transform: translateY(-2px); }
.mfc-toc__link.is-active .mfc-toc__dot { background: var(--cta); }

/* Mobile TOC drawer (details) */
.mfc-toc-m { margin: 0 0 28px; border-radius: 16px; background: #fff; box-shadow: var(--mfc-ring); }
.mfc-toc-m > summary { list-style: none; display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 12px 16px; cursor: pointer; font: 700 .9375rem/1.2 var(--font-display); color: var(--heading); }
.mfc-toc-m > summary::-webkit-details-marker { display: none; }
.mfc-toc-m > summary .mf-bolt { width: 15px; height: 15px; }
.mfc-toc-m > summary::after { content: ""; margin-left: auto; width: 9px; height: 9px; border-right: 2px solid var(--heading); border-bottom: 2px solid var(--heading); transform: rotate(45deg) translate(-2px, -2px); transition: transform .2s var(--ease); }
.mfc-toc-m[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.mfc-toc-m .mfc-toc__list { padding: 0 8px 10px; border-top: 1px solid var(--border); padding-top: 8px; max-height: 50vh; overflow-y: auto; }
@media (min-width: 992px) { .mfc-toc-m { display: none; } }
.mfc-toc--rail { display: none; }
@media (min-width: 992px) { .mfc-toc--rail { display: block; } }

/* --------------------------------------------------------------------------
   4. Legal pages
   -------------------------------------------------------------------------- */
.mfc-legal-hero .mfc-title { margin-bottom: 14px; }
.mfc-legal-hero__stamp { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 6px 12px 6px 8px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); font: 600 .8125rem/1.3 var(--font-body); color: var(--heading); }
.mfc-legal-hero__stamp i { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--mfc-blush); color: var(--cta-edge); font-size: .65rem; }
.mfc-legal-hero .mfc-lead { max-width: 680px; }
.mfc-legal-hero .mfc-lead strong { color: var(--heading); }
.mfc-legal-hero__art { display: none; }
@media (min-width: 992px) { .mfc-legal-hero__art { display: block; } }

.mfc-doc { display: grid; gap: 0; padding: 24px 0 64px; }
@media (min-width: 992px) {
  .mfc-doc { grid-template-columns: 272px minmax(0, 760px); gap: 64px; justify-content: center; padding: 40px 0 104px; }
}
.mfc-legal-hero { padding-bottom: 28px; }
@media (min-width: 992px) { .mfc-legal-hero { padding: 32px 0 40px; } }
.mfc-doc__main { min-width: 0; }
.mfc-doc__sec { position: relative; padding: 28px 0 12px; border-top: 1px solid var(--border); }
.mfc-doc__sec:first-child, .mfc-toc-m + .mfc-doc__sec { padding-top: 0; border-top: 0; }
.mfc-doc__sec h2 { display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px; font: 800 clamp(1.3125rem, 1.15rem + .6vw, 1.5rem)/1.3 var(--font-display); color: var(--heading); letter-spacing: -.02em; scroll-margin-top: calc(var(--header-h) + 28px); }
.mfc-doc__sec h3 { margin: 22px 0 10px; font: 700 1.125rem/1.35 var(--font-display); color: var(--heading-alt); }
.mfc-doc__sec p, .mfc-doc__sec li { font-size: 1rem; line-height: 1.75; }
.mfc-doc__sec ul, .mfc-doc__sec ol { margin-bottom: 16px; }
.mfc-doc__sec li { margin-bottom: 8px; }
.mfc-doc__num { flex: 0 0 auto; display: inline-grid; place-items: center; min-width: 34px; height: 34px; padding: 0 6px; border-radius: 11px; font: 700 .875rem/1 var(--font-mono); color: var(--heading); border: 1.5px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box; transform: translateY(-3px); }
.mfc-doc__foot { margin-top: 40px; }

/* Related legal links under the document */
.mfc-legal-links { display: grid; gap: 12px; }
@media (min-width: 576px) { .mfc-legal-links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Legal hero illustration: stacked document cards with a seal */
.mfc-docart { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / .82; margin-inline: auto; }
.mfc-docart__tile { position: absolute; inset: 10% 14% 6% 12%; border-radius: 28%; background: var(--mfc-lilac); transform: rotate(-7deg); }
.mfc-docart__tile--b { inset: 16% 6% 12% 24%; background: var(--mfc-blush); opacity: .8; transform: rotate(8deg); }
.mfc-docart__paper { position: absolute; left: 50%; top: 50%; width: 56%; aspect-ratio: .78; transform: translate(-50%, -50%) rotate(-3deg); display: grid; align-content: start; gap: 10px; padding: 20px 18px; border-radius: 18px; background: #fff; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 18px 40px rgba(41, 47, 59, .12); }
.mfc-docart__paper--back { transform: translate(-40%, -54%) rotate(6deg); box-shadow: 0 0 0 1px rgba(41, 47, 59, .06); opacity: .9; }
.mfc-docart__line { display: block; height: 8px; border-radius: 8px; background: var(--surface-2); }
.mfc-docart__line--h { width: 62%; height: 12px; background: var(--heading); opacity: .85; margin-bottom: 4px; }
.mfc-docart__line--s { width: 78%; }
.mfc-docart__line--xs { width: 46%; }
.mfc-docart__seal { position: absolute; left: 14%; bottom: 10%; display: grid; place-items: center; width: 22%; aspect-ratio: 1; border-radius: 50%; border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box; box-shadow: 0 10px 24px rgba(250, 21, 147, .18); }
.mfc-docart__seal .mf-bolt { width: 44%; height: 44%; }
.mfc-docart__chip { position: absolute; z-index: 2; }
.mfc-docart__chip--a { left: 0; top: 14%; }
.mfc-docart__chip--b { right: 0; top: 56%; }

/* --------------------------------------------------------------------------
   5. FAQ / help centre
   -------------------------------------------------------------------------- */
.mfc-search { position: relative; max-width: 560px; }
.mfc-search__icon { position: absolute; left: 18px; top: 29px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.mfc-search__input { display: block; width: 100%; min-height: 58px; padding: 14px 16px 14px 48px; border: 0; border-radius: 16px; background: #fff; box-shadow: 0 0 0 1px var(--border-strong), 0 3px 0 var(--border); color: var(--heading); font: 500 1rem/1.3 var(--font-body); -webkit-appearance: none; appearance: none; }
.mfc-search__input::placeholder { color: #8A909C; }
.mfc-search__input:focus { outline: none; box-shadow: 0 0 0 2px var(--heading), 0 3px 0 var(--border); }
.mfc-search__input::-webkit-search-cancel-button { cursor: pointer; }
.mfc-search__status { min-height: 1.4em; margin: 10px 0 0; font-size: .875rem; color: var(--muted); }
.mfc-hero--center .mfc-search { margin-inline: auto; }

.mfc-quick { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.mfc-quick a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 14px 8px 10px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); font: 600 .875rem/1.2 var(--font-body); text-decoration: none; }
.mfc-quick a:hover { box-shadow: 0 0 0 1.5px var(--cta), 0 4px 12px rgba(248, 58, 90, .12); color: var(--heading); }
.mfc-quick i { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--mfc-blush); font-size: .7rem; color: var(--heading-alt); }

/* "Where's my order?" tracker card */
.mfc-track { position: relative; overflow: visible; }
.mfc-track__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.mfc-track__head h2 { margin: 0; font: 800 1.375rem/1.2 var(--font-display); color: var(--heading); letter-spacing: -.02em; }
.mfc-track__head p { margin: 2px 0 0; font-size: .875rem; color: var(--muted); }
.mfc-steps-art { position: relative; list-style: none; margin: 0 0 20px; padding: 16px; border-radius: 18px; background: var(--surface); display: grid; gap: 4px; }
.mfc-steps-art li { position: relative; display: flex; align-items: center; gap: 12px; padding: 8px 6px; font: 600 .9375rem/1.3 var(--font-body); color: var(--heading); }
.mfc-steps-art li:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 38px; height: 18px; width: 2px; border-radius: 2px; background: var(--border-strong); }
.mfc-steps-art li.is-done:not(:last-child)::after { background: var(--brand-grad); }
.mfc-steps-art__dot { position: relative; display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1.5px var(--border-strong); color: #fff; font-size: .7rem; }
.mfc-steps-art li.is-done .mfc-steps-art__dot { background: var(--cta); box-shadow: none; }
.mfc-steps-art li.is-live .mfc-steps-art__dot { box-shadow: 0 0 0 1.5px var(--cta); }
.mfc-steps-art li.is-live .mfc-steps-art__dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--cta); }
.mfc-steps-art li.is-live .mfc-steps-art__dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--cta); opacity: .35; animation: mfc-ping 1.8s ease-out infinite; }
.mfc-steps-art li.is-todo { color: var(--muted); }
.mfc-steps-art__bar { margin-left: auto; width: 34%; height: 6px; border-radius: 6px; background: #fff; box-shadow: inset 0 0 0 1px var(--border); overflow: hidden; }
.mfc-steps-art__bar span { display: block; width: 64%; height: 100%; border-radius: inherit; background: var(--brand-grad); animation: mfc-fill 1.6s var(--ease) both; }
.mfc-steps-art__tag { margin-left: auto; font: 600 .75rem/1 var(--font-mono); color: var(--muted); }
@keyframes mfc-ping { 0% { transform: scale(.8); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes mfc-fill { from { width: 8%; } }
@media (prefers-reduced-motion: reduce) { .mfc-steps-art li.is-live .mfc-steps-art__dot::after, .mfc-steps-art__bar span { animation: none; } }
.mfc-track__form { display: grid; gap: 10px; }
.mfc-track__form .mf-input { font-family: var(--font-mono); }
@media (min-width: 576px) { .mfc-track__form { grid-template-columns: minmax(0, 1fr) auto; } .mfc-track__form .mf-label { grid-column: 1 / -1; margin-bottom: 0; } }
.mfc-track__note { margin: 12px 0 0; font-size: .8125rem; color: var(--muted); }
.mfc-track__spark { position: absolute; right: -10px; top: -18px; width: 44px; height: 44px; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; transform: rotate(8deg); }
@media (max-width: 575.98px) { .mfc-track__spark { right: 8px; top: -14px; width: 32px; height: 32px; } }

/* Troubleshooting + guarantee cards */
.mfc-fix { display: grid; gap: 24px; }
@media (min-width: 992px) { .mfc-fix { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 32px; align-items: start; } }
.mfc-fix .mf-accordion--cards .mf-acc { padding: 0 18px; border-radius: 16px; box-shadow: var(--mfc-ring); }
.mfc-fix .mf-acc > summary { font-size: 1rem; gap: 14px; }
.mfc-fix .mf-acc__icon { border-radius: 30%; transform: rotate(-6deg); }
.mfc-fix .mf-acc__icon > * { transform: rotate(6deg); }
.mfc-fix .mf-acc[open] { box-shadow: 0 0 0 1px var(--border-strong), 0 10px 24px rgba(41, 47, 59, .06); }
.mfc-fix .mf-acc__body { padding-left: 50px; }
@media (max-width: 575.98px) { .mfc-fix .mf-acc__body { padding-left: 0; } }
.mfc-fix__side { display: grid; gap: 16px; }

/* Illustrated guarantee card (refill / refund) */
.mfc-gcard { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 96px; gap: 16px; align-items: center; padding: 22px; border-radius: 22px; color: var(--heading); text-decoration: none; overflow: hidden; box-shadow: 0 3px 0 rgba(41, 47, 59, .08); transition: transform .2s var(--ease), box-shadow .2s ease; }
.mfc-gcard:hover { color: var(--heading); transform: translateY(-2px); box-shadow: 0 3px 0 rgba(41, 47, 59, .08), 0 14px 30px rgba(41, 47, 59, .10); }
.mfc-gcard--mint { background: var(--mfc-mint); }
.mfc-gcard--peach { background: var(--mfc-peach); }
.mfc-gcard--lilac { background: var(--mfc-lilac); }
.mfc-gcard__title { display: block; font: 800 1.1875rem/1.25 var(--font-display); letter-spacing: -.01em; margin-bottom: 6px; }
.mfc-gcard__text { display: block; font-size: .9375rem; line-height: 1.5; color: var(--body); margin-bottom: 14px; }
.mfc-gcard__cta { display: inline-flex; align-items: center; gap: 8px; font: 700 .875rem/1.2 var(--font-body); }
.mfc-gcard__cta i { transition: transform .15s ease; }
.mfc-gcard:hover .mfc-gcard__cta i { transform: translateX(3px); }
.mfc-gcard__art { position: relative; width: 96px; height: 96px; }
.mfc-gcard__art-tile { position: absolute; inset: 6px; border-radius: 30%; background: rgba(255, 255, 255, .75); transform: rotate(-8deg); }
.mfc-gcard__art-core { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 58px; height: 58px; transform: translate(-50%, -50%) rotate(6deg); border-radius: 18px; background: #fff; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 8px 18px rgba(41, 47, 59, .10); color: var(--heading-alt); font-size: 1.35rem; }
.mfc-gcard__art-bolt { position: absolute; right: 0; top: 2px; width: 22px; height: 22px; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfc-gcard__art-dots { position: absolute; left: 2px; bottom: 6px; width: 30px; height: 18px; background: radial-gradient(var(--heading-alt) 1.3px, transparent 1.6px) 0 0 / 8px 8px; opacity: .35; }
@media (prefers-reduced-motion: reduce) { .mfc-gcard { transition: none; } .mfc-gcard:hover { transform: none; } }

/* Full FAQ: topic rail + grouped accordions */
.mfc-faq { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.mfc-faq > *, .mfc-fix > *, .mfc-doc > *, .mfc-article > *, .mfc-hero__grid > *, .mfc-contact > *, .mfc-story > *, .mfc-values > *, .mfc-company > * { min-width: 0; }
@media (min-width: 992px) { .mfc-faq { grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; } }
.mfc-topics { display: flex; gap: 8px; margin: 0 -16px; padding: 4px 16px 10px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.mfc-topics::-webkit-scrollbar { display: none; }
.mfc-topics a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 8px 14px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); font: 600 .875rem/1.2 var(--font-body); text-decoration: none; white-space: nowrap; }
.mfc-topics a:hover { box-shadow: 0 0 0 1.5px var(--cta); color: var(--heading); }
.mfc-topics__count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: var(--r-pill); background: var(--surface-2); font: 600 .75rem/1 var(--font-mono); color: var(--muted); }
.mfc-topics a.is-active { background: var(--cta-tint); box-shadow: 0 0 0 1.5px var(--cta); }
.mfc-topics a.is-active .mfc-topics__count { background: #fff; color: var(--cta-edge); }
@media (min-width: 992px) {
  .mfc-faq__rail { position: sticky; top: var(--mfc-sticky-top); }
  .mfc-topics { flex-direction: column; margin: 0; padding: 0; overflow: visible; gap: 2px; }
  .mfc-topics a { justify-content: space-between; min-height: 44px; padding: 10px 12px; border-radius: 12px; box-shadow: none; background: transparent; white-space: normal; }
  .mfc-topics a:hover { background: var(--surface); box-shadow: none; }
  .mfc-topics a.is-active { background: var(--cta-tint); box-shadow: none; }
}
.mfc-faq__rail-title { display: none; }
@media (min-width: 992px) { .mfc-faq__rail-title { display: flex; } }
.mfc-faq__group { scroll-margin-top: calc(var(--header-h) + 24px); }
.mfc-faq__group + .mfc-faq__group { margin-top: 40px; }
.mfc-faq__group-head { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.mfc-faq__group-head h3 { margin: 0; font: 800 1.375rem/1.2 var(--font-display); color: var(--heading); letter-spacing: -.02em; }
.mfc-faq__group-count { margin-left: auto; font: 600 .8125rem/1 var(--font-mono); color: var(--muted); }
.mfc-faq .mf-accordion--cards { gap: 10px; }
.mfc-faq .mf-accordion--cards .mf-acc { padding: 0 20px; border-radius: 16px; box-shadow: var(--mfc-ring); transition: box-shadow .2s ease; }
.mfc-faq .mf-accordion--cards .mf-acc:hover { box-shadow: 0 0 0 1px var(--border-strong); }
.mfc-faq .mf-accordion--cards .mf-acc[open] { box-shadow: 0 0 0 1px var(--border-strong), 0 10px 24px rgba(41, 47, 59, .06); }
.mfc-faq .mf-acc > summary { font-size: 1rem; }
.mfc-faq .mf-acc[open] > summary::after, .mfc-fix .mf-acc[open] > summary::after { background-color: var(--cta-tint); }
.mfc-faq [hidden], .mfc-fix [hidden] { display: none !important; }
.mfc-empty { padding: 32px 20px; border-radius: 20px; background: var(--surface); text-align: center; color: var(--muted); }
.mfc-empty strong { display: block; margin-bottom: 4px; font: 700 1.0625rem/1.3 var(--font-display); color: var(--heading); }
mark.mfc-mark { padding: 0 2px; border-radius: 4px; background: #FFE3EC; color: inherit; }

/* --------------------------------------------------------------------------
   6. Contact
   -------------------------------------------------------------------------- */
.mfc-intents { display: grid; gap: 14px; }
@media (min-width: 576px) { .mfc-intents { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 992px) { .mfc-intents { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; } }
.mfc-intents--rows { margin-top: 14px; }
@media (min-width: 576px) { .mfc-intents--rows { margin-top: 16px; } }
@media (min-width: 992px) { .mfc-intents--rows { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; } }
@media (max-width: 575.98px) {
  .mfc-intents .mfc-linkcard { flex-direction: row; align-items: center; padding: 16px; gap: 14px; }
  .mfc-intents .mfc-linkcard__foot { display: none; }
  .mfc-intents .mfc-linkcard__body { flex: 1 1 auto; min-width: 0; }
  .mfc-intents .mfc-linkcard .mfc-arrow--m { display: inline-grid; }
}
.mfc-arrow--m { display: none; }

.mfc-contact { display: grid; gap: 24px; }
@media (min-width: 992px) { .mfc-contact { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 32px; align-items: start; } }
.mfc-contact__form .mf-h3 { margin-bottom: 8px; }
.mfc-channels { display: grid; gap: 10px; }
.mfc-channel { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 16px; background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); text-decoration: none; min-width: 0; }
a.mfc-channel:hover { color: var(--heading); box-shadow: var(--mfc-lift); }
.mfc-channel__copy { display: flex; flex-direction: column; min-width: 0; }
.mfc-channel__copy strong { font: 700 1rem/1.3 var(--font-display); }
.mfc-channel__copy span { font-size: .875rem; color: var(--muted); overflow-wrap: anywhere; }
.mfc-include { margin-top: 16px; }
.mfc-include h2 { font: 800 1.25rem/1.3 var(--font-display); margin: 0 0 14px; color: var(--heading); }
.mfc-include .mf-ticks { margin: 0; gap: 12px; }
.mfc-include .mf-ticks li { font-size: .9375rem; }
.mfc-include .mf-ticks strong { color: var(--heading); }

.mfc-guide { display: grid; gap: 20px; }
@media (min-width: 992px) { .mfc-guide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; } }
.mfc-guide .mfc-panel h2 { display: flex; align-items: center; gap: 12px; font: 800 1.3125rem/1.3 var(--font-display); color: var(--heading); margin: 0 0 18px; letter-spacing: -.02em; }
.mfc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.mfc-list li { position: relative; padding-left: 28px; font-size: .9688rem; line-height: 1.6; color: var(--body); }
.mfc-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfc-list strong { color: var(--heading); }
.mfc-list--cols { gap: 14px 28px; }
@media (min-width: 768px) { .mfc-list--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mfc-note { display: flex; gap: 16px; align-items: flex-start; }
.mfc-note h2 { margin: 0 0 8px; }
.mfc-note p { margin: 0 0 10px; }
.mfc-note p:last-child { margin-bottom: 0; }
.mfc-note a { color: var(--heading); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(248, 58, 90, .45); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Contact hero art: support desk (chat bubbles on tilted tiles) */
.mfc-chatart { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1 / .84; margin-inline: auto; }
.mfc-chatart__tile { position: absolute; inset: 10% 12% 6% 12%; border-radius: 28%; background: var(--mfc-sky); transform: rotate(-7deg); }
.mfc-chatart__tile--b { inset: 18% 4% 12% 24%; background: var(--mfc-blush); opacity: .75; transform: rotate(8deg); }
.mfc-chatart__card { position: absolute; left: 50%; top: 52%; width: min(76%, 320px); transform: translate(-50%, -50%) rotate(-2deg); display: grid; gap: 10px; padding: 16px; border-radius: 22px; background: #fff; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 18px 40px rgba(41, 47, 59, .12); }
.mfc-chatart__top { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.mfc-chatart__avatar { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; background: var(--heading); color: #fff; font-size: .85rem; }
.mfc-chatart__who { display: flex; flex-direction: column; min-width: 0; }
.mfc-chatart__who strong { font: 700 .8125rem/1.2 var(--font-display); color: var(--heading); }
.mfc-chatart__who small { display: inline-flex; align-items: center; gap: 5px; font-size: .6875rem; color: var(--success); font-weight: 600; }
.mfc-chatart__who small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success-2); }
.mfc-chatart__bubble { max-width: 82%; padding: 9px 12px; border-radius: 14px 14px 14px 4px; background: var(--surface-2); }
.mfc-chatart__bubble span { display: block; height: 7px; border-radius: 7px; background: #D6DAE3; }
.mfc-chatart__bubble span + span { margin-top: 6px; width: 70%; }
.mfc-chatart__bubble--me { justify-self: end; border-radius: 14px 14px 4px 14px; background: var(--mfc-blush); }
.mfc-chatart__bubble--me span { background: #F7B9CD; }
.mfc-chatart__typing { display: inline-flex; gap: 4px; padding: 10px 12px; border-radius: 14px 14px 14px 4px; background: var(--surface-2); justify-self: start; }
.mfc-chatart__typing i { width: 6px; height: 6px; border-radius: 50%; background: #A1A6B1; animation: mfc-type 1.2s ease-in-out infinite; }
.mfc-chatart__typing i:nth-child(2) { animation-delay: .15s; }
.mfc-chatart__typing i:nth-child(3) { animation-delay: .3s; }
@keyframes mfc-type { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-3px); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .mfc-chatart__typing i { animation: none; } }
.mfc-chatart .mf-art__chip { z-index: 2; }
.mfc-chatart__chip--a { left: 0; top: 10%; }
.mfc-chatart__chip--b { right: 0; top: 64%; }
.mfc-chatart__chip--c { left: 6%; bottom: 4%; }
@media (max-width: 575.98px) {
  .mfc-chatart { max-width: 340px; }
  .mfc-chatart .mf-art__chip { padding: 8px 10px; font-size: .75rem; }
  .mfc-chatart .mf-art__chip i { width: 22px; height: 22px; }
}

/* Contact form layout lives inline in partials/contact-form.php (the home page embeds it without this file). */

/* --------------------------------------------------------------------------
   7. About
   -------------------------------------------------------------------------- */
.mfc-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 0; padding: 0; list-style: none; max-width: 600px; }
.mfc-hero--center .mfc-stats { margin-inline: auto; }
.mfc-stat { position: relative; padding: 14px 14px 12px; border-radius: 16px; background: #fff; box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .04); min-width: 0; }
.mfc-stat strong { display: block; font: 800 clamp(1.125rem, .95rem + .8vw, 1.5rem)/1.15 var(--font-display); color: var(--heading); letter-spacing: -.02em; }
.mfc-stat span { display: block; margin-top: 4px; font-size: .8125rem; line-height: 1.35; color: var(--muted); }
.mfc-stat::after { content: ""; position: absolute; left: 14px; top: 0; width: 26px; height: 3px; border-radius: 0 0 3px 3px; background: var(--brand-grad); }
@media (max-width: 419.98px) { .mfc-stats { grid-template-columns: 1fr; } .mfc-stat { display: flex; align-items: baseline; gap: 12px; } .mfc-stat strong { flex: 0 0 auto; white-space: nowrap; } .mfc-stat span { margin-top: 0; } }

.mfc-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 6px 12px 6px 8px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); font: 700 .75rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--heading); }
.mfc-tag .mf-bolt { width: 14px; height: 14px; }

/* About hero art: company card */
.mfc-coart { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1 / .84; margin-inline: auto; }
.mfc-coart__tile { position: absolute; inset: 10% 12% 6% 12%; border-radius: 28%; background: var(--mfc-butter); transform: rotate(-7deg); }
.mfc-coart__tile--b { inset: 18% 4% 12% 24%; background: var(--mfc-mint); opacity: .8; transform: rotate(8deg); }
.mfc-coart__card { position: absolute; left: 50%; top: 52%; width: min(78%, 330px); transform: translate(-50%, -50%) rotate(-2deg); display: grid; gap: 14px; padding: 18px; border-radius: 22px; background: #fff; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 18px 40px rgba(41, 47, 59, .12); }
.mfc-coart__head { display: flex; align-items: center; gap: 12px; }
.mfc-coart__logo { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 14px; background: var(--heading); }
.mfc-coart__logo .mf-bolt { width: 22px; height: 22px; }
.mfc-coart__name { display: flex; flex-direction: column; min-width: 0; }
.mfc-coart__name strong { font: 800 .9375rem/1.2 var(--font-display); color: var(--heading); }
.mfc-coart__name small { font-size: .75rem; color: var(--muted); }
.mfc-coart__rows { display: grid; gap: 8px; margin: 0; padding: 12px; border-radius: 14px; background: var(--surface); list-style: none; }
.mfc-coart__rows li { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: .75rem; color: var(--muted); }
.mfc-coart__rows b { font: 600 .75rem/1.2 var(--font-mono); color: var(--heading); }
.mfc-coart__flags { display: flex; gap: 6px; flex-wrap: wrap; }
.mfc-coart__flags span { padding: 4px 9px; border-radius: var(--r-pill); background: var(--surface-2); font: 700 .6875rem/1.2 var(--font-body); color: var(--heading); }
.mfc-coart .mf-art__chip { z-index: 2; }
.mfc-coart__chip--a { left: 0; top: 8%; }
.mfc-coart__chip--b { right: 2%; bottom: 2%; }
@media (max-width: 575.98px) { .mfc-coart { max-width: 340px; } .mfc-coart .mf-art__chip { padding: 8px 10px; font-size: .75rem; } }

.mfc-story { display: grid; gap: 32px; }
@media (min-width: 992px) { .mfc-story { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 64px; align-items: start; } }
.mfc-story__text p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 18px; }
.mfc-story__text p:last-child { margin-bottom: 0; }
.mfc-steps-card h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 8px; font: 800 1.375rem/1.2 var(--font-display); color: var(--heading); }
.mfc-steps-card .mf-steps { margin-top: 6px; }
.mfc-steps-card .mf-step::before { border-radius: 12px; box-shadow: none; border: 1.5px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box; transform: rotate(-6deg); }
.mfc-steps-card .mf-step:not(:last-child)::after { background: linear-gradient(180deg, var(--border-strong), transparent); }
.mfc-steps-card .mf-step__text strong { display: block; margin: 6px 0 4px; font: 700 1rem/1.35 var(--font-display); color: var(--heading); }
.mfc-steps-card .mf-step__text { font-size: .9375rem; line-height: 1.6; }

.mfc-values { display: grid; gap: 28px; }
@media (min-width: 992px) { .mfc-values { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; } }
.mfc-values__media { position: relative; border-radius: 28px; overflow: hidden; background: #fff; box-shadow: var(--mfc-ring), 0 24px 60px rgba(41, 47, 59, .08); }
.mfc-values__media img { display: block; width: 100%; height: auto; }
.mfc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.mfc-chips > span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px 7px 10px; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); font: 600 .8125rem/1.2 var(--font-body); color: var(--heading); }
.mfc-chips > span .mf-bolt { width: 12px; height: 12px; }
.mfc-reasons { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .mfc-reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
.mfc-reason { position: relative; display: flex; gap: 14px; padding: 20px; border-radius: 20px; background: #fff; box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .03); font-size: .9375rem; line-height: 1.6; color: var(--body); }
.mfc-reason strong { display: block; margin-bottom: 4px; font: 700 1rem/1.35 var(--font-display); color: var(--heading); }
.mfc-reason__n { position: absolute; top: 16px; right: 18px; font: 800 1.25rem/1 var(--font-display); color: transparent; -webkit-text-stroke: 1.2px var(--border-strong); }
.mfc-reason .mfc-ico { margin-top: 2px; }
.mfc-reason > div { min-width: 0; padding-right: 34px; }

.mfc-buyers { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 768px) { .mfc-buyers { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 1200px) { .mfc-buyers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.mfc-buyer { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 18px; background: #fff; box-shadow: var(--mfc-ring); font-size: .9375rem; line-height: 1.6; color: var(--body); }

.mfc-company { display: grid; gap: 24px; }
@media (min-width: 992px) { .mfc-company { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: start; } }
.mfc-company__text p { font-size: 1.0625rem; line-height: 1.7; }
.mfc-dl { display: grid; margin: 0; padding: 0; list-style: none; }
.mfc-dl li { display: grid; gap: 4px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: .9375rem; line-height: 1.55; color: var(--body); }
.mfc-dl li:first-child { padding-top: 0; }
.mfc-dl li:last-child { border-bottom: 0; padding-bottom: 0; }
.mfc-dl strong { font: 700 .75rem/1.3 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 576px) { .mfc-dl li { grid-template-columns: 190px minmax(0, 1fr); gap: 16px; } }
.mfc-dl a { color: var(--heading); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(248, 58, 90, .45); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Platform ladders (about + contact) */
.mfc-ladders { display: grid; gap: 14px; }
@media (min-width: 576px) { .mfc-ladders { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1200px) { .mfc-ladders { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; } }
.mfc-ladder { display: flex; flex-direction: column; gap: 14px; padding: 20px; border-radius: 20px; background: #fff; box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .03); }
.mfc-ladder__head { display: flex; align-items: center; gap: 12px; }
.mfc-ladder__head h3, .mfc-ladder__head h4 { margin: 0; font: 800 1.125rem/1.2 var(--font-display); color: var(--heading); }
.mfc-ladder__links { display: flex; flex-wrap: wrap; gap: 8px; }
.mfc-ladder__links a { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 7px 13px; border-radius: var(--r-pill); background: var(--surface); color: var(--heading); font: 600 .875rem/1.2 var(--font-body); text-decoration: none; }
.mfc-ladder__links a:hover { background: var(--cta-tint); box-shadow: 0 0 0 1.5px var(--cta); color: var(--heading); }
.mfc-ladder__links .mfc-sep { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* --------------------------------------------------------------------------
   8. Blog index
   -------------------------------------------------------------------------- */
.mfc-blog-hero .mfc-title em { font-style: normal; }
.mfc-blog-tools { display: grid; gap: 14px; margin-top: 8px; }
@media (min-width: 768px) { .mfc-blog-tools { grid-template-columns: minmax(0, 360px) minmax(0, 1fr); align-items: center; gap: 20px; } }
.mfc-blog-tools .mfc-search__input { min-height: 52px; border-radius: 14px; }
.mfc-blog-tools .mfc-search__icon { top: 26px; }
.mfc-cats { display: flex; gap: 8px; margin: 0 -16px; padding: 2px 16px 6px; overflow-x: auto; scrollbar-width: none; }
.mfc-cats::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .mfc-cats { margin: 0; padding: 2px; flex-wrap: wrap; overflow: visible; } }
.mfc-cat { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 16px; border: 0; border-radius: var(--r-pill); background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); font: 600 .875rem/1.2 var(--font-body); cursor: pointer; white-space: nowrap; }
.mfc-cat:hover { box-shadow: 0 0 0 1.5px var(--border-strong); }
.mfc-cat[aria-pressed="true"] { background: var(--heading); color: #fff; box-shadow: 0 3px 0 #12151B; }
.mfc-cat__n { font: 600 .75rem/1 var(--font-mono); opacity: .7; }
.mfc-blog-meta { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px; font-size: .875rem; color: var(--muted); }
.mfc-blog-meta i { color: var(--heading-alt); }

.mfc-feature { position: relative; display: grid; overflow: hidden; border-radius: 28px; background: #fff; box-shadow: var(--mfc-ring), 0 24px 60px rgba(41, 47, 59, .08); transition: box-shadow .2s ease; }
.mfc-feature:hover { box-shadow: var(--mfc-lift); }
@media (min-width: 992px) { .mfc-feature { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); } }
.mfc-feature__media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-2); overflow: hidden; }
.mfc-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.mfc-feature:hover .mfc-feature__media img { transform: scale(1.03); }
@media (min-width: 992px) { .mfc-feature__media { aspect-ratio: auto; min-height: 380px; } }
.mfc-feature__body { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 24px 22px 26px; }
@media (min-width: 992px) { .mfc-feature__body { padding: 44px 44px 40px; justify-content: center; } }
.mfc-feature__body::before { content: ""; position: absolute; top: 0; left: 22px; width: 64px; height: 3px; border-radius: 0 0 3px 3px; background: var(--brand-grad); }
@media (min-width: 992px) { .mfc-feature__body::before { left: 44px; } }
.mfc-feature__labels { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.mfc-feature__eyebrow { display: inline-flex; align-items: center; gap: 8px; font: 700 .75rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--heading); }
.mfc-feature__eyebrow .mf-bolt { width: 14px; height: 14px; }
.mfc-feature__title { margin: 0; font: 800 clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem)/1.15 var(--font-display); letter-spacing: -.025em; }
.mfc-feature__title a { color: var(--heading); text-decoration: none; }
.mfc-feature__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.mfc-feature__title a:focus-visible { outline: none !important; }
.mfc-feature:focus-within { box-shadow: 0 0 0 3px var(--focus); }
.mfc-feature__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; font: 700 .9375rem/1.2 var(--font-body); color: var(--heading); }
.mfc-feature__cta .mfc-arrow { background: var(--cta-gradient); color: #fff; }

.mfc-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: var(--r-pill); background: var(--surface-2); color: var(--heading); font: 600 .75rem/1.4 var(--font-body); white-space: nowrap; }
.mfc-pill--instagram, .mfc-pill--ig { background: var(--mfc-blush); }
.mfc-pill--tiktok { background: var(--mfc-sky); }
.mfc-pill--facebook { background: var(--mfc-lilac); }
.mfc-pill--twitter, .mfc-pill--x { background: var(--surface-2); }
.mfc-pill--social-media { background: var(--mfc-butter); }

.mfc-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin: 0; font-size: .8125rem; color: var(--muted); }
.mfc-meta__item { display: inline-flex; align-items: center; gap: 7px; }
.mfc-meta__item i { font-size: .8rem; color: #8A909C; }
.mfc-avatar { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--mfc-lilac); color: var(--heading-alt); font: 800 .75rem/1 var(--font-display); }

.mfc-section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 8px 16px; margin: 56px 0 22px; }
.mfc-section-head h2 { margin: 0; font: 800 clamp(1.5rem, 1.2rem + 1.2vw, 2rem)/1.15 var(--font-display); color: var(--heading); letter-spacing: -.025em; }
.mfc-section-head .mf-eyebrow { margin-bottom: 8px; }
.mfc-section-head__count { margin: 0; font: 600 .8125rem/1.2 var(--font-mono); color: var(--muted); }

.mfc-cards { display: grid; gap: 20px; }
@media (min-width: 640px) { .mfc-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 992px) { .mfc-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.mfc-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 20px; background: #fff; box-shadow: var(--mfc-ring), 0 2px 0 rgba(41, 47, 59, .03); transition: box-shadow .2s ease, transform .2s var(--ease); }
.mfc-card:hover { box-shadow: var(--mfc-lift); transform: translateY(-3px); }
.mfc-card:focus-within { box-shadow: 0 0 0 3px var(--focus); }
.mfc-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.mfc-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.mfc-card:hover .mfc-card__media img { transform: scale(1.04); }
.mfc-card__media .mfc-pill { position: absolute; left: 14px; top: 14px; z-index: 1; box-shadow: 0 2px 8px rgba(41, 47, 59, .12); }
.mfc-card__body { display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; padding: 18px 20px 20px; }
.mfc-card__title { margin: 0; font: 700 1.1875rem/1.3 var(--font-display); letter-spacing: -.015em; }
.mfc-card__title a { color: var(--heading); text-decoration: none; }
.mfc-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.mfc-card__title a:focus-visible { outline: none !important; }
.mfc-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.mfc-card:hover .mfc-arrow { background: var(--cta-gradient); color: #fff; }
@media (prefers-reduced-motion: reduce) { .mfc-card, .mfc-card__media img, .mfc-feature__media img { transition: none; } .mfc-card:hover { transform: none; } .mfc-card:hover .mfc-card__media img, .mfc-feature:hover .mfc-feature__media img { transform: none; } }

/* Pagination (partials/blog_pager.php) */
.mfc-pager { margin-top: 44px; }
.mfc-pager ul { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.mfc-pager a, .mfc-pager span.mfc-pager__cur { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; background: #fff; box-shadow: 0 0 0 1px var(--border-strong), var(--press); color: var(--heading); font: 700 .9375rem/1 var(--font-mono); text-decoration: none; }
.mfc-pager a:hover { background: var(--surface); color: var(--heading); }
.mfc-pager span.mfc-pager__cur { background: var(--heading); color: #fff; box-shadow: 0 3px 0 #12151B; }
.mfc-pager__edge a { gap: 8px; font-family: var(--font-body); }

.mfc-blog-empty { max-width: 560px; margin: 0 auto; padding: 48px 24px; border-radius: 28px; background: var(--surface); text-align: center; }
.mfc-blog-empty h2 { font: 800 1.5rem/1.2 var(--font-display); margin: 16px 0 8px; }

/* --------------------------------------------------------------------------
   9. Blog article
   -------------------------------------------------------------------------- */
.mfc-article-hero { padding-bottom: 120px; }
@media (min-width: 992px) { .mfc-article-hero { padding-bottom: 180px; } }
.mfc-article-hero .mfc-hero__copy { max-width: 880px; margin-inline: auto; text-align: center; }
.mfc-article-hero .mfc-crumbs ol { justify-content: center; }
.mfc-article-hero .mfc-title { font-size: clamp(2rem, 1.3rem + 3vw, 3.25rem); }
.mfc-article-hero .mfc-meta { justify-content: center; font-size: .875rem; gap: 10px 20px; }
.mfc-article-hero .mfc-pill { margin-bottom: 16px; }
.mfc-figure { position: relative; max-width: 1080px; margin: -96px auto 0; padding: 0; }
@media (min-width: 992px) { .mfc-figure { margin-top: -148px; } }
.mfc-figure img { display: block; width: 100%; height: auto; border-radius: 24px; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 30px 70px rgba(41, 47, 59, .14); background: var(--surface-2); }
@media (min-width: 992px) { .mfc-figure img { border-radius: 32px; } }
.mfc-figure::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 120px; height: 4px; transform: translate(-50%, 0); border-radius: 4px 4px 0 0; background: var(--brand-grad); }

.mfc-article { display: grid; gap: 0; padding: 40px 0 64px; }
@media (min-width: 1200px) { .mfc-article { grid-template-columns: 64px minmax(0, 680px) 260px; gap: 56px; justify-content: center; padding: 64px 0 88px; } }
@media (min-width: 992px) and (max-width: 1199.98px) { .mfc-article { grid-template-columns: minmax(0, 680px) 240px; gap: 48px; justify-content: center; padding: 56px 0 80px; } .mfc-article__rail { display: none; } }
.mfc-article__main { min-width: 0; width: 100%; max-width: 680px; margin-inline: auto; }
.mfc-article__rail { display: none; }
@media (min-width: 1200px) { .mfc-article__rail { display: block; } }
.mfc-share { position: sticky; top: var(--mfc-sticky-top); display: grid; justify-items: center; gap: 10px; }
.mfc-share__label { font: 700 .6875rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mfc-share__list { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.mfc-share__btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: #fff; box-shadow: 0 0 0 1px var(--border-strong), var(--press); color: var(--heading); text-decoration: none; transition: background-color .15s ease, transform .12s ease; }
.mfc-share__btn:hover { background: var(--surface); color: var(--heading); }
.mfc-share__btn:active { transform: translateY(2px); box-shadow: 0 0 0 1px var(--border-strong); }
.mfc-share__btn svg { width: 1em; height: 1em; }
.mfc-share--inline { position: static; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.mfc-share--inline .mfc-share__list { display: flex; flex-wrap: wrap; }
@media (min-width: 1200px) { .mfc-share--inline { display: none; } }
.mfc-article__toc { display: none; }
@media (min-width: 992px) { .mfc-article__toc { display: block; } }

/* Article body: the first heading inside a post body often restates the title; show it as a deck line */
.mfc-article .mfc-prose h1 { margin: 0 0 .8em; font: 700 clamp(1.1875rem, 1.05rem + .6vw, 1.4375rem)/1.35 var(--font-display); color: var(--heading-alt); letter-spacing: -.015em; }
.mfc-article .mfc-prose .post-meta { margin-bottom: 1.6em; padding: 12px 16px; border-radius: 14px; background: var(--surface); font-size: .875rem; line-height: 1.6; color: var(--muted); }
.mfc-article .mfc-prose .post-meta strong { color: var(--heading); }
@media (max-width: 575.98px) { .mfc-article-hero .mfc-crumbs li[aria-current] { display: none; } .mfc-article-hero .mfc-crumbs li:nth-last-child(2) i { display: none; } }

/* Prev / next */
.mfc-postnav { display: grid; gap: 12px; margin-top: 40px; }
@media (min-width: 576px) { .mfc-postnav { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mfc-postnav a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 18px; background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); text-decoration: none; }
.mfc-postnav a:hover { box-shadow: var(--mfc-lift); color: var(--heading); }
.mfc-postnav a:hover .mfc-arrow { background: var(--cta-gradient); color: #fff; }
.mfc-postnav__next { justify-content: flex-end; text-align: right; }
@media (min-width: 576px) { .mfc-postnav__next:only-child { grid-column: 2; } }
.mfc-postnav small { display: block; font: 700 .6875rem/1.2 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mfc-postnav strong { display: block; font: 700 1rem/1.3 var(--font-display); }

/* End-of-article CTA card (light) */
.mfc-endcta { position: relative; overflow: hidden; margin-top: 44px; padding: 26px 22px; border-radius: 24px; background: linear-gradient(135deg, #FFF1F6, #FFF4EC); box-shadow: 0 0 0 1px rgba(248, 58, 90, .14); }
.mfc-endcta::after { content: ""; position: absolute; right: -30px; bottom: -50px; width: 190px; height: 190px; opacity: .12; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfc-endcta > * { position: relative; z-index: 1; }
.mfc-endcta h2 { margin: 0 0 8px; font: 800 1.5rem/1.2 var(--font-display); color: var(--heading); letter-spacing: -.02em; }
.mfc-endcta p { margin: 0 0 18px; max-width: 480px; }
@media (min-width: 768px) { .mfc-endcta { padding: 32px 34px; } }

/* --------------------------------------------------------------------------
   10. 404
   -------------------------------------------------------------------------- */
.mfc-404 { position: relative; overflow: hidden; isolation: isolate; padding: 40px 0 64px; background:
    radial-gradient(60% 70% at 10% 0%, #FFF1F6 0%, rgba(255, 241, 246, 0) 60%),
    radial-gradient(60% 70% at 100% 20%, #FFF4EC 0%, rgba(255, 244, 236, 0) 65%), #fff; }
.mfc-404::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(41, 47, 59, .09) 1px, transparent 1.2px) 0 0 / 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); }
@media (min-width: 992px) { .mfc-404 { padding: 72px 0 104px; } }
.mfc-404__grid { display: grid; gap: 28px; align-items: center; }
@media (min-width: 992px) { .mfc-404__grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 64px; } }
.mfc-404__art { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1 / .78; margin-inline: auto; }
.mfc-404__tile { position: absolute; inset: 12% 10% 6% 10%; border-radius: 28%; background: var(--mfc-lilac); transform: rotate(-7deg); }
.mfc-404__tile--b { inset: 18% 4% 12% 22%; background: var(--mfc-blush); opacity: .75; transform: rotate(8deg); }
.mfc-404__num { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: flex; align-items: center; gap: .04em; font: 800 clamp(5.5rem, 3rem + 11vw, 9.5rem)/1 var(--font-display); letter-spacing: -.06em; color: var(--heading); }
.mfc-404__zero { position: relative; display: inline-grid; place-items: center; width: .74em; height: .92em; border-radius: 30%; background: #fff; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 16px 36px rgba(41, 47, 59, .14); transform: rotate(-6deg); }
.mfc-404__zero .mf-bolt { width: 50%; height: 50%; transform: rotate(6deg); }
.mfc-404__art .mf-art__chip { z-index: 2; }
.mfc-404__chip--a { left: 0; top: 10%; }
.mfc-404__chip--b { right: 0; bottom: 12%; }
.mfc-404__eyebrow { color: var(--cta-edge); }
.mfc-404__eyebrow i { color: var(--cta-edge); }
.mfc-404__reasons { margin: 0 0 26px; }
.mfc-404__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
@media (max-width: 575.98px) { .mfc-404__actions .mf-btn { flex: 1 1 100%; } }
.mfc-404__popular p { margin: 0 0 12px; font: 700 .75rem/1 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mfc-404__links { display: flex; flex-wrap: wrap; gap: 8px; }
.mfc-404__links a { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 6px 14px 6px 6px; border-radius: 14px; background: #fff; box-shadow: var(--mfc-ring); color: var(--heading); font: 600 .9375rem/1.2 var(--font-body); text-decoration: none; }
.mfc-404__links a:hover { box-shadow: 0 0 0 1.5px var(--cta), 0 4px 12px rgba(248, 58, 90, .12); color: var(--heading); }
.mfc-404__links .mf-plat { width: 32px; height: 32px; flex-basis: 32px; border-radius: 10px; font-size: .9rem; }
.mfc-404__links .mf-plat--support { background: var(--heading); }

/* --------------------------------------------------------------------------
   11. Section rhythm on content pages
   -------------------------------------------------------------------------- */
.mfc-sec { padding-block: 56px; }
.mfc-sec--tight { padding-block: 40px; }
.mfc-sec--warm { background: var(--surface-warm) radial-gradient(rgba(41, 47, 59, .06) 1px, transparent 1.2px) 0 0 / 22px 22px; }
.mfc-sec--surface { background: var(--surface); }
@media (min-width: 992px) { .mfc-sec { padding-block: 88px; } .mfc-sec--tight { padding-block: 56px; } }
.mfc-sec--flush-top { padding-top: 0 !important; }
.mfc-hero + .mfc-sec { padding-top: 24px; }
@media (min-width: 992px) { .mfc-hero + .mfc-sec { padding-top: 32px; } }
.mfc-search__status:empty { display: none; }
.mfc-rule { padding-block: 8px; }

/* Contact extras */
.mfc-wa { color: #1A9E4B; }
.mfc-contact__formwrap { margin-top: 20px; }
.mfc-contact__side { display: grid; gap: 16px; }
.mfc-include { margin-top: 0; }
.mfc-note--spaced { margin-top: 24px; }
.mfc-chatart__avatar .mf-bolt { width: 16px; height: 16px; }
.mfc-chatart__bubble { width: 78%; }
.mfc-chatart__bubble--me { width: 62%; }
.mfc-reasons--spaced { margin-top: 40px; }
@media (min-width: 992px) { .mfc-reasons--spaced { margin-top: 56px; } }
@media (max-width: 575.98px) {
  .mfc-chatart__chip--a { display: none; }
  .mfc-note { flex-direction: column; gap: 12px; }
  .mfc-guide .mfc-panel h2 { font-size: 1.1875rem; }
}
@media (max-width: 575.98px) { .mfc-coart__chip--b { display: none; } }
.mfc [hidden] { display: none !important; }
.mfc-blog-cta { margin-top: 56px; }
@media (min-width: 992px) { .mfc-blog-cta { margin-top: 88px; } }
.mfc-blog-hero .mfc-hero__copy { max-width: 860px; }
.mfc-section-head--flush { margin-top: 0; }
@media (min-width: 1200px) { .mfc-article--no-toc { grid-template-columns: 64px minmax(0, 680px) 64px; } }
@media (min-width: 992px) and (max-width: 1199.98px) { .mfc-article--no-toc { grid-template-columns: minmax(0, 680px); } }
.mfc-figure { max-width: 1040px; }
.mfc-figure img { aspect-ratio: 16 / 8; object-fit: cover; height: auto; }
@media (max-width: 767.98px) { .mfc-figure img { aspect-ratio: 16 / 10; } }
.mfc-doc__sec a { color: var(--heading); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(248, 58, 90, .45); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.mfc-doc__sec a:hover { color: var(--cta-edge); text-decoration-color: var(--cta); }
.mfc-doc__sec ul > li::marker { color: var(--cta); }
.mfc-doc__sec ol > li::marker { color: var(--heading); font-weight: 700; }
.mfc-doc__sec strong { color: var(--heading); }

/* ==========================================================================
   BLOG V2 (editorial): generated covers, masthead, bento, archive rhythm,
   platform collections, growth band, article. Prefix .mfb-. Helpers:
   app/Views/partials/mf_blog_helpers.php
   ========================================================================== */
.mfb {
  --mfb-ig: #FFEAF2; --mfb-tt: #E6F6FA; --mfb-fb: #E7F0FF; --mfb-x: #EEF0F4; --mfb-gen: #FFF4D6;
  --mfb-ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Generated cover -------------------------------------------------- */
.mfb-cover {
  position: relative; overflow: hidden; isolation: isolate; container-type: inline-size;
  width: 100%; aspect-ratio: 16 / 10; border-radius: inherit;
  background: linear-gradient(140deg, var(--c1, #FFEAF2) 0%, var(--c2, #FFF4EC) 100%);
  color: var(--heading);
}
.mfb-cover--sm { aspect-ratio: 1 / 1; }
.mfb-cover--img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mfb-ease); }
.mfb-cover__dots { position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(41, 47, 59, .13) 1px, transparent 1.3px) 0 0 / 16px 16px; -webkit-mask-image: linear-gradient(200deg, #000 10%, transparent 70%); mask-image: linear-gradient(200deg, #000 10%, transparent 70%); }
.mfb-cover__tile { position: absolute; z-index: -1; right: -8%; top: 12%; width: 62%; aspect-ratio: 1; border-radius: 28%; background: rgba(255, 255, 255, .62); transform: rotate(var(--rot, -6deg)); transition: transform .5s var(--mfb-ease); }
.mfb-cover__bolt { position: absolute; z-index: -1; right: -6%; bottom: -14%; width: 58%; aspect-ratio: 1; opacity: .16; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; transition: transform .6s var(--mfb-ease); }
.mfb-cover__chart { position: absolute; right: 6%; bottom: 0; width: 52%; height: auto; transition: transform .5s var(--mfb-ease); }
.mfb-cover__bar { fill: rgba(255, 255, 255, .78); }
.mfb-cover__bar.is-hot { fill: #FFD3E2; }
.mfb-cover__plat { position: absolute; left: 6.5cqi; top: 6.5cqi; display: grid; place-items: center; width: 11cqi; height: 11cqi; min-width: 30px; min-height: 30px; border-radius: 30%; color: #fff; font-size: max(14px, 5.2cqi); box-shadow: 0 0 0 max(3px, 1cqi) rgba(255, 255, 255, .75), 0 6px 18px rgba(41, 47, 59, .12); transform: rotate(-6deg); }
.mfb-cover__plat svg { width: 1em; height: 1em; }
.mfb-cover__plat .mf-bolt { width: 52%; height: 52%; background: #fff; }
.mfb-cover__words { position: absolute; z-index: 2; left: 6.5cqi; bottom: 7cqi; max-width: 62%; font: 800 max(15px, 8.4cqi)/.98 var(--font-display); letter-spacing: -.04em; color: var(--heading); text-wrap: balance; overflow-wrap: break-word; }
.mfb-cover__words em { font-style: normal; background: var(--cta-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mfb-cover__spark { position: absolute; right: 7cqi; top: 7cqi; width: 7cqi; height: 7cqi; min-width: 16px; min-height: 16px; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; transition: transform .4s var(--mfb-ease); }
/* ink: indigo night with a brand glow */
.mfb-cover--ink { background: radial-gradient(70% 90% at 90% 100%, rgba(250, 21, 147, .45), transparent 60%), radial-gradient(60% 70% at 100% 0%, rgba(251, 92, 6, .28), transparent 60%), var(--dark-indigo); color: #fff; }
.mfb-cover--ink .mfb-cover__words { color: #fff; }
.mfb-cover--ink .mfb-cover__dots { background-image: radial-gradient(rgba(255, 255, 255, .16) 1px, transparent 1.3px); }
.mfb-cover--ink .mfb-cover__tile { background: rgba(255, 255, 255, .06); }
.mfb-cover--ink .mfb-cover__bar { fill: rgba(255, 255, 255, .12); }
.mfb-cover--ink .mfb-cover__bar.is-hot { fill: rgba(250, 21, 147, .45); }
.mfb-cover--ink .mfb-cover__bolt { opacity: .22; }
/* grad: the logo gradient itself */
.mfb-cover--grad { background: linear-gradient(135deg, #FA1593 0%, #FB5C06 100%); }
.mfb-cover--grad .mfb-cover__words { color: #fff; text-shadow: 0 2px 12px rgba(120, 14, 50, .25); }
.mfb-cover--grad .mfb-cover__words em { background: none; color: #FFF4D6; }
.mfb-cover--grad .mfb-cover__dots { background-image: radial-gradient(rgba(255, 255, 255, .28) 1px, transparent 1.3px); }
.mfb-cover--grad .mfb-cover__tile { background: rgba(255, 255, 255, .14); }
.mfb-cover--grad .mfb-cover__bar { fill: rgba(255, 255, 255, .3); }
.mfb-cover--grad .mfb-cover__bar.is-hot { fill: rgba(255, 255, 255, .6); }
.mfb-cover--grad .mfb-cover__bolt { background: #fff; opacity: .16; }
.mfb-cover--grad .mfb-cover__spark { background: #fff; }
.mfb-cover--grad polyline { stroke: #fff; }
/* tile: pastel with a big tilted paper card behind the words */
.mfb-cover--tile .mfb-cover__tile { right: auto; left: -6%; top: auto; bottom: -22%; width: 78%; background: #fff; box-shadow: 0 20px 40px rgba(41, 47, 59, .10); }
.mfb-cover--tile .mfb-cover__chart { width: 44%; right: 4%; }
/* small covers: platform + chart only */
.mfb-cover--sm .mfb-cover__words { display: none; }
.mfb-cover--sm .mfb-cover__plat { left: 50%; top: 42%; width: 34cqi; height: 34cqi; font-size: 16cqi; transform: translate(-50%, -50%) rotate(-6deg); }
.mfb-cover--sm .mfb-cover__chart { width: 90%; right: 5%; opacity: .9; }
.mfb-cover--sm .mfb-cover__spark { width: 14cqi; height: 14cqi; }
.mfb-cover--sm .mfb-cover__tile { width: 80%; right: -20%; top: -10%; }
/* hover: art shifts */
.mfb-hover:hover .mfb-cover__chart { transform: translateY(-4%); }
.mfb-hover:hover .mfb-cover__bolt { transform: rotate(-8deg) scale(1.06); }
.mfb-hover:hover .mfb-cover__tile { transform: rotate(calc(var(--rot, -6deg) - 5deg)) scale(1.03); }
.mfb-hover:hover .mfb-cover__spark { transform: translate(2px, -2px) rotate(10deg); }
.mfb-hover:hover .mfb-cover--img img { transform: scale(1.04); }
@media (prefers-reduced-motion: reduce) {
  .mfb-cover__chart, .mfb-cover__bolt, .mfb-cover__tile, .mfb-cover__spark, .mfb-cover--img img { transition: none; }
  .mfb-hover:hover .mfb-cover__chart, .mfb-hover:hover .mfb-cover__bolt, .mfb-hover:hover .mfb-cover__spark, .mfb-hover:hover .mfb-cover--img img { transform: none; }
  .mfb-hover:hover .mfb-cover__tile { transform: rotate(var(--rot, -6deg)); }
}

/* ---- Chips (platform colour identity) --------------------------------- */
.mfb-chip { display: inline-flex; align-items: center; gap: 7px; padding: 4px 11px 4px 9px; border-radius: var(--r-pill); background: var(--mfb-gen); color: var(--heading); font: 700 .75rem/1.4 var(--font-body); white-space: nowrap; position: relative; z-index: 3; }
.mfb-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-grad); }
.mfb-chip--instagram { background: var(--mfb-ig); }
.mfb-chip--instagram .mfb-chip__dot { background: var(--ig-gradient); }
.mfb-chip--tiktok { background: var(--mfb-tt); }
.mfb-chip--tiktok .mfb-chip__dot { background: #111; box-shadow: -1.5px -1.5px 0 #25F4EE, 1.5px 1.5px 0 #FE2C55; }
.mfb-chip--facebook { background: var(--mfb-fb); }
.mfb-chip--facebook .mfb-chip__dot { background: #1877F2; }
.mfb-chip--twitter { background: var(--mfb-x); }
.mfb-chip--twitter .mfb-chip__dot { background: #111; }
.mfb-chip--link { min-height: 44px; padding: 6px 14px 6px 6px; gap: 10px; font-size: .875rem; text-decoration: none; box-shadow: 0 2px 0 rgba(41, 47, 59, .06); transition: transform .15s ease, box-shadow .15s ease; }
.mfb-chip--link:hover { color: var(--heading); transform: translateY(-1px); box-shadow: 0 0 0 1.5px var(--heading), 0 2px 0 rgba(41, 47, 59, .08); }
.mfb-chip__icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: #fff; font-size: .9rem; }
.mfb-chip__icon svg { width: 1em; height: 1em; }
.mfb-chip__n { font: 600 .75rem/1 var(--font-mono); color: var(--muted); }
.mfb-bg-general { background: var(--brand-grad); }
.mfb-bg-general .mf-bolt { width: 55%; height: 55%; background: #fff; }

/* ---- Masthead ---------------------------------------------------------- */
.mfb-mast { position: relative; overflow: hidden; isolation: isolate; padding: 26px 0 32px; background: radial-gradient(70% 90% at 0% 0%, #FFF1F6 0%, rgba(255, 241, 246, 0) 60%), radial-gradient(60% 80% at 100% 10%, #FFF4EC 0%, rgba(255, 244, 236, 0) 65%), #fff; }
.mfb-mast::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(41, 47, 59, .09) 1px, transparent 1.2px) 0 0 / 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); }
.mfb-mast__bolt { position: absolute; z-index: -1; right: -60px; top: -30px; width: 300px; height: 300px; opacity: .07; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfb-mast__grid { display: grid; gap: 14px; align-items: end; }
.mfb-mast__title { margin: 0; font: 800 clamp(2.25rem, 1.2rem + 4.4vw, 4.5rem)/1.02 var(--font-display); letter-spacing: -.045em; color: var(--heading); max-width: 13ch; }
.mfb-mast__title em { font-style: normal; }
.mfb-mast__lede { margin: 0 0 10px; font-size: 1.0625rem; line-height: 1.65; color: var(--body); }
.mfb-mast__index { display: inline-flex; align-items: center; gap: 8px; margin: 0; font: 600 .8125rem/1 var(--font-mono); color: var(--muted); }
.mfb-mast__index i { color: var(--heading-alt); }
.mfb-chips { display: flex; gap: 10px; margin: 24px -16px 0; padding: 18px 16px 4px; border-top: 1px solid var(--border); overflow-x: auto; scrollbar-width: none; }
.mfb-chips::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .mfb-chips { flex-wrap: wrap; overflow: visible; margin-inline: 0; padding-inline: 0; } }
@media (min-width: 992px) {
  .mfb-mast { padding: 40px 0 36px; }
  .mfb-mast__bolt { width: 460px; height: 460px; right: -40px; top: -40px; }
  .mfb-mast__grid { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 64px; }
  .mfb-mast__side { padding-bottom: 8px; }
}

/* shared */
.mfb-stretch { color: inherit; text-decoration: none; }
.mfb-stretch:hover { color: inherit; }
.mfb-stretch::after { content: ""; position: absolute; inset: 0; z-index: 2; }
.mfb-stretch:focus-visible { outline: none !important; }
.mfb-hover:focus-within { box-shadow: 0 0 0 3px var(--focus) !important; }
.mfb-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; font-size: .8125rem; color: var(--muted); }
.mfb-meta__item { display: inline-flex; align-items: center; gap: 7px; }
.mfb-meta__item i { color: #8A909C; font-size: .8rem; }
.mfb-kicker { display: inline-flex; align-items: center; gap: 7px; font: 800 .6875rem/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; color: var(--heading); }
.mfb-kicker .mf-bolt { width: 14px; height: 14px; }

/* ---- Bento ------------------------------------------------------------- */
.mfb-bento-wrap { padding: 28px 0 8px; }
.mfb-bento { display: grid; gap: 20px; }
@media (min-width: 992px) { .mfb-bento { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 28px; align-items: stretch; } .mfb-bento--solo { grid-template-columns: minmax(0, 1fr); } .mfb-bento-wrap { padding-top: 40px; } }
.mfb-feature { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 28px; background: #fff; box-shadow: 0 0 0 1px var(--border), 0 24px 60px rgba(41, 47, 59, .08); transition: box-shadow .25s ease, transform .25s var(--mfb-ease); }
.mfb-feature:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--border-strong), 0 30px 70px rgba(41, 47, 59, .12); }
.mfb-feature__cover { border-radius: 28px 28px 0 0; overflow: hidden; }
.mfb-feature__body { display: flex; flex-direction: column; gap: 14px; padding: 22px 22px 24px; flex: 1 1 auto; }
@media (min-width: 768px) { .mfb-feature__body { padding: 28px 32px 30px; } }
.mfb-feature__labels { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.mfb-feature__title { margin: 0; font: 800 clamp(1.625rem, 1.2rem + 1.7vw, 2.5rem)/1.1 var(--font-display); letter-spacing: -.03em; color: var(--heading); }
.mfb-feature__dek { margin: 0; font-size: 1.0625rem; line-height: 1.6; color: var(--body); max-width: 60ch; }
.mfb-feature__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.mfb-readmore { display: inline-flex; align-items: center; gap: 10px; font: 700 .9375rem/1.2 var(--font-body); color: var(--heading); }
.mfb-readmore .mfc-arrow { background: var(--cta-gradient); color: #fff; }

.mfb-stack { display: flex; flex-direction: column; gap: 14px; }
.mfb-stack__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding: 4px 4px 2px; }
.mfb-stack__head .mf-eyebrow { margin-bottom: 6px; }
.mfb-stack__head h2 { margin: 0; font: 800 1.5rem/1.15 var(--font-display); letter-spacing: -.025em; color: var(--heading); }
.mfb-stack__count { margin: 0; font: 600 .75rem/1.3 var(--font-mono); color: var(--muted); white-space: nowrap; }
.mfb-side { position: relative; display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; align-items: center; padding: 12px; border-radius: 22px; background: #fff; box-shadow: 0 0 0 1px var(--border); transition: box-shadow .2s ease, transform .2s var(--mfb-ease); flex: 1 1 0; }
.mfb-side:hover { transform: translateX(3px); box-shadow: 0 0 0 1px var(--border-strong), 0 14px 30px rgba(41, 47, 59, .08); }
.mfb-side__cover { border-radius: 16px; overflow: hidden; }
.mfb-side__body { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 0; }
.mfb-side__title { margin: 0; font: 700 1.0625rem/1.3 var(--font-display); letter-spacing: -.015em; color: var(--heading); }
@media (min-width: 1200px) { .mfb-side { grid-template-columns: 132px minmax(0, 1fr); gap: 18px; } .mfb-side__title { font-size: 1.125rem; } }

/* ---- Growth band ------------------------------------------------------- */
.mfb-band-wrap { padding: 40px 0 8px; }
@media (min-width: 992px) { .mfb-band-wrap { padding-top: 56px; } }
.mfb-band { position: relative; overflow: hidden; isolation: isolate; display: grid; gap: 22px; padding: 26px 20px; border-radius: 28px; background: var(--dark-indigo); color: #C9CBD6; }
.mfb-band::before { content: ""; position: absolute; z-index: -1; left: -60px; bottom: -120px; width: 320px; height: 320px; opacity: .12; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfb-band::after { content: ""; position: absolute; z-index: -1; right: 10%; top: -40%; width: 50%; height: 140%; border-radius: 50%; background: linear-gradient(120deg, rgba(250, 21, 147, .25), rgba(251, 92, 6, .18)); filter: blur(70px); }
.mfb-band h2 { margin: 0 0 8px; font: 800 clamp(1.5rem, 1.1rem + 1.6vw, 2.25rem)/1.1 var(--font-display); color: #fff; letter-spacing: -.025em; }
.mfb-band p { margin: 0; color: #C9CBD6; max-width: 46ch; }
.mfb-band .mf-eyebrow { color: #A9ABC2; }
.mfb-band__links { display: grid; gap: 10px; }
@media (min-width: 576px) { .mfb-band__links { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mfb-band__link { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 10px 14px 10px 10px; border-radius: 16px; background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1); color: #fff; font: 700 .9375rem/1.25 var(--font-body); text-decoration: none; transition: background-color .15s ease, transform .15s ease; }
.mfb-band__link:hover { background: rgba(255, 255, 255, .13); color: #fff; transform: translateY(-1px); }
.mfb-band__link .mf-plat { width: 36px; height: 36px; flex-basis: 36px; box-shadow: 0 0 0 2px rgba(255, 255, 255, .12); }
.mfb-band__label { flex: 1 1 auto; min-width: 0; white-space: normal; overflow-wrap: break-word; }
.mfb-band__link > i { flex: 0 0 auto; margin-left: auto; padding-left: 8px; color: var(--cta-on-dark); transition: transform .15s ease; }
.mfb-band__link:hover > i { transform: translateX(3px); }
@media (min-width: 992px) { .mfb-band { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; gap: 40px; padding: 40px 44px; } }

/* ---- Archive rhythm ---------------------------------------------------- */
.mfb-archive { padding-bottom: 0; }
.mfb-mix { display: grid; gap: 20px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .mfb-mix { grid-template-columns: repeat(2, minmax(0, 1fr)); } .mfb-card--wide, .mfb-card--compact { grid-column: span 2; } }
@media (min-width: 992px) { .mfb-mix { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; } .mfb-card--wide { grid-column: span 4; } .mfb-card--med { grid-column: span 2; } .mfb-card--compact { grid-column: span 3; } }
.mfb-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; background: #fff; box-shadow: 0 0 0 1px var(--border), 0 2px 0 rgba(41, 47, 59, .03); transition: box-shadow .2s ease, transform .2s var(--mfb-ease); }
.mfb-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 1px var(--border-strong), 0 18px 40px rgba(41, 47, 59, .10); }
.mfb-card__cover { overflow: hidden; }
.mfb-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 20px 20px; flex: 1 1 auto; }
.mfb-card__title { margin: 0; font: 700 1.1875rem/1.28 var(--font-display); letter-spacing: -.015em; color: var(--heading); }
.mfb-card__dek { margin: 0; color: var(--body); font-size: .9688rem; line-height: 1.6; }
.mfb-card__body .mfb-meta { margin-top: auto; }
@media (min-width: 768px) {
  .mfb-card--wide { flex-direction: row; }
  .mfb-card--wide .mfb-card__cover { flex: 0 0 54%; }
  .mfb-card--wide .mfb-card__cover .mfb-cover { height: 100%; }
  .mfb-card--wide .mfb-card__body { padding: 28px; justify-content: center; }
  .mfb-card--wide .mfb-card__title { font-size: 1.625rem; line-height: 1.15; }
}
.mfb-card--compact { flex-direction: row; align-items: center; padding: 12px; gap: 4px; }
.mfb-card--compact .mfb-card__cover { flex: 0 0 96px; border-radius: 16px; }
.mfb-card--compact .mfb-card__body { padding: 4px 8px 4px 14px; }
.mfb-card--compact .mfb-card__title { font-size: 1.0625rem; }

/* ---- Collections ------------------------------------------------------- */
.mfb-collections { background: var(--surface-warm) radial-gradient(rgba(41, 47, 59, .06) 1px, transparent 1.2px) 0 0 / 22px 22px; margin-top: 56px; }
@media (min-width: 992px) { .mfb-collections { margin-top: 88px; } }
.mfb-cols { display: grid; gap: 16px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .mfb-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .mfb-cols--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .mfb-cols--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.mfb-col { --tint: var(--mfb-gen); position: relative; display: flex; flex-direction: column; gap: 16px; padding: 22px; border-radius: 24px; background: linear-gradient(180deg, var(--tint) 0, #fff 120px); box-shadow: 0 0 0 1px var(--border); scroll-margin-top: calc(var(--header-h) + 24px); }
.mfb-col--instagram { --tint: var(--mfb-ig); }
.mfb-col--tiktok { --tint: var(--mfb-tt); }
.mfb-col--facebook { --tint: var(--mfb-fb); }
.mfb-col--twitter { --tint: var(--mfb-x); }
.mfb-col:target { box-shadow: 0 0 0 2px var(--cta); }
.mfb-col__head { display: flex; align-items: center; gap: 14px; }
.mfb-col__head .mf-plat { transform: rotate(-6deg); box-shadow: 0 0 0 4px #fff; }
.mfb-col__head h3 { margin: 0; font: 800 1.25rem/1.2 var(--font-display); color: var(--heading); }
.mfb-col__n { font: 600 .75rem/1.3 var(--font-mono); color: var(--muted); }
.mfb-col__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: mfbcol; }
.mfb-col__list li { counter-increment: mfbcol; }
.mfb-col__list a { position: relative; display: grid; gap: 2px; padding: 10px 10px 10px 40px; border-radius: 14px; color: var(--heading); text-decoration: none; }
.mfb-col__list a::before { content: counter(mfbcol, decimal-leading-zero); position: absolute; left: 10px; top: 11px; font: 600 .75rem/1.4 var(--font-mono); color: var(--cta-edge); }
.mfb-col__list a:hover { background: rgba(255, 255, 255, .9); box-shadow: 0 0 0 1px var(--border); color: var(--heading); }
.mfb-col__title { font: 700 .9688rem/1.35 var(--font-display); }
.mfb-col__read { font-size: .75rem; color: var(--muted); }
.mfb-col__links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border-strong); }
.mfb-col__links a { display: inline-flex; align-items: center; min-height: 36px; padding: 5px 12px; border-radius: var(--r-pill); background: #fff; box-shadow: 0 0 0 1px var(--border); color: var(--heading); font: 600 .8125rem/1.2 var(--font-body); text-decoration: none; }
.mfb-col__links a:hover { box-shadow: 0 0 0 1.5px var(--cta); color: var(--heading); }

/* ---- Empty state ------------------------------------------------------- */
.mfb-empty { display: grid; gap: 24px; align-items: center; max-width: 900px; margin: 0 auto; padding: 20px; border-radius: 28px; background: #fff; box-shadow: 0 0 0 1px var(--border), 0 24px 60px rgba(41, 47, 59, .08); }
.mfb-empty__art { border-radius: 20px; overflow: hidden; }
.mfb-empty h2 { margin: 0 0 8px; font: 800 1.75rem/1.15 var(--font-display); letter-spacing: -.025em; }
.mfb-empty p { margin: 0 0 20px; }
@media (min-width: 768px) { .mfb-empty { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); padding: 28px; gap: 36px; } }

@media (prefers-reduced-motion: reduce) {
  .mfb-feature, .mfb-side, .mfb-card, .mfb-chip--link, .mfb-band__link { transition: none; }
  .mfb-feature:hover, .mfb-side:hover, .mfb-card:hover, .mfb-chip--link:hover, .mfb-band__link:hover { transform: none; }
}
@media (min-width: 992px) { .mfb-feature .mfb-cover { aspect-ratio: 16 / 8.5; } .mfb-feature .mfb-cover__chart { width: 42%; } }

/* ---- Article (blog v2) -------------------------------------------------- */
.mfb-progress { position: fixed; left: 0; top: 0; z-index: 2000; width: 100%; height: 3px; pointer-events: none; }
.mfb-progress span { display: block; width: 100%; height: 100%; background: var(--brand-grad); transform: scaleX(0); transform-origin: 0 50%; box-shadow: 0 0 10px rgba(250, 21, 147, .35); }

.mfb-ahero { position: relative; overflow: hidden; isolation: isolate; padding: 24px 0 40px; background: radial-gradient(70% 90% at 0% 0%, #FFF1F6 0%, rgba(255, 241, 246, 0) 60%), radial-gradient(60% 80% at 100% 10%, #FFF4EC 0%, rgba(255, 244, 236, 0) 65%), #fff; border-bottom: 1px solid var(--border); }
.mfb-ahero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(rgba(41, 47, 59, .09) 1px, transparent 1.2px) 0 0 / 22px 22px; -webkit-mask-image: linear-gradient(180deg, #000, transparent 85%); mask-image: linear-gradient(180deg, #000, transparent 85%); }
.mfb-ahero__grid { display: grid; gap: 28px; align-items: center; }
.mfb-ahero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; min-width: 0; }
.mfb-ahero__title { margin: 0; font: 800 clamp(2rem, 1.25rem + 3vw, 3.5rem)/1.06 var(--font-display); letter-spacing: -.04em; color: var(--heading); text-wrap: balance; }
.mfb-ahero__dek { margin: 0; font-size: 1.125rem; line-height: 1.6; color: var(--body); max-width: 56ch; }
.mfb-ahero__meta { font-size: .875rem; gap: 8px 18px; }
.mfb-ahero__meta strong { color: var(--heading); }
.mfb-ahero__cover { position: relative; margin: 0; border-radius: 28px; transform: rotate(1.5deg); box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 30px 70px rgba(41, 47, 59, .16); overflow: hidden; }
.mfb-ahero__cover::after { content: ""; position: absolute; left: 28px; right: 28px; bottom: 0; height: 4px; border-radius: 4px 4px 0 0; background: var(--brand-grad); }
@media (min-width: 992px) {
  .mfb-ahero { padding: 36px 0 72px; }
  .mfb-ahero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 64px; }
  .mfb-ahero__cover { border-radius: 32px; }
}
@media (max-width: 575.98px) {
  .mfb-ahero .mfc-crumbs li[aria-current] { display: none; }
  .mfb-ahero .mfc-crumbs li:nth-last-child(2) i { display: none; }
  .mfb-ahero__cover { transform: none; border-radius: 22px; }
}

/* body typography */
.mfb-prose > section, .mfb-prose .desc-block { margin: 0; }
.mfb-prose h2 { position: relative; padding-left: 34px; }
.mfb-prose h2::before { content: ""; position: absolute; left: 0; top: .2em; width: 22px; height: 22px; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfb-prose h3 { display: flex; align-items: baseline; gap: 10px; }
.mfb-prose h3::before { content: ""; flex: 0 0 14px; height: 3px; border-radius: 3px; background: var(--cta); transform: translateY(-.3em); }
.mfb-prose ul { list-style: none; padding-left: 0; }
.mfb-prose ul > li { position: relative; padding-left: 26px; }
.mfb-prose ul > li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 9px; height: 9px; border-radius: 3px; background: var(--brand-grad); transform: rotate(45deg); }
.mfb-prose ol { counter-reset: mfbol; list-style: none; padding-left: 0; }
.mfb-prose ol > li { position: relative; padding-left: 40px; counter-increment: mfbol; }
.mfb-prose ol > li::before { content: counter(mfbol); position: absolute; left: 0; top: .1em; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 9px; font: 700 .8125rem/1 var(--font-mono); color: var(--heading); border: 1.5px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--brand-grad) border-box; }
.mfb-prose .desc-block.intro { margin: 0 0 2em; padding: 22px 24px; border-radius: 20px; background: linear-gradient(135deg, #FFF1F6, #FFF4EC); box-shadow: inset 0 0 0 1px rgba(248, 58, 90, .14); position: relative; overflow: hidden; }
.mfb-prose .desc-block.intro::after { content: ""; position: absolute; right: -18px; bottom: -26px; width: 110px; height: 110px; opacity: .12; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfb-prose .desc-block.intro > :last-child { margin-bottom: 0; }
.mfb-prose .desc-block.intro p:first-child strong:first-child { display: inline-block; margin-right: 4px; padding: 2px 9px; border-radius: 8px; background: var(--heading); color: #fff; font-size: .8125rem; letter-spacing: .02em; }
.mfb-prose .desc-block.related { margin-top: 2.4em; padding: 22px 24px; border-radius: 20px; background: var(--surface); }
.mfb-prose .desc-block.related h2 { margin-top: 0; }
.mfb-prose .desc-block.related h3 { margin-top: 1.2em; }
.mfb-prose figure, .mfb-prose .blog-figure { margin: 2.2em 0; }
.mfb-prose figure img { display: block; width: 100%; height: auto; border-radius: 20px; box-shadow: 0 0 0 1px rgba(41, 47, 59, .06), 0 18px 40px rgba(41, 47, 59, .10); }
.mfb-prose figcaption { display: flex; align-items: center; justify-content: center; gap: 8px; }
.mfb-prose blockquote { position: relative; margin: 2.2em 0; padding: 26px 26px 22px 64px; border: 0; border-radius: 22px; background: var(--dark-indigo); color: #fff; font: 700 1.1875rem/1.45 var(--font-display); }
.mfb-prose blockquote::before { content: "\201C"; position: absolute; left: 20px; top: 8px; font: 800 3.5rem/1 var(--font-display); background: var(--brand-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mfb-prose blockquote p { color: #fff; }
/* Dark blocks inside article bodies (pull-quotes, dark callouts/CTA cards) --
   every descendant must stay legible on the dark surface, not inherit the
   light-mode prose colors (.mfc-prose strong/a etc. are near-black). */
.mfb-prose blockquote :is(strong, b),
.mfc-prose .mfc-cta :is(strong, b) { color: #FF8FA3 !important; font-weight: 800; }
.mfb-prose blockquote :is(em, i),
.mfc-prose .mfc-cta :is(em, i) { color: #fff !important; font-style: italic; }
.mfb-prose blockquote :is(p, li, h2, h3, h4),
.mfc-prose .mfc-cta :is(p, li, h2, h3, h4) { color: #fff !important; }
.mfb-prose blockquote code,
.mfc-prose .mfc-cta code { background: rgba(255, 255, 255, .16); color: #FFE1E8 !important; }
.mfb-prose blockquote a,
.mfc-prose .mfc-cta a:not(.mf-btn) { color: #FFB6C6 !important; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(255, 182, 198, .55); text-underline-offset: 3px; }
.mfb-prose blockquote a:hover,
.mfc-prose .mfc-cta a:not(.mf-btn):hover { color: #fff !important; text-decoration-color: #fff; }
.mfb-prose blockquote a:focus-visible,
.mfc-prose .mfc-cta a:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 3px; }
.mfb-prose table { box-shadow: 0 0 0 1px var(--border); }
.mfb-prose thead th { background: var(--dark-indigo); color: #fff; }
.mfb-prose tbody tr:nth-child(even) td { background: var(--surface); }
.mfb-article .mfc-share__btn:hover { background: var(--cta-tint); box-shadow: 0 0 0 1px var(--cta), var(--press); }

/* Grow your <platform> card */
.mfb-grow { position: relative; overflow: hidden; isolation: isolate; display: grid; gap: 16px; margin: 2.4em 0; padding: 24px 22px; border-radius: 24px; background: #fff; box-shadow: 0 0 0 1px var(--border), 0 18px 40px rgba(41, 47, 59, .08); font-family: var(--font-body); }
.mfb-grow::before { content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 3px; border-radius: 0 0 4px 4px; background: var(--brand-grad); }
.mfb-grow__art { position: absolute; right: 18px; top: 18px; }
.mfb-grow__art .mf-plat { transform: rotate(-8deg); box-shadow: 0 0 0 5px var(--mfc-blush, #FFEAF2); }
.mfb-grow__copy { padding-right: 76px; }
.mfb-grow__copy .mf-eyebrow { margin-bottom: 8px; }
.mfb-prose .mfb-grow__title, .mfb-grow__title { margin: 0 0 6px; font: 800 1.5rem/1.15 var(--font-display); letter-spacing: -.025em; color: var(--heading); }
.mfb-prose .mfb-grow__text, .mfb-grow__text { margin: 0; font-size: .9688rem; line-height: 1.6; color: var(--body); }
.mfb-grow__links { display: flex; flex-wrap: wrap; gap: 8px; }
.mfc-prose .mfb-grow__link, .mfb-grow__link { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 6px 14px 6px 6px; border-radius: 14px; background: var(--surface); color: var(--heading); font: 700 .875rem/1.2 var(--font-body); text-decoration: none; transition: background-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.mfc-prose .mfb-grow__link:hover, .mfb-grow__link:hover { background: var(--cta-tint); box-shadow: 0 0 0 1.5px var(--cta); color: var(--heading); transform: translateY(-1px); }
.mfb-grow__link .mf-plat--sm { width: 30px; height: 30px; flex-basis: 30px; font-size: .85rem; }
.mfb-grow--end { background: var(--dark-indigo); box-shadow: none; }
.mfb-grow--end::after { content: ""; position: absolute; z-index: -1; right: -40px; bottom: -80px; width: 260px; height: 260px; opacity: .12; background: var(--brand-grad); -webkit-mask: var(--bolt-mask) center / contain no-repeat; mask: var(--bolt-mask) center / contain no-repeat; }
.mfb-grow--end .mfb-grow__title { color: #fff; }
.mfb-grow--end .mfb-grow__text { color: #C9CBD6; }
.mfb-grow--end .mf-eyebrow { color: #A9ABC2; }
.mfb-grow--end .mfb-grow__art .mf-plat { box-shadow: 0 0 0 5px rgba(255, 255, 255, .1); }
.mfb-grow--end .mfb-grow__link { background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); color: #fff; }
.mfb-grow--end .mfb-grow__link:hover { background: rgba(255, 255, 255, .14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25); }
@media (min-width: 768px) { .mfb-grow { padding: 28px 30px; } .mfb-grow--end { padding: 34px 34px 30px; } }
@media (prefers-reduced-motion: reduce) { .mfb-grow__link { transition: none; } .mfb-grow__link:hover { transform: none; } }

/* Related carousel */
.mfb-related { background: var(--surface-warm) radial-gradient(rgba(41, 47, 59, .06) 1px, transparent 1.2px) 0 0 / 22px 22px; }
.mfb-related__nav { display: flex; align-items: center; gap: 8px; }
.mfb-related__nav .mfc-section-head__count { margin-right: 8px; }
.mfb-related__btn { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--border-strong); border-radius: 12px; background: #fff; color: var(--heading); box-shadow: var(--press); cursor: pointer; }
.mfb-related__btn:hover { background: var(--surface); }
.mfb-related__btn:active { transform: translateY(2px); box-shadow: none; }
.mfb-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 82%); gap: 20px; margin: 0 -16px; padding: 6px 16px 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; scrollbar-width: thin; overscroll-behavior-x: contain; }
.mfb-rail:focus-visible { outline-offset: -2px; }
@media (min-width: 768px) { .mfb-rail { grid-auto-columns: calc((100% - 40px) / 2.3); margin: 0; padding-inline: 0; scroll-padding-inline: 0; } }
@media (min-width: 1200px) { .mfb-rail { grid-auto-columns: calc((100% - 60px) / 3.4); } }
.mfb-card--rail { scroll-snap-align: start; }

/* Grow card: service cards grid (icon + label + arrow); arrow gets a reserved slot, label wraps instead of colliding */
.mfb-grow__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.mfc-prose .mfb-grow__link, .mfb-grow__link { display: flex; align-items: center; gap: 12px; min-width: 0; min-height: 56px; padding: 10px 14px 10px 10px; border-radius: 16px; background: var(--surface); color: var(--heading); font: 700 .9375rem/1.2 var(--font-body); text-decoration: none; box-shadow: inset 0 0 0 1px var(--border); }
.mfb-grow__link .mf-plat--sm { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 11px; font-size: .95rem; }
.mfb-grow__label { flex: 1 1 auto; min-width: 0; white-space: normal; overflow-wrap: break-word; }
.mfb-grow__arrow { flex: 0 0 auto; margin-left: auto; padding-left: 8px; font-size: .8rem; color: var(--cta-edge); transition: transform .15s ease; }
.mfb-grow__link:hover .mfb-grow__arrow { transform: translateX(3px); }
.mfc-prose .mfb-grow__link:hover, .mfb-grow__link:hover { background: #fff; box-shadow: inset 0 0 0 1.5px var(--cta), 0 8px 18px rgba(248, 58, 90, .12); color: var(--heading); transform: translateY(-2px); }
.mfb-grow--end .mfb-grow__link { background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12); color: #fff; }
.mfb-grow--end .mfb-grow__link:hover { background: rgba(255, 255, 255, .13); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 10px 22px rgba(0, 0, 0, .2); color: #fff; }
.mfb-grow--end .mfb-grow__arrow { color: var(--cta-on-dark); }
.mfb-grow--end .mfb-grow__link .mf-plat--sm { box-shadow: 0 0 0 2px rgba(255, 255, 255, .12); }

/* Adjacent posts */
.mfb-postnav { display: grid; gap: 12px; margin-top: 32px; }
@media (min-width: 576px) { .mfb-postnav { grid-template-columns: repeat(2, minmax(0, 1fr)); } .mfb-postnav__link--next:only-child { grid-column: 2; } }
.mfc-postnav a.mfb-postnav__link, .mfb-postnav__link { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 12px; border-radius: 20px; background: #fff; box-shadow: 0 0 0 1px var(--border); color: var(--heading); text-decoration: none; transition: box-shadow .2s ease, transform .2s var(--mfb-ease); }
.mfb-postnav__link:hover { color: var(--heading); transform: translateY(-2px); box-shadow: 0 0 0 1px var(--border-strong), 0 14px 30px rgba(41, 47, 59, .09); }
.mfb-postnav__link--next { justify-content: flex-end; text-align: right; }
.mfb-postnav__thumb { flex: 0 0 64px; width: 64px; border-radius: 14px; overflow: hidden; }
.mfb-postnav__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1 1 auto; }
.mfb-postnav__text small { display: inline-flex; align-items: center; gap: 6px; font: 700 .6875rem/1.2 var(--font-body); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.mfb-postnav__link--next .mfb-postnav__text small { justify-content: flex-end; }
.mfb-postnav__text small i { color: var(--cta-edge); }
.mfb-postnav__text strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font: 700 .9688rem/1.35 var(--font-display); color: var(--heading); }
@media (prefers-reduced-motion: reduce) { .mfb-postnav__link, .mfb-grow__link, .mfb-grow__arrow { transition: none; } .mfb-postnav__link:hover, .mfb-grow__link:hover, .mfb-grow__link:hover .mfb-grow__arrow { transform: none; } }

/* No default-blue links anywhere in the blog scope */
.mfb a:not(.mf-btn):not([class*="mfb-"]):not([class*="mfc-"]):not(.mf-link) { color: var(--heading); }
.mfb .mfc-prose a { color: var(--heading); }
.mfb .mfc-prose a:hover { color: var(--cta-edge); }

/* ==========================================================================
   QA FIX PASS (FINAL-QA-REPORT, content pages) -- 2026-09-24
   ========================================================================== */

/* M-04: the home/contact form inputs lost .mf-input's 16px to the legacy
   `.form__field input, .form__field textarea { font-size:14px }` rule in
   site_style.css. 16px stops iOS Safari zooming on focus. (The contact-form
   partial carries the same rule inline for pages without this sheet.) */
.mfc-form .form__field .mf-input,
.mfc .form__field input.mf-input,
.mfc .form__field textarea.mf-input { padding: 12px 14px; border: 0; border-radius: var(--r-btn-lg); font-size: 1rem; line-height: 1.4; }

/* M-07: 44px tap targets on the content pages ----------------------------- */
/* breadcrumbs: taller hit area, negative margin keeps the visual rhythm */
.mfc-crumbs ol { row-gap: 0; margin-block: -11px; }
.mfc-crumbs { margin-top: 11px; }
.mfc-crumbs a { display: inline-flex; align-items: center; min-height: 44px; padding-inline: 2px; }
.mfc-crumbs li { min-height: 44px; }
/* in-article / legal table of contents */
.mfc-toc__link { min-height: 44px; align-items: center; padding-block: 10px; }
.mfc-toc__dot { transform: none; }
.mfc-toc__link.is-active::before { top: 10px; bottom: 10px; }
/* FAQ quick topics + jump-to chips, service ladders, blog collection links */
.mfc-quick a, .mfc-topics a, .mfc-ladder__links a, .mfb-col__links a { min-height: 44px; }
/* About: policy links in the company list */
.mfc-dl__links { display: flex; flex-wrap: wrap; align-items: center; column-gap: 6px; margin-block: -10px; }
.mfc-dl__links a { display: inline-flex; align-items: center; min-height: 44px; }

/* D-02: legal section badges. The gradient ring used to be the element's own
   border-box background, so contrast checkers read the dark numeral against
   the pink stop (3.58:1). The fill is now a solid white background and the
   ring a masked pseudo-element: #292F3B on #FFF = 13.9:1. */
.mfc-doc__num { position: relative; border: 0; background: #fff; padding: 0 7.5px; }
.mfc-doc__num::before {
  content: ""; position: absolute; inset: 0; padding: 1.5px; border-radius: inherit; background: var(--brand-grad); pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}

/* Blog covers: words never meet the growth chart, and pass contrast -------- */
/* words keep to the left half, the chart to the right 44%; one long word
   scales the type down (--wscale from mfb_cover()) instead of breaking. */
.mfb-cover__words { max-width: 50%; font-size: max(15px, calc(8cqi * var(--wscale, 1))); overflow-wrap: normal; word-break: normal; hyphens: none; }
.mfb-cover__chart { width: 44%; right: 4%; }
.mfb-cover--tile .mfb-cover__chart { width: 40%; right: 3%; }
/* D-04: highlight word. Pastel covers: a deeper pink-rust gradient
   (#D6127F -> #C23F05: 4.4:1 / 4.65:1 on the lightest tint). Gradient cover:
   a white "sticker" with coral-edge ink (#C8174F on #FFF = 5.7:1) instead of
   cream text on orange (2.89:1). Ink cover: light coral on indigo (6.9:1). */
.mfb-cover__words em { background: linear-gradient(90deg, #D6127F, #C23F05); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mfb-cover--grad .mfb-cover__words em { display: inline-block; margin-top: .08em; padding: .04em .2em .1em; border-radius: .18em; background: #fff; -webkit-background-clip: border-box; background-clip: border-box; color: var(--cta-edge); text-shadow: none; box-shadow: 0 4px 14px rgba(120, 14, 50, .22); transform: rotate(-2deg); }
.mfb-cover--ink .mfb-cover__words em { background: none; color: var(--cta-on-dark); }

/* D-20: prev/next titles -- a real 2-line clamp with an ellipsis (standard
   and -webkit- forms), the one-line label frees room for the title. */
.mfb-postnav__text strong { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden; text-overflow: ellipsis; overflow-wrap: break-word; }
.mfb-postnav__text small { white-space: nowrap; }

/* D-28: category chips on cards/hero are labels, not links. They no longer
   look like the clickable platform chips in the masthead: no pill fill, no
   lift, no pointer, and clicks fall through to the card link. */
.mfb-chip:not(.mfb-chip--link) { padding: 0; background: none; box-shadow: none; color: var(--muted); font: 700 .6875rem/1.4 var(--font-body); letter-spacing: .08em; text-transform: uppercase; cursor: default; pointer-events: none; }
.mfb-chip:not(.mfb-chip--link) .mfb-chip__dot { width: 7px; height: 7px; }
.mfb-chip--link { cursor: pointer; }

/* D-05: a body <h1> that is not the page title is demoted to this subtitle */
.mfc-prose.mfb-prose h2.mfb-prose__subtitle { margin: 0 0 20px; padding-left: 0; font: 600 clamp(1.0625rem, 1rem + .3vw, 1.1875rem)/1.45 var(--font-body); letter-spacing: 0; color: var(--body); }
.mfc-prose.mfb-prose h2.mfb-prose__subtitle::before { content: none; }
/* M-07: the one inline link in the About company list ("contact page") */
.mfc-dl span > a:not(.mfc-dl__links a) { display: inline-block; padding-block: 12.5px; margin-block: -12.5px; }

/* QA rerun (FINAL-QA-RERUN.md) ------------------------------------------- */
/* D-03: "24/7" on the contact chat art: #147A52 on #FFF = 5.6:1 (was 3.41:1) */
.mfc-chatart__who small { color: #147A52; }
/* D-04: cover words never drop below the WCAG large-text size for bold
   (18.66px), so white on the #FB5C06 gradient end (3.16:1) meets 3:1. */
.mfb-cover__words { font-size: max(19px, calc(8cqi * var(--wscale, 1))); }
/* M-07: breadcrumb links at least 44x44 ("Home" was 41 wide) */
.mfc-crumbs a { min-width: 44px; justify-content: center; padding-inline: 4px; }
/* Contact page reCAPTCHA (fixed 304px iframe) at 320-399px: grid children
   may shrink, the form panel's side padding drops to 12px, and below 360px
   the widget is scaled from its top-left corner so all of it stays visible. */
.mfc-contact > *, .mfc-contact__formwrap, .mfc-contact .mfc-form__grid > * { min-width: 0; }
@media (max-width: 399.98px) { .mfc-contact .mfc-panel:has(.mfc-form) { padding-inline: 12px; } }
@media (max-width: 359.98px) {
  .mfc-contact .mfc-form__captcha { min-height: 0; height: 68px; overflow: visible; }
  .mfc-contact .mfc-form__captcha .g-recaptcha { transform: scale(.86); transform-origin: left top; }
}

/* Article body tables (wrapped at render time by mfb_media()) ------------ */
/* The wrapper owns scrolling, so the table itself is a normal table again. */
.mfc-prose .mfb-table { margin: 1.8em 0; }
.mfc-prose .mfb-table table { display: table; margin: 0; overflow: visible; }
.mfc-prose .mfb-table--plain { overflow-x: auto; border-radius: 14px; }
.mfb-table td, .mfb-table th { font-variant-numeric: tabular-nums; }
/* scroll mode: long ranking tables */
.mfb-table__hint { display: none; align-items: center; gap: 6px; margin: 0 0 8px; font: 600 .8125rem/1.4 var(--font-body); color: var(--muted); }
.mfb-table__hint svg { flex: none; color: var(--cta); }
.mfb-table__scroll { overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; border-radius: 14px; box-shadow: 0 0 0 1px var(--border); scrollbar-width: thin; }
.mfb-table__scroll:focus-visible { outline: 2px solid var(--cta); outline-offset: 3px; }
.mfc-prose .mfb-table__scroll table { box-shadow: none; border-radius: 0; }
.mfb-table--scroll td:first-child, .mfb-table--scroll th:first-child { position: sticky; left: 0; z-index: 1; }
.mfb-table--scroll td:first-child { background: #fff; }
.mfc-prose .mfb-table--scroll tbody tr:nth-child(even) td:first-child { background: var(--surface); }
.mfb-table--scroll thead th:first-child { z-index: 2; }
@media (max-width: 639.98px) {
  .mfb-table__hint { display: flex; }
  .mfc-prose .mfb-table--scroll table { min-width: 520px; font-size: .875rem; }
  .mfc-prose .mfb-table--scroll th, .mfc-prose .mfb-table--scroll td { padding: 10px 12px; }
  .mfb-table--scroll td:first-child, .mfb-table--scroll th:first-child { box-shadow: inset -1px 0 0 var(--border); }
  /* rank tables: "#" and the name column both stay put */
  .mfc-prose .mfb-table--rank td:first-child, .mfc-prose .mfb-table--rank th:first-child { width: 44px; min-width: 44px; max-width: 44px; padding-inline: 10px; box-shadow: none; text-align: center; }
  .mfb-table--rank td:nth-child(2), .mfb-table--rank th:nth-child(2) { position: sticky; left: 44px; z-index: 1; min-width: 150px; max-width: 170px; box-shadow: inset -1px 0 0 var(--border); }
  .mfb-table--rank td:nth-child(2) { background: #fff; }
  .mfc-prose .mfb-table--rank tbody tr:nth-child(even) td:nth-child(2) { background: var(--surface); }
  .mfb-table--rank thead th:nth-child(2) { z-index: 2; }
}
/* cards mode: each row becomes a card on phones */
@media (max-width: 639.98px) {
  .mfc-prose .mfb-table--cards table, .mfb-table--cards tbody, .mfb-table--cards tr, .mfb-table--cards td { display: block; width: 100%; }
  .mfc-prose .mfb-table--cards table { box-shadow: none; border-radius: 0; font-size: .9375rem; }
  .mfb-table--cards thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .mfb-table--cards tbody { display: grid; gap: 12px; }
  .mfb-table--cards tr { overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 0 0 1px var(--border), 0 6px 18px rgba(41, 47, 59, .05); }
  .mfc-prose .mfb-table--cards tbody tr td, .mfc-prose .mfb-table--cards tbody tr:nth-child(even) td { padding: 10px 16px; border-bottom: 1px solid var(--border); background: none; }
  .mfc-prose .mfb-table--cards tr td:last-child { border-bottom: 0; }
  .mfb-table--cards td[data-label]:not([data-label=""])::before { content: attr(data-label); display: block; margin-bottom: 2px; font: 700 .6875rem/1.4 var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
  /* first cell = card title */
  .mfc-prose .mfb-table--cards tbody tr td:first-child { padding-block: 12px; background: var(--dark-indigo); color: #fff; font-weight: 700; border-bottom: 0; }
  .mfb-table--cards td:first-child::before { color: rgba(255, 255, 255, .72) !important; }
}

/* Article figures: full width, rounded; width/height attrs + height:auto
   reserve the box (no layout shift). Several images in one figure stack. */
.mfb-prose figure.mfb-figure { display: grid; gap: 14px; }
.mfb-prose figure.mfb-figure img { display: block; width: 100%; max-width: 100%; height: auto; border-radius: 20px; background: var(--surface); }
.mfb-prose figure.mfb-figure figcaption { margin-top: -4px; }
@media (max-width: 639.98px) { .mfb-prose figure.mfb-figure img { border-radius: 14px; } }
/* desktop: the wrapper clips the table's rounded corners */
@media (min-width: 640px) {
  .mfc-prose .mfb-table--cards, .mfc-prose .mfb-table--plain { overflow: hidden; border-radius: 14px; box-shadow: 0 0 0 1px var(--border); }
  .mfc-prose .mfb-table--cards table, .mfc-prose .mfb-table--plain table { box-shadow: none; border-radius: 0; }
}
