/* Theme tokens inspired by the reference artwork: dark burgundy stage, red CTA, gold highlights. */
body.mb-site,
.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer,
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  --mb-font: "Inter", "Noto Sans", "Segoe UI", Arial, sans-serif;

  --mb-container: 1120px;
  --mb-site-gutter: clamp(14px, 4vw, 32px);
  --mb-article-pad: clamp(16px, 3.2vw, 34px);
  --mb-section-pad: clamp(16px, 3vw, 30px);
  --mb-card-pad: clamp(16px, 2.4vw, 24px);

  --mb-bg: #160403;
  --mb-bg-2: #2a0706;
  --mb-bg-3: #4b0d08;

  --mb-panel: rgba(42, 7, 6, 0.94);
  --mb-panel-2: rgba(76, 14, 9, 0.92);
  --mb-panel-3: rgba(105, 20, 12, 0.78);

  --mb-primary: #e5281d;
  --mb-primary-2: #ff5b2d;
  --mb-red: #c91517;

  --mb-gold: #f2bd4f;
  --mb-gold-2: #ffe59a;
  --mb-amber: #ff9d2b;
  --mb-teal: var(--mb-primary);

  --mb-text: #fff6df;
  --mb-text-soft: #f5d7a8;
  --mb-muted: #caa386;
  --mb-muted-2: #9b7165;

  --mb-line: rgba(242, 189, 79, 0.22);
  --mb-line-strong: rgba(255, 229, 154, 0.42);
  --mb-border: var(--mb-line);
  --mb-border-strong: var(--mb-line-strong);

  --mb-radius-sm: 10px;
  --mb-radius-md: 16px;
  --mb-radius-lg: 22px;
  --mb-radius-xl: 30px;
  --mb-radius-pill: 999px;

  --mb-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --mb-shadow-glow: 0 0 0 1px rgba(255, 229, 154, 0.2), 0 20px 70px rgba(229, 40, 29, 0.28), 0 0 48px rgba(242, 189, 79, 0.16);
  --mb-section-space: clamp(26px, 5vw, 58px);
  --mb-gap: clamp(18px, 3.4vw, 38px);
}

body.mb-site {
  font-family: var(--mb-font);
  color: var(--mb-text);
  direction: ltr;
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 157, 43, 0.24) 0, rgba(255, 157, 43, 0) 34rem),
    radial-gradient(circle at 12% 18%, rgba(229, 40, 29, 0.2) 0, rgba(229, 40, 29, 0) 28rem),
    radial-gradient(circle at 88% 30%, rgba(242, 189, 79, 0.16) 0, rgba(242, 189, 79, 0) 24rem),
    linear-gradient(180deg, #240504 0%, #160403 42%, #0c0202 100%);
}

.mb-site-header,
.mb-page-strip,
.mb-site-footer,
.mb-site-drawer {
  font-family: var(--mb-font);
  color: var(--mb-text);
  direction: ltr;
  text-align: start;
}

.mb-site-header,
.mb-site-header *,
.mb-page-strip,
.mb-page-strip *,
.mb-site-footer,
.mb-site-footer *,
.mb-site-drawer,
.mb-site-drawer * {
  box-sizing: border-box;
}

/* Site chrome */
.mb-topbar {
  width: 100%;
  color: var(--mb-muted);
  background: linear-gradient(90deg, rgba(78, 12, 8, 0.9), rgba(22, 4, 3, 0.96));
  border-bottom: 1px solid rgba(242, 189, 79, 0.12);
}

.mb-topbar__inner {
  width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  max-width: 100%;
  margin-inline: auto;
  padding-block: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  font-size: 0.84rem;
  line-height: 1.45;
}

.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(35, 5, 4, 0.94), rgba(20, 3, 3, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(242, 189, 79, 0.16), transparent 32rem);
  border-bottom: 1px solid rgba(242, 189, 79, 0.2);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mb-site-header__inner {
  width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  max-width: 100%;
  min-height: 64px;
  margin-inline: auto;
  padding-block: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
}

.mb-site-brand {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mb-gold-2);
  text-decoration: none;
}

.mb-site-brand__logo {
  display: block;
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  aspect-ratio: 800 / 128;
}

.mb-site-brand__name {
  min-width: 0;
  color: var(--mb-gold-2);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mb-site-nav {
  flex: 2 1 auto;
  min-width: 0;
  max-width: 100%;
}

.mb-site-nav__list {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 4px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.mb-site-nav__list::-webkit-scrollbar {
  display: none;
}

.mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(242, 189, 79, 0.18);
  border-radius: var(--mb-radius-pill);
  color: var(--mb-text-soft);
  background: rgba(255, 229, 154, 0.06);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-site-nav__link[aria-current="page"] {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 229, 154, 0.72);
  transform: translateY(-1px);
}

.mb-site-header__actions,
.mb-site-actions {
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.mb-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: min(42vw, 11rem);
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--mb-radius-pill);
  border: 1px solid rgba(255, 229, 154, 0.44);
  color: #fffaf0;
  background: linear-gradient(180deg, #ff4a2b 0%, #cf1618 100%);
  box-shadow: 0 10px 26px rgba(229, 40, 29, 0.28);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #ff663a 0%, #e5281d 100%);
  border-color: rgba(255, 229, 154, 0.72);
}

.mb-site-btn--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.08);
  border-color: rgba(242, 189, 79, 0.42);
  box-shadow: none;
}

.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
}

.mb-site-menu-toggle,
.mb-site-burger {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  max-width: 40px;
  border-radius: 12px;
  border: 1px solid rgba(242, 189, 79, 0.28);
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Drawer sizing is explicit so backdrop-filter on the header cannot shrink the fixed overlay. */
.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 2000;
  color: var(--mb-text);
}

@supports not (height: 100dvh) {
  .mb-site-drawer {
    height: 100vh;
  }
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100dvh;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 189, 79, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(54, 8, 6, 0.98), rgba(18, 3, 3, 0.98));
  border-inline-start: 1px solid rgba(242, 189, 79, 0.24);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.mb-site-drawer__panel::-webkit-scrollbar {
  display: none;
}

.mb-site-drawer__link {
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--mb-text-soft);
  background: rgba(255, 229, 154, 0.055);
  border: 1px solid rgba(242, 189, 79, 0.14);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mb-site-drawer__link:hover,
.mb-site-drawer__link:focus-visible,
.mb-site-drawer__link[aria-current="page"] {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 229, 154, 0.62);
}

.mb-site-drawer__cta,
.mb-site-drawer__cta--apk {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  border-radius: var(--mb-radius-pill);
  text-decoration: none;
  font-weight: 950;
  line-height: 1.15;
}

.mb-site-drawer__cta {
  color: #ffffff;
  background: linear-gradient(180deg, #ff4a2b, #cf1618);
  border: 1px solid rgba(255, 229, 154, 0.5);
}

.mb-site-drawer__cta--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.08);
  border: 1px solid rgba(242, 189, 79, 0.36);
}

.mb-page-strip {
  width: 100%;
  background: rgba(13, 2, 2, 0.72);
  border-bottom: 1px solid rgba(242, 189, 79, 0.14);
}

.mb-page-strip__inner {
  width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  max-width: 100%;
  margin-inline: auto;
  padding-block: 8px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  color: var(--mb-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.mb-page-strip a {
  color: var(--mb-gold-2);
  text-decoration: none;
}

.mb-page-strip a:hover,
.mb-page-strip a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--mb-gold);
  text-underline-offset: 0.18em;
}

.mb-page-strip__title {
  color: var(--mb-text-soft);
  font-weight: 850;
}

.mb-site-footer {
  margin-block-start: clamp(36px, 7vw, 80px);
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 40, 29, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(30, 5, 4, 0.96), rgba(9, 1, 1, 0.98));
  border-top: 1px solid rgba(242, 189, 79, 0.18);
}

.mb-site-footer__inner {
  width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  max-width: 100%;
  margin-inline: auto;
  padding-block: clamp(24px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.8fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
}

.mb-site-footer__brand {
  min-width: 0;
  color: var(--mb-gold-2);
  font-weight: 950;
  line-height: 1.2;
}

.mb-site-footer__copy {
  color: var(--mb-muted);
  line-height: 1.65;
}

.mb-footer-nav {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-footer-nav__list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mb-footer-nav__list > li {
  flex: 1 1 auto;
  min-width: min(100%, 9rem);
  max-width: 100%;
}

.mb-footer-nav__link {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: var(--mb-radius-pill);
  border: 1px solid rgba(242, 189, 79, 0.18);
  color: var(--mb-text-soft);
  background: rgba(255, 229, 154, 0.055);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

.mb-footer-nav__link:hover,
.mb-footer-nav__link:focus-visible {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  border-color: rgba(255, 229, 154, 0.58);
}

/* Article root */
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: var(--mb-article-pad);
  color: var(--mb-text);
  font-family: var(--mb-font);
  direction: ltr;
  text-align: start;
  unicode-bidi: isolate;
  min-width: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 157, 43, 0.18), transparent 34rem),
    radial-gradient(circle at 4% 12%, rgba(229, 40, 29, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(44, 7, 6, 0.97), rgba(18, 3, 3, 0.985));
  border: 1px solid rgba(242, 189, 79, 0.2);
  border-radius: var(--mb-radius-xl);
  box-shadow: var(--mb-shadow);
  overflow-wrap: anywhere;
}

body.mb-site main .mb-article {
  width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  max-width: var(--mb-container);
  margin-block: clamp(18px, 4vw, 42px);
}

.mb-article,
.mb-article *,
.mb-article *::before,
.mb-article *::after,
.mbpk-article,
.mbpk-article *,
.mbpk-article *::before,
.mbpk-article *::after,
.mbpk-page .mb-article,
.mbpk-page .mb-article *,
.mbpk-page .mb-article *::before,
.mbpk-page .mb-article *::after {
  box-sizing: border-box;
}

.mb-article__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
}

/* Typography */
.mb-article h1,
.mb-article h2,
.mb-article h3,
.mb-article h4,
.mb-article h5,
.mb-article h6,
.mbpk-article h1,
.mbpk-article h2,
.mbpk-article h3,
.mbpk-article h4,
.mbpk-article h5,
.mbpk-article h6,
.mbpk-page .mb-article h1,
.mbpk-page .mb-article h2,
.mbpk-page .mb-article h3,
.mbpk-page .mb-article h4,
.mbpk-page .mb-article h5,
.mbpk-page .mb-article h6 {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 0.62em;
  color: var(--mb-text);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.mb-article h1,
.mbpk-article h1,
.mbpk-page .mb-article h1 {
  font-size: clamp(2rem, 5vw, 4.15rem);
}

.mb-article h2,
.mbpk-article h2,
.mbpk-page .mb-article h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.65rem);
}

.mb-article h3,
.mbpk-article h3,
.mbpk-page .mb-article h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.mb-article h4,
.mbpk-article h4,
.mbpk-page .mb-article h4 {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.mb-article p,
.mbpk-article p,
.mbpk-page .mb-article p {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 1em;
  color: var(--mb-text-soft);
  font-size: clamp(1rem, 1.25vw, 1.075rem);
  line-height: 1.72;
}

.mb-article p:last-child,
.mbpk-article p:last-child,
.mbpk-page .mb-article p:last-child {
  margin-block-end: 0;
}

.mb-article .mb-lead,
.mb-article .mb-hero__lead,
.mbpk-article .mb-lead,
.mbpk-article .mb-hero__lead,
.mbpk-page .mb-article .mb-lead,
.mbpk-page .mb-article .mb-hero__lead {
  max-width: 100%;
  color: #ffe7bd;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
  font-weight: 650;
}

.mb-article .mb-measure,
.mbpk-article .mb-measure,
.mbpk-page .mb-article .mb-measure {
  max-width: min(72ch, 100%);
  margin-inline: auto;
}

.mb-article a:not(.mb-btn),
.mbpk-article a:not(.mb-btn),
.mbpk-page .mb-article a:not(.mb-btn) {
  color: var(--mb-gold-2);
  text-decoration-color: rgba(242, 189, 79, 0.55);
  text-underline-offset: 0.18em;
}

.mb-article a:not(.mb-btn):hover,
.mb-article a:not(.mb-btn):focus-visible,
.mbpk-article a:not(.mb-btn):hover,
.mbpk-article a:not(.mb-btn):focus-visible,
.mbpk-page .mb-article a:not(.mb-btn):hover,
.mbpk-page .mb-article a:not(.mb-btn):focus-visible {
  color: #ffffff;
  text-decoration-color: var(--mb-primary-2);
}

.mb-article strong,
.mbpk-article strong,
.mbpk-page .mb-article strong {
  color: #ffffff;
  font-weight: 900;
}

.mb-article blockquote,
.mbpk-article blockquote,
.mbpk-page .mb-article blockquote {
  width: 100%;
  margin: 0 0 var(--mb-section-space);
  padding: clamp(16px, 3vw, 26px);
  color: var(--mb-text-soft);
  background: rgba(255, 229, 154, 0.07);
  border: 1px solid rgba(242, 189, 79, 0.22);
  border-inline-start: 4px solid var(--mb-gold);
  border-radius: var(--mb-radius-lg);
}

.mb-article code,
.mbpk-article code,
.mbpk-page .mb-article code {
  padding: 0.12em 0.35em;
  border-radius: 0.4em;
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.1);
}

.mb-article pre,
.mbpk-article pre,
.mbpk-page .mb-article pre {
  max-width: 100%;
  overflow-x: auto;
  margin-block: 0 1.5rem;
  padding: 1rem;
  border-radius: var(--mb-radius-md);
  color: var(--mb-text-soft);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(242, 189, 79, 0.18);
}

/* Lists */
.mb-article ul,
.mb-article ol,
.mbpk-article ul,
.mbpk-article ol,
.mbpk-page .mb-article ul,
.mbpk-page .mb-article ol {
  max-width: 100%;
  margin-block-start: 0;
  margin-block-end: 1.25rem;
  padding-inline-start: 1.45em;
  color: var(--mb-text-soft);
  line-height: 1.7;
}

.mb-article li,
.mbpk-article li,
.mbpk-page .mb-article li {
  margin-block-end: 0.52em;
  padding-inline-start: 0.15em;
}

.mb-article li::marker,
.mbpk-article li::marker,
.mbpk-page .mb-article li::marker {
  color: var(--mb-gold);
  font-weight: 900;
}

.mb-article .mb-list,
.mbpk-article .mb-list,
.mbpk-page .mb-article .mb-list {
  width: 100%;
  max-width: 100%;
  padding: clamp(16px, 3vw, 26px);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(242, 189, 79, 0.2);
  background: rgba(255, 229, 154, 0.055);
}

/* Shared media behavior */
.mb-article img,
.mbpk-article img,
.mbpk-page .mb-article img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mb-hero__media,
.mb-media,
.mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  overflow: clip;
  border-radius: var(--mb-radius-lg);
  background: #120202;
  border: 1px solid rgba(255, 229, 154, 0.2);
  box-shadow: var(--mb-shadow-glow);
  cursor: pointer;
}

.mb-hero__media > a,
.mb-hero__media picture,
.mb-media > a,
.mb-media picture,
.mb-card__media > a,
.mb-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.mb-hero__media img,
.mb-media img,
.mb-card__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 320ms ease, filter 320ms ease;
}

.mb-hero__media:hover img,
.mb-hero__media:focus-within img,
.mb-media:hover img,
.mb-media:focus-within img,
.mb-card__media:hover img,
.mb-card__media:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.05);
}

.mb-hero__media {
  aspect-ratio: 16 / 9;
  border-radius: var(--mb-radius-xl);
}

.mb-media,
.mb-card__media {
  aspect-ratio: 2 / 3;
}

/* Hero: single-column grid on every breakpoint; visual order is image, CTA, copy. */
.mb-hero {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  margin-block-end: var(--mb-section-space);
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(18px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: clamp(16px, 3vw, 26px);
  align-items: start;
  border-radius: var(--mb-radius-xl);
  border: 1px solid rgba(242, 189, 79, 0.2);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 157, 43, 0.18), transparent 34rem),
    linear-gradient(180deg, rgba(83, 14, 9, 0.86), rgba(30, 5, 4, 0.94));
}

.mb-hero__media {
  grid-area: media;
}

.mb-hero__copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: var(--mb-section-pad);
}

.mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - var(--mb-section-pad) - var(--mb-section-pad));
  max-width: calc(100% - var(--mb-section-pad) - var(--mb-section-pad));
  margin-inline: var(--mb-section-pad);
  margin-block: clamp(4px, 1.5vw, 12px) clamp(4px, 1.5vw, 12px);
}

.mb-hero__badge,
.mb-badge,
.mb-kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  margin-block-end: 0.9rem;
  padding: 7px 11px;
  border-radius: var(--mb-radius-pill);
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.08);
  border: 1px solid rgba(242, 189, 79, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.mb-hero__actions,
.mb-cta__actions,
.mb-actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* Rows */
.mb-row {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  margin-block-end: var(--mb-section-space);
  padding: clamp(16px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  gap: var(--mb-gap);
  align-items: start;
  border-radius: var(--mb-radius-xl);
  border: 1px solid rgba(242, 189, 79, 0.17);
  background:
    linear-gradient(135deg, rgba(255, 229, 154, 0.06), rgba(229, 40, 29, 0.055)),
    rgba(42, 7, 6, 0.72);
}

.mb-row--reverse:not(.mb-hero) {
  grid-template-areas:
    "copy"
    "media";
}

.mb-row--stack:not(.mb-hero),
.mb-row--long:not(.mb-hero) {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
}

.mb-copy {
  grid-area: copy;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-block-start: 0;
  align-self: start;
}

.mb-media {
  grid-area: media;
  padding-block-start: 0;
  align-self: start;
}

.mb-copy > :last-child {
  margin-block-end: 0;
}

.mb-copy,
.mb-copy p,
.mb-copy ul,
.mb-copy ol,
.mb-hero__copy,
.mb-hero__copy p,
.mb-hero__copy ul,
.mb-hero__copy ol,
.mb-cta__copy,
.mb-cta__copy p,
.mb-cta__copy ul,
.mb-cta__copy ol,
.mb-card__copy,
.mb-card__copy p,
.mb-card__copy ul,
.mb-card__copy ol {
  max-width: 100%;
}

/* CTA and buttons */
.mb-cta {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  margin-block-end: var(--mb-section-space);
  padding: clamp(18px, 3.6vw, 34px);
  display: grid;
  gap: clamp(14px, 2.5vw, 22px);
  align-items: start;
  border-radius: var(--mb-radius-xl);
  border: 1px solid rgba(255, 229, 154, 0.34);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 229, 154, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(126, 20, 12, 0.96), rgba(56, 8, 6, 0.96));
  box-shadow: 0 22px 70px rgba(229, 40, 29, 0.18);
}

.mb-cta__copy {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.mb-btn {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  box-sizing: border-box;
  border-radius: var(--mb-radius-pill);
  border: 1px solid transparent;
  font-family: var(--mb-font);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mb-article a.mb-btn,
.mb-article .mb-btn,
.mbpk-article a.mb-btn,
.mbpk-article .mb-btn,
.mbpk-page .mb-article a.mb-btn,
.mbpk-page .mb-article .mb-btn {
  color: #ffffff;
  background: linear-gradient(180deg, #ff5130 0%, #df211a 46%, #b90f14 100%);
  border-color: rgba(255, 229, 154, 0.48);
  box-shadow: 0 12px 30px rgba(229, 40, 29, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mb-article a.mb-btn:hover,
.mb-article a.mb-btn:focus-visible,
.mb-article .mb-btn:hover,
.mb-article .mb-btn:focus-visible,
.mbpk-article a.mb-btn:hover,
.mbpk-article a.mb-btn:focus-visible,
.mbpk-article .mb-btn:hover,
.mbpk-article .mb-btn:focus-visible,
.mbpk-page .mb-article a.mb-btn:hover,
.mbpk-page .mb-article a.mb-btn:focus-visible,
.mbpk-page .mb-article .mb-btn:hover,
.mbpk-page .mb-article .mb-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #ff6b3b 0%, #f12d20 48%, #cf1618 100%);
  border-color: rgba(255, 229, 154, 0.78);
  box-shadow: 0 16px 38px rgba(229, 40, 29, 0.44), 0 0 34px rgba(242, 189, 79, 0.15);
  transform: translateY(-1px);
}

.mb-article a.mb-btn--accent,
.mb-article .mb-btn--accent,
.mbpk-article a.mb-btn--accent,
.mbpk-article .mb-btn--accent,
.mbpk-page .mb-article a.mb-btn--accent,
.mbpk-page .mb-article .mb-btn--accent {
  color: #2a0706;
  background: linear-gradient(180deg, #fff0ad 0%, #f2bd4f 54%, #d98b20 100%);
  border-color: rgba(255, 245, 190, 0.74);
  box-shadow: 0 12px 32px rgba(242, 189, 79, 0.28);
}

.mb-article a.mb-btn--accent:hover,
.mb-article a.mb-btn--accent:focus-visible,
.mb-article .mb-btn--accent:hover,
.mb-article .mb-btn--accent:focus-visible,
.mbpk-article a.mb-btn--accent:hover,
.mbpk-article a.mb-btn--accent:focus-visible,
.mbpk-article .mb-btn--accent:hover,
.mbpk-article .mb-btn--accent:focus-visible,
.mbpk-page .mb-article a.mb-btn--accent:hover,
.mbpk-page .mb-article a.mb-btn--accent:focus-visible,
.mbpk-page .mb-article .mb-btn--accent:hover,
.mbpk-page .mb-article .mb-btn--accent:focus-visible {
  color: #210504;
  background: linear-gradient(180deg, #fff6c8 0%, #ffd36d 54%, #e99b24 100%);
}

.mb-article a.mb-btn--secondary,
.mb-article .mb-btn--secondary,
.mbpk-article a.mb-btn--secondary,
.mbpk-article .mb-btn--secondary,
.mbpk-page .mb-article a.mb-btn--secondary,
.mbpk-page .mb-article .mb-btn--secondary {
  color: var(--mb-gold-2);
  background: rgba(255, 229, 154, 0.075);
  border-color: rgba(242, 189, 79, 0.42);
  box-shadow: none;
}

.mb-article a.mb-btn--secondary:hover,
.mb-article a.mb-btn--secondary:focus-visible,
.mb-article .mb-btn--secondary:hover,
.mb-article .mb-btn--secondary:focus-visible,
.mbpk-article a.mb-btn--secondary:hover,
.mbpk-article a.mb-btn--secondary:focus-visible,
.mbpk-article .mb-btn--secondary:hover,
.mbpk-article .mb-btn--secondary:focus-visible,
.mbpk-page .mb-article a.mb-btn--secondary:hover,
.mbpk-page .mb-article a.mb-btn--secondary:focus-visible,
.mbpk-page .mb-article .mb-btn--secondary:hover,
.mbpk-page .mb-article .mb-btn--secondary:focus-visible {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
}

.mb-btn:focus-visible,
.mb-site-btn:focus-visible,
.mb-site-menu-toggle:focus-visible,
.mb-site-burger:focus-visible {
  outline: 3px solid rgba(255, 229, 154, 0.62);
  outline-offset: 3px;
}

/* Card grids */
.mb-article .mb-grid,
.mb-article .mb-slot-grid,
.mbpk-article .mb-grid,
.mbpk-article .mb-slot-grid,
.mbpk-page .mb-article .mb-grid,
.mbpk-page .mb-article .mb-slot-grid {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  margin-block-end: var(--mb-section-space);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 26px);
  align-items: stretch;
}

.mb-article .mb-grid > .mb-card,
.mb-article .mb-slot-grid > .mb-card,
.mbpk-article .mb-grid > .mb-card,
.mbpk-article .mb-slot-grid > .mb-card,
.mbpk-page .mb-article .mb-grid > .mb-card,
.mbpk-page .mb-article .mb-slot-grid > .mb-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  grid-column: auto;
}

.mb-card {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(242, 189, 79, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 229, 154, 0.06), rgba(229, 40, 29, 0.04)),
    rgba(35, 5, 4, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.mb-card__body,
.mb-card__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: var(--mb-card-pad);
}

.mb-card__title {
  margin-block-end: 0.55em;
}

.mb-card__copy {
  width: 100%;
  max-width: 100%;
  color: var(--mb-text-soft);
}

.mb-card > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content) {
  min-width: 0;
  max-width: calc(100% - var(--mb-card-pad) - var(--mb-card-pad));
  margin-inline: var(--mb-card-pad);
}

.mb-card > .mb-card__media + :not(.mb-card__body):not(.mb-card__content) {
  margin-block-start: var(--mb-card-pad);
}

.mb-card > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content):last-child {
  margin-block-end: var(--mb-card-pad);
}

/* FAQ */
.mb-faq {
  width: 100%;
  max-width: var(--mb-container);
  min-width: 0;
  margin-inline: auto;
  margin-block-end: var(--mb-section-space);
  display: grid;
  gap: 12px;
}

.mb-faq details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(242, 189, 79, 0.18);
  background: rgba(255, 229, 154, 0.055);
}

.mb-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 16px 18px;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.mb-faq summary::-webkit-details-marker {
  display: none;
}

.mb-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  font-weight: 950;
  line-height: 1;
}

.mb-faq details[open] summary::after {
  content: "−";
}

.mb-faq details > :not(summary) {
  margin-inline: 18px;
  margin-block: 0 16px;
  color: var(--mb-text-soft);
}

/* Tables: wide tables scroll inside the wrapper, not the page. */
.mb-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  display: block;
  touch-action: pan-x;
  margin-block: 1.25rem var(--mb-section-space);
  border: 1px solid rgba(242, 189, 79, 0.22);
  border-radius: var(--mb-radius-lg);
  background: rgba(10, 2, 2, 0.36);
}

table.mb-table {
  width: 100%;
  min-width: 620px;
  max-width: none;
  direction: ltr;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--mb-text-soft);
  background: rgba(42, 7, 6, 0.8);
}

table.mb-table caption {
  caption-side: top;
  padding: 12px 14px;
  color: var(--mb-gold-2);
  font-weight: 900;
  text-align: start;
}

table.mb-table th,
table.mb-table td {
  padding: 13px 14px;
  border-block-end: 1px solid rgba(242, 189, 79, 0.14);
  border-inline-end: 1px solid rgba(242, 189, 79, 0.1);
  text-align: start;
  vertical-align: top;
  line-height: 1.45;
}

table.mb-table th {
  color: #2a0706;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-gold));
  font-weight: 950;
}

table.mb-table tr:nth-child(even) td {
  background: rgba(255, 229, 154, 0.04);
}

table.mb-table tr:last-child td {
  border-block-end: 0;
}

table.mb-table th:last-child,
table.mb-table td:last-child {
  border-inline-end: 0;
}

/* Standalone divider only; no decorative pseudo-elements are added to grids or rows. */
.mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  height: 1px;
  margin: 0 auto var(--mb-section-space);
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 189, 79, 0.58), rgba(229, 40, 29, 0.5), transparent);
}

/* Embeds and utility blocks */
.mb-embed,
.mb-video {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-block-end: var(--mb-section-space);
  border-radius: var(--mb-radius-lg);
}

.mb-embed iframe,
.mb-video iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--mb-radius-lg);
}

/* Desktop layout */
@media (min-width: 860px) {
  .mb-row:not(.mb-row--stack):not(.mb-row--long):not(.mb-hero) {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas: "copy media";
  }

  .mb-row--reverse:not(.mb-row--stack):not(.mb-row--long):not(.mb-hero) {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-areas: "media copy";
  }

  .mb-row--stack:not(.mb-hero),
  .mb-row--long:not(.mb-hero) {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "copy";
  }

  .mb-cta {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    align-items: center;
  }

  .mb-cta__actions {
    justify-content: flex-end;
  }
}

/* Card grid breakpoints: mobile 1 column, tablet 2 columns, desktop 3 columns. */
@media (min-width: 640px) and (max-width: 979px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .mb-article .mb-grid,
  .mb-article .mb-slot-grid,
  .mbpk-article .mb-grid,
  .mbpk-article .mb-slot-grid,
  .mbpk-page .mb-article .mb-grid,
  .mbpk-page .mb-article .mb-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix,
  .mb-article .mb-slot-grid--orphan-fix,
  .mbpk-article .mb-grid--orphan-fix,
  .mbpk-article .mb-slot-grid--orphan-fix,
  .mbpk-page .mb-article .mb-grid--orphan-fix,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .mb-article .mb-grid--orphan-fix > .mb-card,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card {
    grid-column: span 2;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:nth-last-child(2):nth-child(3n+1),
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+2) {
    grid-column: span 3;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 0;
    align-items: stretch;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__media {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    border-radius: var(--mb-radius-lg);
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__body,
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > .mb-card__content {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content),
  .mbpk-page .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body):not(.mb-card__content) {
    grid-column: 1;
    min-width: 0;
  }
}

/* Mobile safety */
@media (max-width: 767px) {
  .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    gap: 7px;
    padding-block: 8px;
  }

  .mb-site-brand {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
  }

  .mb-site-brand__logo {
    max-height: clamp(26px, 7.5vw, 40px);
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    aspect-ratio: 800 / 128;
  }

  .mb-site-header__actions,
  .mb-site-actions {
    flex: 0 0 auto;
    flex-shrink: 0;
    gap: 6px;
  }

  .mb-site-btn {
    display: inline-flex;
    max-width: min(34vw, 8.5rem);
    min-height: 32px;
    padding: 7px 9px;
    font-size: clamp(0.72rem, 2.7vw, 0.86rem);
  }

  .mb-site-menu-toggle,
  .mb-site-burger {
    width: 34px;
    height: 34px;
    max-width: 34px;
    border-radius: 10px;
  }

  .mb-site-nav__list {
    justify-content: flex-start;
  }

  .mb-page-strip__inner {
    padding-block: 8px;
    font-size: 0.84rem;
  }

  .mb-site-footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 639px) {
  .mb-article,
  .mbpk-article,
  .mbpk-page .mb-article {
    max-width: 100%;
    padding-inline: clamp(12px, 4vw, 18px);
    border-radius: 18px;
  }

  body.mb-site main .mb-article {
    width: min(calc(100% - var(--mb-site-gutter) - var(--mb-site-gutter)), var(--mb-container));
  }

  .mb-hero,
  .mb-row,
  .mb-cta,
  .mb-card,
  .mb-faq details,
  .mb-table-wrap {
    border-radius: 18px;
  }

  .mb-hero {
    padding-inline: 0;
    padding-block-start: 0;
  }

  .mb-hero__copy {
    padding-inline: var(--mb-section-pad);
  }

  .mb-hero > .mb-cta {
    width: calc(100% - var(--mb-section-pad) - var(--mb-section-pad));
    max-width: calc(100% - var(--mb-section-pad) - var(--mb-section-pad));
    margin-inline: var(--mb-section-pad);
  }

  .mb-row,
  .mb-cta {
    padding: clamp(14px, 4vw, 18px);
  }

  .mb-hero__actions,
  .mb-cta__actions,
  .mb-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .mb-article .mb-btn,
  .mb-article a.mb-btn,
  .mbpk-article .mb-btn,
  .mbpk-article a.mb-btn,
  .mbpk-page .mb-article .mb-btn,
  .mbpk-page .mb-article a.mb-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .mb-media,
  .mb-media img,
  .mb-card__media,
  .mb-card__media img,
  .mb-hero__media,
  .mb-hero__media img {
    max-width: 100%;
  }

  table.mb-table {
    min-width: 620px;
  }

  table.mb-table th,
  table.mb-table td {
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-hero__media img,
  .mb-media img,
  .mb-card__media img,
  .mb-btn,
  .mb-site-btn,
  .mb-site-nav__link,
  .mb-footer-nav__link {
    transition: none;
  }

  .mb-hero__media:hover img,
  .mb-hero__media:focus-within img,
  .mb-media:hover img,
  .mb-media:focus-within img,
  .mb-card__media:hover img,
  .mb-card__media:focus-within img,
  .mb-btn:hover,
  .mb-btn:focus-visible {
    transform: none;
  }
}

/* fair-pages-kit: Beautiful Site TOC (converter-injected) */
.mb-article .mb-toc,
.mbpk-article .mb-toc,
.mbpk-page .mb-article .mb-toc {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block-end: var(--mb-stack-gap, var(--mb-space-7, clamp(20px, 4vw, 42px)));
  padding: clamp(20px, 4vw, 36px) var(--mb-page-pad, var(--mb-gutter, clamp(16px, 3.4vw, 28px)));
  border: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
  border-radius: var(--mb-radius-lg, 22px);
  background:
    radial-gradient(circle at 88% 10%, rgba(227, 178, 87, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(36, 16, 8, 0.94), rgba(27, 11, 5, 0.88));
  box-shadow: var(--mb-shadow, 0 22px 70px rgba(0, 0, 0, 0.42));
}

.mb-article .mb-toc__summary,
.mbpk-article .mb-toc__summary,
.mbpk-page .mb-article .mb-toc__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mb-article .mb-toc__summary::-webkit-details-marker,
.mbpk-article .mb-toc__summary::-webkit-details-marker,
.mbpk-page .mb-article .mb-toc__summary::-webkit-details-marker {
  display: none;
}

.mb-article .mb-toc__summary::after,
.mbpk-article .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc__summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-gold-2, #ffd985);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-article .mb-toc[open] .mb-toc__summary::after,
.mbpk-page .mb-article .mb-toc[open] .mb-toc__summary::after {
  content: "−";
}

.mb-article .mb-toc__title,
.mbpk-article .mb-toc__title,
.mbpk-page .mb-article .mb-toc__title {
  margin: 0;
  color: var(--mb-gold-2, #ffd985);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.25;
}

.mb-article .mb-toc__list,
.mbpk-article .mb-toc__list,
.mbpk-page .mb-article .mb-toc__list {
  margin: clamp(14px, 2.5vw, 20px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: clamp(8px, 1.5vw, 12px);
}

.mb-article .mb-toc__list--sub,
.mbpk-article .mb-toc__list--sub,
.mbpk-page .mb-article .mb-toc__list--sub {
  margin: clamp(8px, 1.5vw, 10px) 0 0;
  padding-left: clamp(12px, 2vw, 18px);
  border-left: 1px solid var(--mb-border, rgba(255, 255, 255, 0.12));
}

.mb-article .mb-toc__item,
.mbpk-article .mb-toc__item,
.mbpk-page .mb-article .mb-toc__item {
  margin: 0;
}

.mb-article .mb-toc__link,
.mbpk-article .mb-toc__link,
.mbpk-page .mb-article .mb-toc__link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--mb-radius-sm, 12px);
  color: var(--mb-text, var(--mb-ink, #f2f2ee));
  text-decoration: none;
  background: rgba(255, 246, 220, 0.03);
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mb-article .mb-toc__num,
.mbpk-article .mb-toc__num,
.mbpk-page .mb-article .mb-toc__num {
  flex: 0 0 auto;
  min-width: 2.2rem;
  color: var(--mb-gold, #e3b257);
  font-variant-numeric: tabular-nums;
}

.mb-article .mb-toc__text,
.mbpk-article .mb-toc__text,
.mbpk-page .mb-article .mb-toc__text {
  flex: 1 1 auto;
}

.mb-article .mb-toc__link:hover,
.mbpk-article .mb-toc__link:hover,
.mbpk-page .mb-article .mb-toc__link:hover,
.mb-article .mb-toc__link:focus-visible,
.mbpk-article .mb-toc__link:focus-visible,
.mbpk-page .mb-article .mb-toc__link:focus-visible {
  color: var(--mb-gold-2, #ffd985);
  border-color: var(--mb-border-strong, rgba(255, 255, 255, 0.24));
  background: rgba(227, 178, 87, 0.08);
}

@media (max-width: 640px) {
  .mb-article .mb-toc,
  .mbpk-article .mb-toc,
  .mbpk-page .mb-article .mb-toc {
    max-width: 100%;
  }
}

