/* Main design tokens for shell chrome and article content */
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-page-pad: clamp(14px, 4vw, 28px);
  --mb-section-pad: clamp(16px, 3vw, 30px);
  --mb-card-pad: clamp(16px, 2.6vw, 24px);
  --mb-hero-pad: clamp(16px, 4vw, 34px);

  --mb-bg: #06143a;
  --mb-bg-2: #071e52;
  --mb-bg-3: #0a3474;

  --mb-panel: rgba(7, 23, 58, 0.94);
  --mb-panel-2: rgba(10, 43, 103, 0.88);
  --mb-panel-3: rgba(5, 16, 43, 0.96);

  --mb-primary: #ffb331;
  --mb-primary-2: #ff7a1c;
  --mb-gold: #ffbf45;
  --mb-gold-2: #ffd86f;
  --mb-red: #ff3f1f;
  --mb-red-2: #ff6a2c;
  --mb-teal: #28c8ff;
  --mb-green: #28cf68;

  --mb-text: #f7fbff;
  --mb-text-soft: #dbeaff;
  --mb-muted: #a9bfdd;
  --mb-muted-2: #7f98bd;

  --mb-border: rgba(255, 190, 69, 0.28);
  --mb-border-strong: rgba(255, 190, 69, 0.55);
  --mb-line: rgba(122, 190, 255, 0.22);
  --mb-line-strong: rgba(255, 190, 69, 0.48);

  --mb-radius-sm: 12px;
  --mb-radius-md: 18px;
  --mb-radius-lg: 28px;
  --mb-radius-xl: 36px;
  --mb-pill: 999px;

  --mb-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --mb-shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.28);
  --mb-glow: 0 0 0 1px rgba(255, 190, 69, 0.22), 0 18px 48px rgba(255, 115, 28, 0.18);
  --mb-focus: 0 0 0 3px rgba(40, 200, 255, 0.34);
}

/* Page shell */
body.mb-site {
  margin: 0;
  min-height: 100vh;
  direction: ltr;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 78% 8%, rgba(40, 200, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 14% 18%, rgba(255, 122, 28, 0.16), transparent 24rem),
    linear-gradient(180deg, #04102e 0%, var(--mb-bg) 44%, #030915 100%);
}

/* Header and navigation */
.mb-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: var(--mb-font);
  color: var(--mb-text);
  background: rgba(4, 15, 43, 0.78);
  border-bottom: 1px solid rgba(255, 190, 69, 0.18);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mb-site-header__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: 10px var(--mb-page-pad);
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 2vw, 18px);
  min-width: 0;
}

.mb-site-brand {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mb-text);
  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;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--mb-text);
}

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

.mb-site-btn,
.mb-site-drawer__cta {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px clamp(12px, 2vw, 18px);
  border-radius: var(--mb-pill);
  border: 1px solid rgba(255, 211, 111, 0.55);
  font-family: var(--mb-font);
  font-weight: 850;
  font-size: 14px;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, var(--mb-red-2), var(--mb-red));
  box-shadow: 0 10px 26px rgba(255, 63, 31, 0.28);
  overflow-wrap: anywhere;
  white-space: normal;
}

.mb-site-btn:hover,
.mb-site-btn:focus-visible,
.mb-site-drawer__cta:hover,
.mb-site-drawer__cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #ff7d32, #f53116);
  box-shadow: var(--mb-focus), 0 14px 34px rgba(255, 63, 31, 0.36);
  outline: none;
}

.mb-site-btn--apk,
.mb-site-drawer__cta--apk {
  color: var(--mb-gold-2);
  background: rgba(255, 179, 49, 0.08);
  border-color: rgba(255, 190, 69, 0.62);
  box-shadow: none;
}

.mb-site-btn--apk:hover,
.mb-site-btn--apk:focus-visible,
.mb-site-drawer__cta--apk:hover,
.mb-site-drawer__cta--apk:focus-visible {
  color: #06143a;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-primary));
  outline: none;
}

.mb-site-nav {
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.mb-site-nav__list {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  scrollbar-width: none;
}

.mb-site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: var(--mb-pill);
  border: 1px solid rgba(255, 190, 69, 0.24);
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  line-height: 1.15;
}

.mb-site-nav__link:hover,
.mb-site-nav__link:focus-visible,
.mb-site-nav__link[aria-current="page"] {
  color: #06143a;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-primary));
  border-color: rgba(255, 216, 111, 0.88);
  outline: none;
}

/* Off-canvas drawer base styling */
.mb-site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 999;
  color: var(--mb-text);
  font-family: var(--mb-font);
  background: rgba(2, 8, 24, 0.74);
}

.mb-site-drawer__panel {
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--mb-text);
  background:
    radial-gradient(circle at 80% 8%, rgba(40, 200, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(7, 30, 82, 0.98), rgba(3, 11, 31, 0.98));
  border-inline-start: 1px solid rgba(255, 190, 69, 0.22);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.42);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

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

.mb-site-drawer__nav,
.mb-site-drawer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mb-site-drawer__link {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--mb-text-soft);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 190, 69, 0.14);
  text-decoration: none;
  font-weight: 760;
  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: #06143a;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-primary));
  border-color: rgba(255, 216, 111, 0.85);
  outline: none;
}

/* Compact page strip and breadcrumbs */
.mb-page-strip {
  font-family: var(--mb-font);
  color: var(--mb-muted);
  background: rgba(4, 14, 39, 0.72);
  border-bottom: 1px solid rgba(255, 190, 69, 0.13);
}

.mb-page-strip__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: 8px var(--mb-page-pad);
  box-sizing: border-box;
}

.mb-breadcrumbs,
.mb-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--mb-muted);
  font-size: 13px;
  line-height: 1.35;
}

.mb-breadcrumbs a {
  color: var(--mb-text-soft);
  text-decoration: none;
}

.mb-breadcrumbs a:hover,
.mb-breadcrumbs a:focus-visible {
  color: var(--mb-gold-2);
  outline: none;
}

/* Footer */
.mb-site-footer {
  font-family: var(--mb-font);
  color: var(--mb-muted);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 122, 28, 0.11), transparent 19rem),
    linear-gradient(180deg, rgba(4, 15, 43, 0.95), rgba(2, 7, 20, 0.98));
  border-top: 1px solid rgba(255, 190, 69, 0.18);
}

.mb-site-footer__inner {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: clamp(24px, 5vw, 42px) var(--mb-page-pad);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

.mb-site-footer a {
  color: var(--mb-text-soft);
  text-decoration: none;
}

.mb-site-footer a:hover,
.mb-site-footer a:focus-visible {
  color: var(--mb-gold-2);
  outline: none;
}

.mb-footer-brand {
  min-width: 0;
}

.mb-footer-brand__logo {
  display: block;
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.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: 9px;
}

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

.mb-footer-nav__link {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border-radius: var(--mb-pill);
  border: 1px solid rgba(255, 190, 69, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--mb-text-soft);
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
}

/* Article root and safe scoped box model */
.mb-article,
.mbpk-article,
.mbpk-page .mb-article {
  box-sizing: border-box;
  direction: ltr;
  text-align: start;
  width: min(100%, var(--mb-container));
  max-width: var(--mb-container);
  margin-inline: auto;
  padding: clamp(16px, 4vw, 34px);
  font-family: var(--mb-font);
  color: var(--mb-text);
  background:
    radial-gradient(circle at 86% 4%, rgba(40, 200, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 5% 12%, rgba(255, 122, 28, 0.12), transparent 20rem),
    linear-gradient(180deg, rgba(7, 24, 61, 0.96), rgba(4, 12, 32, 0.97));
  border: 1px solid rgba(255, 190, 69, 0.16);
  border-radius: var(--mb-radius-xl);
  box-shadow: var(--mb-shadow);
}

.mb-article *,
.mb-article *::before,
.mb-article *::after,
.mbpk-article *,
.mbpk-article *::before,
.mbpk-article *::after,
.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: 100%;
  margin-inline: auto;
  min-width: 0;
}

/* General article typography */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) {
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.72;
  overflow-wrap: break-word;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
  margin-block-end: 0.62em;
  color: var(--mb-text);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h1 {
  font-size: clamp(32px, 6vw, 58px);
  text-shadow: 0 3px 0 rgba(2, 7, 20, 0.38), 0 10px 26px rgba(255, 122, 28, 0.18);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h3 {
  font-size: clamp(21px, 2.8vw, 28px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) h4 {
  font-size: clamp(18px, 2.2vw, 22px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(p, ul, ol, dl, blockquote, figure) {
  margin-block-start: 0;
  margin-block-end: 1em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) p {
  color: var(--mb-text-soft);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) strong {
  color: var(--mb-text);
  font-weight: 900;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn) {
  color: var(--mb-gold-2);
  text-decoration-color: rgba(255, 216, 111, 0.45);
  text-underline-offset: 0.18em;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn):hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a:not(.mb-btn):focus-visible {
  color: var(--mb-teal);
  text-decoration-color: rgba(40, 200, 255, 0.65);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(img, svg, video, iframe) {
  max-width: 100%;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) img {
  height: auto;
  display: block;
}

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

/* Full-width text contract for sections */
:is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy),
:is(.mb-copy, .mb-hero__copy, .mb-cta__copy, .mb-card__copy) :is(p, ul, ol),
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(ul, ol) {
  max-width: 100%;
}

/* Section spacing */
.mb-hero,
.mb-row,
.mb-cta,
.mb-grid,
.mb-slot-grid,
.mb-faq,
.mb-table-wrap,
.mb-divider {
  margin-block-end: clamp(24px, 5vw, 52px);
}

.mb-section-title {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 clamp(14px, 3vw, 24px);
  color: var(--mb-text);
}

/* Hero: mandatory single-column visual order media, CTA, copy */
.mb-hero {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  padding-inline: 0;
  padding-block-start: 0;
  padding-block-end: clamp(18px, 4vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "cta"
    "copy";
  gap: 0;
  min-width: 0;
  border-radius: var(--mb-radius-xl);
  border: 1px solid rgba(255, 190, 69, 0.24);
  background:
    radial-gradient(circle at 78% 16%, rgba(40, 200, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(10, 43, 103, 0.78), rgba(4, 14, 39, 0.96));
  box-shadow: var(--mb-shadow);
}

.mb-hero__media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: var(--mb-radius-xl) var(--mb-radius-xl) var(--mb-radius-md) var(--mb-radius-md);
  overflow: hidden;
  overflow: clip;
  background: #06143a;
  box-shadow: inset 0 0 0 1px rgba(255, 190, 69, 0.18);
}

.mb-hero__media img,
.mb-hero__media picture,
.mb-hero__media picture img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.mb-hero__media img {
  object-fit: cover;
  border-radius: inherit;
  transition: transform 260ms ease, filter 260ms ease;
  cursor: pointer;
}

.mb-hero__media:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) brightness(1.04);
}

.mb-hero > .mb-cta {
  grid-area: cta;
  width: calc(100% - (var(--mb-hero-pad) * 2));
  max-width: calc(100% - (var(--mb-hero-pad) * 2));
  margin-inline: var(--mb-hero-pad);
  margin-block-start: clamp(16px, 3vw, 26px);
  margin-block-end: clamp(16px, 3vw, 26px);
}

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

.mb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-block-end: 14px;
  padding: 7px 12px;
  border-radius: var(--mb-pill);
  border: 1px solid rgba(40, 200, 255, 0.42);
  color: var(--mb-teal);
  background: rgba(40, 200, 255, 0.08);
  font-weight: 850;
  font-size: 0.86em;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
}

.mb-hero__lead,
.mb-lead {
  color: var(--mb-text-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
}

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

/* Rows */
.mb-row {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "media"
    "copy";
  align-items: start;
  gap: clamp(18px, 4vw, 34px);
  padding: var(--mb-section-pad);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(255, 190, 69, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 179, 49, 0.07), transparent 38%),
    rgba(8, 27, 67, 0.74);
  box-shadow: var(--mb-shadow-soft);
}

.mb-row--reverse {
  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;
  min-width: 0;
  max-width: 100%;
  padding-block-start: 0;
  align-self: start;
}

.mb-copy > :last-child,
.mb-hero__copy > :last-child,
.mb-cta__copy > :last-child,
.mb-card__body > :last-child {
  margin-block-end: 0;
}

.mb-media {
  grid-area: media;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  padding-block-start: 0;
  aspect-ratio: 2 / 3;
  border-radius: var(--mb-radius-lg);
  overflow: hidden;
  overflow: clip;
  background: #06143a;
  border: 1px solid rgba(255, 190, 69, 0.22);
  box-shadow: var(--mb-glow);
}

.mb-media img,
.mb-media picture,
.mb-media picture img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.mb-media img {
  object-fit: cover;
  border-radius: inherit;
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
  cursor: pointer;
}

.mb-media:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.04);
}

/* CTA blocks and buttons */
.mb-cta {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
  padding: clamp(18px, 4vw, 34px);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(255, 190, 69, 0.34);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 190, 69, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 63, 31, 0.18), rgba(10, 43, 103, 0.78));
  box-shadow: var(--mb-glow);
}

.mb-cta--compact {
  padding: clamp(16px, 3vw, 24px);
}

.mb-cta__copy {
  max-width: 100%;
  min-width: 0;
  margin-block-end: clamp(14px, 3vw, 20px);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:visited,
.mb-btn {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px clamp(18px, 3vw, 28px);
  border-radius: var(--mb-pill);
  border: 1px solid rgba(255, 216, 111, 0.7);
  color: #ffffff;
  background: linear-gradient(180deg, #ff7930 0%, var(--mb-red) 100%);
  box-shadow: 0 14px 34px rgba(255, 63, 31, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-family: var(--mb-font);
  font-weight: 900;
  font-size: 16px;
  line-height: 1.16;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn:focus-visible,
.mb-btn:hover,
.mb-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #ff8b3d 0%, #f33116 100%);
  border-color: rgba(255, 216, 111, 0.9);
  box-shadow: var(--mb-focus), 0 18px 42px rgba(255, 63, 31, 0.42);
  transform: translateY(-1px);
  outline: none;
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:visited,
.mb-btn--secondary {
  color: var(--mb-gold-2);
  background: rgba(255, 179, 49, 0.08);
  border-color: rgba(255, 190, 69, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 190, 69, 0.08);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:hover,
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn--secondary:focus-visible,
.mb-btn--secondary:hover,
.mb-btn--secondary:focus-visible {
  color: #06143a;
  background: linear-gradient(180deg, var(--mb-gold-2), var(--mb-primary));
  border-color: rgba(255, 216, 111, 0.95);
  box-shadow: var(--mb-focus), 0 16px 34px rgba(255, 179, 49, 0.24);
}

/* Grids and cards */
.mb-grid,
.mb-slot-grid {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 3vw, 24px);
}

.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);
  margin-inline: auto;
}

.mb-grid > .mb-card,
.mb-slot-grid > .mb-card,
.mb-grid > .mb-slot,
.mb-slot-grid > .mb-slot {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.mb-card,
.mb-slot {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: var(--mb-radius-lg);
  border: 1px solid rgba(255, 190, 69, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 48, 112, 0.78), rgba(5, 18, 47, 0.92));
  box-shadow: var(--mb-shadow-soft);
}

.mb-card__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2 / 3;
  padding: 0;
  border-radius: var(--mb-radius-lg) var(--mb-radius-lg) var(--mb-radius-sm) var(--mb-radius-sm);
  overflow: hidden;
  overflow: clip;
  background: #06143a;
}

.mb-card__media img,
.mb-card__media picture,
.mb-card__media picture img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.mb-card__media img {
  object-fit: cover;
  border-radius: inherit;
  transition: transform 240ms ease, filter 240ms ease;
  cursor: pointer;
}

.mb-card:hover .mb-card__media img,
.mb-slot:hover .mb-card__media img {
  transform: scale(1.04);
  filter: saturate(1.08) brightness(1.04);
}

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

.mb-card__title {
  color: var(--mb-text);
  margin-block: 0 0.55em;
  font-weight: 900;
  line-height: 1.18;
}

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

.mb-card > :not(.mb-card__media):not(.mb-card__body),
.mb-slot > :not(.mb-card__media):not(.mb-card__body):not(.mb-slot__body) {
  margin-inline: var(--mb-card-pad);
}

.mb-card > :not(.mb-card__media):not(.mb-card__body):first-child,
.mb-slot > :not(.mb-card__media):not(.mb-card__body):not(.mb-slot__body):first-child {
  margin-block-start: var(--mb-card-pad);
}

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

/* Lists */
:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) :is(ul, ol) {
  padding-inline-start: 1.35em;
  padding-inline-end: 0;
  color: var(--mb-text-soft);
}

:is(.mb-article, .mbpk-article, .mbpk-page .mb-article) li {
  margin-block-end: 0.45em;
  padding-inline-start: 0.12em;
}

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

.mb-checklist {
  padding-inline-start: 0;
  list-style: none;
}

.mb-checklist li {
  position: relative;
  padding-inline-start: 1.8em;
}

.mb-checklist li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0.02em;
  color: var(--mb-green);
  font-weight: 900;
}

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

.mb-faq details {
  border-radius: var(--mb-radius-md);
  border: 1px solid rgba(255, 190, 69, 0.18);
  background: rgba(8, 27, 67, 0.76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  padding: 0;
  margin-block-end: 12px;
}

.mb-faq summary {
  min-width: 0;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--mb-text);
  font-weight: 850;
  line-height: 1.35;
  text-align: start;
  list-style-position: inside;
}

.mb-faq summary::marker {
  color: var(--mb-primary);
}

.mb-faq details[open] summary {
  color: var(--mb-gold-2);
  border-bottom: 1px solid rgba(255, 190, 69, 0.15);
}

.mb-faq details > :not(summary) {
  padding-inline: 18px;
}

.mb-faq details > :last-child {
  padding-block-end: 18px;
  margin-block-end: 0;
}

/* Tables with contained mobile horizontal scroll */
.mb-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  margin-block: clamp(18px, 3vw, 28px) clamp(24px, 5vw, 46px);
  border-radius: var(--mb-radius-md);
  border: 1px solid rgba(255, 190, 69, 0.22);
  background: rgba(4, 14, 39, 0.76);
  box-shadow: var(--mb-shadow-soft);
}

table.mb-table {
  width: 100%;
  min-width: 560px;
  direction: ltr;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--mb-text-soft);
  background: transparent;
  font-size: 0.95em;
  line-height: 1.45;
}

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

table.mb-table th,
table.mb-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(122, 190, 255, 0.16);
  text-align: start;
  vertical-align: top;
}

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

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

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

/* Utility blocks */
.mb-note,
.mb-alert {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  margin-block: 0 clamp(20px, 4vw, 38px);
  padding: clamp(15px, 3vw, 22px);
  border-radius: var(--mb-radius-md);
  color: var(--mb-text-soft);
  background: rgba(40, 200, 255, 0.08);
  border: 1px solid rgba(40, 200, 255, 0.28);
}

.mb-alert {
  background: rgba(255, 63, 31, 0.1);
  border-color: rgba(255, 122, 28, 0.36);
}

.mb-divider {
  width: 100%;
  max-width: var(--mb-container);
  margin-inline: auto;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 190, 69, 0.6), rgba(40, 200, 255, 0.36), transparent);
}

/* Tablet layout */
@media (min-width: 640px) {
  .mb-grid,
  .mb-slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .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));
  }
}

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

  .mb-row--reverse {
    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-grid,
  .mb-slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .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: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;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    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;
    border-radius: 0 var(--mb-radius-lg) var(--mb-radius-lg) 0;
  }

  .mb-article .mb-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__body,
  .mbpk-article .mb-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__body,
  .mbpk-page .mb-article .mb-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__body {
    grid-column: 1;
    grid-row: 1;
  }

  .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mb-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-article .mb-slot-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .mbpk-page .mb-article .mb-grid--orphan-fix > .mb-card:last-child:nth-child(3n+1) > :not(.mb-card__media):not(.mb-card__body),
  .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) {
    grid-column: 1;
  }

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

/* Mobile hardening */
@media (max-width: 979px) {
  .mb-site-brand__logo {
    max-height: clamp(26px, 7.5vw, 40px);
  }

  .mb-site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .mb-site-header__actions {
    flex: 0 0 auto;
  }

  .mb-site-btn {
    display: inline-flex;
  }

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

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

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

  .mb-hero,
  .mb-row,
  .mb-cta,
  .mb-grid,
  .mb-slot-grid,
  .mb-faq,
  .mb-table-wrap,
  .mb-note,
  .mb-alert {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mb-row,
  .mb-cta {
    padding: clamp(15px, 4vw, 18px);
    border-radius: 22px;
  }

  .mb-hero {
    border-radius: 22px;
  }

  .mb-hero__media {
    border-radius: 22px 22px 14px 14px;
  }

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

  .mb-hero > .mb-cta {
    width: calc(100% - (clamp(14px, 4vw, 18px) * 2));
    max-width: calc(100% - (clamp(14px, 4vw, 18px) * 2));
    margin-inline: clamp(14px, 4vw, 18px);
  }

  .mb-hero__actions,
  .mb-cta__actions,
  .mb-actions {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .mb-hero__actions > *,
  .mb-cta__actions > *,
  .mb-actions > * {
    min-width: 0;
    max-width: 100%;
  }

  :is(.mb-article, .mbpk-article, .mbpk-page .mb-article) a.mb-btn,
  .mb-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .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 th,
  table.mb-table td {
    white-space: nowrap;
  }

  .mb-table-wrap {
    margin-block-end: 32px;
  }
}

/* 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%;
  }
}

