.home-page {
  --mh-brand: #2563eb;
  --mh-accent: #60a5fa;
  --mh-teal: #60a5fa;
  --mh-ink: #102033;
  --mh-muted: #5a6b80;
  --mh-bg: #f8fbff;
  --mh-soft: #eff6ff;
  --mh-card: #ffffff;
  --mh-line: rgba(34, 76, 104, 0.14);
  --mh-gap: 10px;
  display: block;
  width: 100%;
  overflow: clip;
  color: var(--mh-ink);
  background: var(--mh-bg);
  font-family: var(--site-font-sans, "Nunito Sans", "Segoe UI", Arial, sans-serif);
}

.home-page *,
.home-page *::before,
.home-page *::after {
  box-sizing: border-box;
}

.home-page a,
.home-page button,
.home-page input {
  letter-spacing: 0;
}

.mh-shell {
  width: min(1440px, calc(100% - 20px));
  margin-inline: auto;
}

.mh-hero {
  position: relative;
  margin-top: 10px;
  overflow: hidden;
  border-block: 1px solid rgba(37, 99, 235, 0.16);
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.1), rgba(255, 255, 255, 0.96) 48%, rgba(96, 165, 250, 0.1)),
    #ffffff;
}

.mh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
}

.mh-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 52px;
  min-height: 620px;
  padding-block: 54px;
}

.mh-eyebrow,
.mh-section-heading__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.mh-eyebrow::before,
.mh-section-heading__eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mh-brand), var(--mh-accent));
}

.mh-hero__copy {
  max-width: 720px;
}

.mh-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--mh-ink);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.mh-hero h1 span {
  color: #2563eb;
}

.mh-hero__description {
  max-width: 650px;
  margin: 20px 0 24px;
  color: var(--mh-muted);
  font-size: 18px;
  font-weight: 550;
  line-height: 1.6;
}

.mh-hero-search {
  max-width: 680px;
}

.mh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mh-button,
.mh-section-link,
.mh-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 7px;
  color: var(--mh-ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mh-button--primary {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(115deg, #2563eb, #2563eb);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
}

.mh-button:hover,
.mh-button:focus-visible,
.mh-section-link:hover,
.mh-section-link:focus-visible,
.mh-final-actions a:hover,
.mh-final-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow: 0 12px 24px rgba(31, 72, 105, 0.14);
  outline: 2px solid transparent;
}

.mh-hero__visual {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 440px;
  perspective: 1200px;
  isolation: isolate;
}

.mh-discovery-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
}

.mh-discovery-scene canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
  opacity: 0;
  transition: opacity 260ms ease;
}

.mh-discovery-scene.is-ready canvas {
  opacity: 1;
}

.mh-discovery-scene__fallback {
  position: absolute;
  inset: 8% 5%;
  z-index: 1;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mh-discovery-scene.is-ready .mh-discovery-scene__fallback {
  opacity: 0;
  visibility: hidden;
}

.mh-scene-fallback-device,
.mh-scene-fallback-controller,
.mh-scene-fallback-tile {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(31, 72, 105, 0.13);
}

.mh-scene-fallback-device {
  inset: 46% 21% 9%;
  border-radius: 22px;
  background: linear-gradient(145deg, #eff6ff, #ffffff 46%, #eff6ff);
  transform: perspective(700px) rotateX(54deg) rotateZ(-3deg);
}

.mh-scene-fallback-controller {
  inset: 18% 27% 40%;
  border-radius: 40% 40% 32% 32%;
  background: linear-gradient(150deg, #ffffff, #eff6ff);
  transform: rotate(-2deg);
}

.mh-scene-fallback-tile {
  width: 15%;
  aspect-ratio: 1;
  border-radius: 18px;
  color: #ffffff;
  font-size: clamp(15px, 3vw, 24px);
  font-weight: 800;
}

.mh-scene-fallback-tile--apps { top: 8%; left: 8%; background: #2563eb; transform: rotate(-10deg); }
.mh-scene-fallback-tile--play { top: 10%; right: 7%; background: #60a5fa; transform: rotate(9deg); }
.mh-scene-fallback-tile--store { bottom: 8%; left: 6%; background: #7c3aed; transform: rotate(8deg); }
.mh-scene-fallback-tile--articles { right: 5%; bottom: 7%; background: #f59e0b; transform: rotate(-8deg); }

.mh-discovery-scene[data-scene-state="failed"]::after {
  content: "Explore apps, games, and guides";
  position: absolute;
  right: 50%;
  bottom: 7%;
  z-index: 3;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--mh-muted);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  transform: translateX(50%);
  white-space: nowrap;
}

.mh-quick-nav {
  padding-block: 12px;
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  border-bottom: 1px solid var(--mh-line);
}

.mh-quick-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--mh-gap);
}

.mh-quick-nav--hero {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(96, 165, 250, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(239, 246, 255, 0.88));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.12), inset 0 1px 0 #ffffff;
}

.mh-quick-nav--hero .mh-quick-nav__grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mh-quick-nav--hero .mh-quick-link {
  min-height: 118px;
  grid-template-columns: 52px minmax(0, 1fr) 32px;
  padding: 14px;
  border-radius: 16px;
}

.mh-quick-nav--hero .mh-quick-link__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.mh-quick-nav--hero .mh-quick-link__icon img {
  width: 32px;
  height: 32px;
}

.mh-quick-link {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 10px 11px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.34);
  border-radius: 12px;
  color: var(--mh-ink);
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 52%, #eff6ff 100%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.11), inset 0 1px 0 #ffffff;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mh-quick-link::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 0;
  width: 4px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: 0 0 14px rgba(37, 99, 235, 0.45);
}

.mh-quick-link:hover,
.mh-quick-link:focus-visible {
  transform: translateY(-3px);
  border-color: #2563eb;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.2), 0 0 0 3px rgba(96, 165, 250, 0.12);
  outline: 0;
}

.mh-quick-link__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(96, 165, 250, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.mh-quick-link__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.mh-quick-link strong,
.mh-quick-link small {
  display: block;
}

.mh-quick-link strong {
  color: #102a56;
  font-size: 15px;
  font-weight: 850;
}

.mh-quick-link small {
  margin-top: 2px;
  color: var(--mh-muted);
  font-size: 12px;
  font-weight: 600;
}

.mh-quick-link__arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #ffffff !important;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  box-shadow: 0 7px 14px rgba(37, 99, 235, 0.24);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(15, 35, 80, 0.2);
  text-align: center;
}

body.homepage-v2 .mh-quick-nav a > .mh-quick-link__arrow {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.mh-content-section,
.mh-articles,
.mh-support,
.mh-faq,
.mh-final {
  padding-block: 58px;
  border-bottom: 1px solid var(--mh-line);
}

.mh-content-section--apps {
  background: #f8fbff;
}

.mh-content-section--playgames {
  background: #ffffff;
}

.mh-content-section--topgames {
  background: #f8fbff;
}

.mh-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.mh-section-heading h2 {
  margin: 0;
  color: var(--mh-ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.16;
}

.mh-section-heading p {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--mh-muted);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.55;
}

.mh-section-heading__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.mh-result-count {
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 700;
}

body.homepage-v2 .mh-section-link {
  position: relative;
  gap: 9px;
  overflow: hidden;
  border-color: rgba(37,99,235, 0.35);
  color: #ffffff;
  background: linear-gradient(115deg, #2563eb 0%, #2563eb 52%, #2563eb 100%);
  box-shadow: 0 10px 22px rgba(37,99,235, 0.2);
}

body.homepage-v2 .mh-section-link::after {
  content: "\2192";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font-size: 15px;
  line-height: 1;
}

.mh-section-view-all {
  display: none;
}

.mh-category-chips {
  display: flex;
  gap: 7px;
  margin: 0 0 6px;
  padding: 6px 4px 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 99, 235, 0.35) transparent;
}

.mh-category-chip {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  color: #41546a;
  background: rgba(255, 255, 255, 0.9);
  font: 750 13px/1 var(--site-font-sans, "Nunito Sans", sans-serif);
  cursor: pointer;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.mh-category-chip:hover,
.mh-category-chip:focus-visible {
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
  outline: 2px solid rgba(37, 99, 235, 0.15);
  outline-offset: 1px;
}

.mh-category-chip.is-selected {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(110deg, #2563eb, #2563eb);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.mh-content-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--mh-gap);
  min-height: 260px;
}

.mh-content-grid.is-updating {
  animation: mh-grid-in 240ms ease both;
}

.mh-content-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  color: var(--mh-ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(31, 72, 105, 0.08);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mh-content-card:hover,
.mh-content-card:focus-visible {
  z-index: 1;
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 18px 34px rgba(31, 72, 105, 0.16);
  outline: 0;
}

.mh-content-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eff6ff;
}

.mh-content-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.mh-content-card:hover .mh-content-card__media img,
.mh-content-card:focus-visible .mh-content-card__media img {
  transform: scale(1.035);
}

.mh-content-card--apps .mh-content-card__media {
  padding: 0;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.08));
}

.mh-content-card--apps .mh-content-card__media img {
  display: block;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.mh-content-card--topgames .mh-content-card__media {
  padding: 0;
  background: #eff6ff;
}

.mh-content-card--topgames .mh-content-card__media img {
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.mh-content-card__body {
  display: flex;
  min-height: 92px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 10px;
}

.mh-content-card__category {
  display: block;
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  max-width: calc(100% - 16px);
  overflow: hidden;
  color: #2563eb;
  padding: 5px 8px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 14px rgba(15, 48, 105, 0.16);
  backdrop-filter: blur(7px);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-content-card--topgames .mh-content-card__category {
  color: #2563eb;
  background: rgba(255, 255, 255, 0.92);
}

.mh-content-card__title {
  display: -webkit-box;
  min-height: 38px;
  margin-top: 4px;
  overflow: hidden;
  color: var(--mh-ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-content-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 6px;
  margin: auto -10px -10px;
  padding: 6px 10px;
  border-top: 1px solid rgba(34, 76, 104, 0.1);
  color: #40566b;
  background: #f7fbfc;
  font-size: 11px;
  font-weight: 800;
}

.mh-content-card__action span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
  color: var(--mh-brand);
  background: rgba(37, 99, 235, 0.1);
  font-size: 14px;
  line-height: 1;
  transition: transform 160ms ease;
}

.mh-content-card--topgames .mh-content-card__action span {
  color: #2563eb;
  background: rgba(96, 165, 250, 0.11);
}

.mh-content-card:hover .mh-content-card__action span,
.mh-content-card:focus-visible .mh-content-card__action span {
  transform: translateX(3px);
}

.mh-card-skeleton {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #ffffff;
}

.mh-card-skeleton span {
  display: block;
  width: calc(100% - 24px);
  height: 12px;
  margin: 11px 12px;
  border-radius: 4px;
  background: #eff6ff;
  animation: mh-skeleton 1.35s ease-in-out infinite alternate;
}

.mh-card-skeleton .mh-card-skeleton__media {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 0;
}

.mh-card-skeleton span:last-child {
  width: 58%;
}

.mh-section-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  min-height: 260px;
  gap: 8px;
  padding: 30px;
  border: 1px dashed rgba(37, 99, 235, 0.34);
  border-radius: 8px;
  color: var(--mh-muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.mh-section-empty strong {
  color: var(--mh-ink);
  font-size: 18px;
}

.mh-section-empty button,
.mh-section-empty a {
  min-height: 40px;
  margin-top: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 7px;
  color: #2563eb;
  background: #ffffff;
  font: 800 13px/1.2 var(--site-font-sans, "Nunito Sans", sans-serif);
  text-decoration: none;
  cursor: pointer;
}

.mh-articles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(96, 165, 250, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 54%, #f6f9ff 100%);
}

.mh-articles .mh-section-heading {
  position: relative;
  overflow: hidden;
  align-items: center;
  margin-bottom: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(96, 165, 250, 0.19), transparent 25%),
    linear-gradient(120deg, #ffffff 0%, #f8fbff 62%, #eff6ff 100%);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.1), inset 0 1px 0 #ffffff;
}

.mh-articles .mh-section-heading::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 0;
  width: 5px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.34);
}

.mh-articles .mh-section-heading h2 {
  max-width: 760px;
  font-size: clamp(30px, 3vw, 42px);
}

.mh-articles .mh-section-heading p {
  max-width: 760px;
}

.mh-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  align-items: stretch;
  gap: 14px;
}

.mh-article-feature,
.mh-article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: var(--mh-ink);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mh-article-feature:hover,
.mh-article-feature:focus-visible,
.mh-article-card:hover,
.mh-article-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow: 0 22px 44px rgba(31, 72, 105, 0.18);
  outline: 0;
}

.mh-article-feature {
  display: block;
  min-height: 610px;
  isolation: isolate;
  border-radius: 22px;
  background: #0b1733;
  box-shadow: 0 18px 42px rgba(15, 35, 80, 0.22);
}

.mh-article-feature::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 20, 46, 0.04) 25%, rgba(7, 20, 46, 0.38) 55%, rgba(7, 20, 46, 0.94) 100%),
    linear-gradient(90deg, rgba(29, 78, 216, 0.16), transparent 60%);
}

.mh-article-feature > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 300ms ease;
}

.mh-article-feature:hover > img,
.mh-article-feature:focus-visible > img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.mh-article-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.mh-article-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  min-height: 143px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: 0 9px 22px rgba(31, 72, 105, 0.09);
}

body.homepage-v2 .mh-article-card > img {
  width: 154px;
  height: 100%;
  min-height: 143px;
  object-fit: cover;
  transition: transform 350ms ease, filter 250ms ease;
}

.mh-article-card:hover > img,
.mh-article-card:focus-visible > img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.mh-article-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px 15px;
}

.mh-article-feature .mh-article-card__copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
}

.mh-article-card__category {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 23px;
  padding: 4px 9px;
  overflow: hidden;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eaf2ff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.mh-article-feature .mh-article-card__category {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.86);
  box-shadow: 0 8px 18px rgba(15, 35, 80, 0.24);
  backdrop-filter: blur(8px);
}

.mh-article-card h3,
.mh-article-card strong {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: var(--mh-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mh-article-feature h3 {
  max-width: 720px;
  margin-top: 14px;
  color: #ffffff !important;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  text-shadow: 0 4px 22px rgba(7, 20, 46, 0.42);
}

.mh-article-card__description {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: var(--mh-muted);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.mh-article-feature .mh-article-card__description {
  max-width: 680px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
}

.mh-article-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
  color: #2563eb;
  font-size: 11px;
  font-weight: 850;
}

.mh-article-feature .mh-article-card__action {
  width: fit-content;
  min-width: 148px;
  gap: 18px;
  margin-top: 18px;
  padding: 11px 14px;
  border-radius: 10px;
  color: #1d4ed8;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 20, 46, 0.3);
}

.mh-support {
  overflow: hidden;
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    #f7faff;
  background-size: 34px 34px;
}

.mh-trust-panel {
  padding: 10px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(31, 72, 105, 0.12), inset 0 1px 0 #ffffff;
}

.mh-trust-intro {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  min-height: 270px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.2), transparent 25%),
    linear-gradient(125deg, #1d4ed8 0%, #2563eb 55%, #3b82f6 100%);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.24);
}

.mh-trust-intro::before,
.mh-trust-intro::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.mh-trust-intro::before {
  width: 260px;
  height: 260px;
  top: -150px;
  right: 9%;
}

.mh-trust-intro::after {
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -100px;
}

.mh-trust-intro__copy,
.mh-trust-stats {
  position: relative;
  z-index: 1;
}

.mh-trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mh-trust-eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.36);
}

.mh-trust-intro h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.08;
}

.mh-trust-intro__copy > p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.65;
}

.mh-trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(94px, 1fr));
  gap: 8px;
  min-width: 360px;
}

.mh-trust-stats > span {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  text-align: center;
}

.mh-trust-stats strong {
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.mh-trust-stats small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.mh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.mh-trust-card {
  position: relative;
  min-height: 230px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 9px 24px rgba(31, 72, 105, 0.08);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.mh-trust-card::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -44px;
  bottom: -48px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.11);
}

.mh-trust-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.48);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.15);
}

.mh-trust-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mh-trust-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 15px;
  color: #2563eb;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  box-shadow: 0 9px 18px rgba(37, 99, 235, 0.14), inset 0 1px 0 #ffffff;
}

.mh-trust-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mh-trust-card__step {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 28px;
  padding-inline: 8px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 11px;
  font-weight: 900;
}

.mh-trust-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mh-ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.22;
}

.mh-trust-card p {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  color: var(--mh-muted);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.58;
}

.mh-faq {
  background: #ffffff;
}

.mh-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: start;
}

.mh-faq-intro h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.16;
}

.mh-faq-intro p {
  margin: 12px 0 0;
  color: var(--mh-muted);
  line-height: 1.6;
}

.mh-faq-list {
  display: grid;
  gap: 7px;
}

.mh-faq-item {
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #ffffff;
}

.mh-faq-item summary {
  position: relative;
  padding: 17px 48px 17px 18px;
  color: var(--mh-ink);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.mh-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #2563eb;
  background: var(--mh-soft);
  font: 800 18px/24px Arial, sans-serif;
  text-align: center;
  transform: translateY(-50%);
}

.mh-faq-item[open] summary::after { content: "-"; }

.mh-faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--mh-muted);
  font-size: 14px;
  line-height: 1.6;
}

.mh-final {
  background: #eff6ff;
}

.mh-final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(125deg, #2563eb, #2563eb);
  box-shadow: 0 20px 44px rgba(31, 72, 105, 0.16);
}

.mh-final-panel h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.mh-final-panel p {
  max-width: 700px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.mh-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 7px;
}

body.homepage-v2 .mh-final-actions a {
  border-color: rgba(255, 255, 255, 0.92);
  color: #111827 !important;
  background: #ffffff !important;
  box-shadow: 0 9px 20px rgba(15, 35, 80, 0.2), inset 0 1px 0 #ffffff;
  -webkit-text-fill-color: #111827 !important;
}

body.homepage-v2 .mh-final-actions a:hover,
body.homepage-v2 .mh-final-actions a:focus-visible {
  border-color: #ffffff;
  color: #000000 !important;
  background: #f8fbff !important;
  box-shadow: 0 13px 26px rgba(15, 35, 80, 0.28);
  -webkit-text-fill-color: #000000 !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes mh-grid-in {
  from { opacity: 0.62; transform: translateY(5px); }
  to { opacity: 1; transform: none; }
}

@keyframes mh-skeleton {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

@media (max-width: 1279px) {
  .mh-shell {
    width: min(1180px, calc(100% - 20px));
  }

  .mh-hero__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    gap: 34px;
  }

  .mh-hero h1 { font-size: 46px; }
  .mh-content-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .mh-hero__visual { min-height: 300px; }
  .mh-discovery-scene { max-width: 500px; margin-inline: auto; }
}

@media (max-width: 1023px) {
  .mh-hero__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    min-height: 570px;
    padding-block: 42px;
  }

  .mh-hero h1 { font-size: 40px; }
  .mh-hero__description { font-size: 16px; }
  .mh-hero__visual { min-height: 260px; }
  .mh-discovery-scene { max-width: 360px; min-height: 240px; margin-inline: auto; }
  .mh-quick-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-content-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mh-article-layout { grid-template-columns: minmax(0, 1fr); }
  .mh-article-feature { min-height: 520px; }
  .mh-article-list { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; }
  .mh-article-card { grid-template-columns: 150px minmax(0, 1fr); min-height: 146px; }
  body.homepage-v2 .mh-article-card > img { width: 150px; min-height: 146px; }
  .mh-trust-intro { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .mh-trust-stats { width: min(100%, 560px); min-width: 0; }
  .mh-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-quick-nav--hero { padding: 10px; border-radius: 18px; }
  .mh-quick-nav--hero .mh-quick-nav__grid { gap: 8px; }
  .mh-quick-nav--hero .mh-quick-link { min-height: 88px; grid-template-columns: 42px minmax(0, 1fr); padding: 10px; }
  .mh-quick-nav--hero .mh-quick-link__icon { width: 42px; height: 42px; border-radius: 11px; }
  .mh-quick-nav--hero .mh-quick-link__icon img { width: 27px; height: 27px; }
  .mh-quick-nav--hero .mh-quick-link small,
  .mh-quick-nav--hero .mh-quick-link__arrow { display: none; }
}

@media (max-width: 767px) {
  .home-page { --mh-gap: 7px; }
  .mh-shell { width: calc(100% - 14px); }
  .mh-hero { margin-top: 7px; }
  .mh-hero::before { opacity: 0.18; background-size: 34px 34px; }
  .mh-hero__layout {
    width: calc(100% - 28px);
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    padding-block: 34px 28px;
  }
  .mh-hero__copy { max-width: none; }
  .mh-hero h1 { font-size: 36px; line-height: 1.08; }
  .mh-hero__description { margin: 15px 0 18px; font-size: 15px; line-height: 1.55; }
  .mh-hero__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-button { min-height: 42px; padding: 9px 10px; font-size: 12px; text-align: center; }
  .mh-hero__visual { min-height: 0; }
  .mh-discovery-scene {
    width: calc(100% - 12px);
    max-width: none;
    min-height: 0;
    margin-inline: auto;
    aspect-ratio: 1.5;
  }
  .mh-quick-nav { padding-block: 9px; }
  .mh-quick-link { grid-template-columns: 42px minmax(0, 1fr) 28px; min-height: 66px; padding: 8px 9px; gap: 8px; }
  .mh-quick-link__icon { width: 42px; height: 42px; }
  .mh-quick-link__icon img { width: 26px; height: 26px; }
  .mh-quick-link strong { font-size: 13px; }
  .mh-quick-link small { display: none; }
  .mh-quick-link__arrow { width: 26px; height: 26px; border-radius: 8px; font-size: 15px; }
  .mh-quick-nav--hero { padding: 7px; border-radius: 16px; }
  .mh-quick-nav--hero .mh-quick-nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .mh-quick-nav--hero .mh-quick-link { min-height: 70px; grid-template-columns: 42px minmax(0, 1fr) 26px; padding: 8px; gap: 7px; }
  .mh-quick-nav--hero .mh-quick-link__arrow { display: grid; }
  .mh-content-section,
  .mh-articles,
  .mh-support,
  .mh-faq,
  .mh-final { padding-block: 36px; }
  .mh-content-section,
  .mh-articles { padding-block: 30px 7px; }
  .mh-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
  }
  .mh-section-heading > :first-child { min-width: 0; width: 100%; }
  .mh-section-heading h2,
  .mh-faq-intro h2 { font-size: 27px; }
  .mh-section-heading p { font-size: 14px; }
  .mh-section-heading__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }
  .mh-section-heading > .mh-section-link { justify-self: end; }
  .mh-section-link { min-height: 38px; padding: 8px 11px; font-size: 12px; }
  .mh-result-count { font-size: 11px; }
  .mh-section-view-all:not(:empty) {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 7px;
  }
  .mh-section-view-all .mh-section-link {
    width: min(100%, 260px);
    min-height: 44px;
    padding: 9px 10px 9px 15px;
    line-height: 1.25;
    text-align: center;
  }
  .mh-category-chips { margin-bottom: 0; }
  .mh-category-chip { min-height: 36px; padding: 7px 12px; font-size: 12px; }
  .mh-content-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mh-content-card--apps .mh-content-card__media { padding: 0; }
  .mh-content-card--topgames .mh-content-card__media { padding: 0; }
  .mh-content-card__body { min-height: 70px; padding: 6px; }
  .mh-content-card__category { top: 6px; right: 6px; max-width: calc(100% - 12px); padding: 4px 6px; font-size: 8px; }
  .mh-content-card__title { min-height: 29px; margin-top: 3px; font-size: 11px; line-height: 1.25; }
  .mh-content-card__action {
    min-height: 27px;
    gap: 4px;
    margin: auto -6px -6px;
    padding: 5px 6px;
    border-top: 1px solid rgba(34, 76, 104, 0.1);
    color: #40566b;
    background: #f7fbfc;
    font-size: 9px;
  }
  .mh-content-card__action span {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.1);
    font-size: 12px;
    line-height: 1;
  }
  .mh-content-card--topgames .mh-content-card__action span {
    color: #2563eb;
    background: rgba(96, 165, 250, 0.11);
  }
  .mh-card-skeleton { min-height: 260px; }
  .mh-articles .mh-section-heading { padding: 20px 18px; border-radius: 16px; }
  .mh-article-feature { min-height: 430px; border-radius: 17px; }
  .mh-article-feature .mh-article-card__copy { padding: 22px 18px; }
  .mh-article-list { grid-template-columns: minmax(0, 1fr); }
  .mh-article-card { grid-template-columns: 112px minmax(0, 1fr); min-height: 132px; }
  body.homepage-v2 .mh-article-card > img { width: 112px; height: 100%; min-height: 132px; }
  .mh-article-card__copy { padding: 11px 12px; }
  .mh-article-feature h3 { font-size: 27px; }
  .mh-article-card__description { display: -webkit-box; -webkit-line-clamp: 2; }
  .mh-article-feature .mh-article-card__description {
    display: -webkit-box;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .mh-trust-panel { padding: 7px; border-radius: 20px; }
  .mh-trust-intro { min-height: 0; padding: 26px 18px; border-radius: 14px; }
  .mh-trust-intro h2 { font-size: 31px; }
  .mh-trust-intro__copy > p { font-size: 14px; line-height: 1.55; }
  .mh-trust-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .mh-trust-stats > span { min-height: 88px; padding: 12px 6px; border-radius: 11px; }
  .mh-trust-stats strong { font-size: 23px; }
  .mh-trust-stats small { font-size: 8px; }
  .mh-trust-grid { grid-template-columns: minmax(0, 1fr); gap: 7px; margin-top: 7px; }
  .mh-trust-card { min-height: 174px; padding: 18px; border-radius: 14px; }
  .mh-trust-card__top { margin-bottom: 14px; }
  .mh-trust-card__icon { width: 44px; height: 44px; border-radius: 12px; }
  .mh-trust-card h3 { font-size: 18px; }
  .mh-faq-layout { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .mh-final-panel { grid-template-columns: minmax(0, 1fr); gap: 22px; padding: 24px 18px; }
  .mh-final-panel h2 { font-size: 27px; }
  .mh-final-actions { width: 100%; }
}

@media (max-width: 359px) {
  .mh-hero h1 { font-size: 31px; }
  .mh-hero__actions { grid-template-columns: minmax(0, 1fr); }
  .mh-hero__visual { min-height: 0; }
  .mh-quick-link { grid-template-columns: 38px minmax(0, 1fr); }
  .mh-quick-nav--hero .mh-quick-link { grid-template-columns: 38px minmax(0, 1fr); }
  .mh-quick-link__icon { width: 38px; height: 38px; }
  .mh-quick-link__arrow { display: none; }
  .mh-section-heading { gap: 10px; }
  .mh-content-card__title { font-size: 10px; }
  .mh-content-card__action { font-size: 8px; }
  .mh-final-actions { grid-template-columns: minmax(0, 1fr); }
}

@media (hover: none), (pointer: coarse) {
  .mh-content-card:hover,
  .mh-article-feature:hover,
  .mh-article-card:hover,
  .mh-trust-card:hover,
  .mh-quick-link:hover,
  .mh-button:hover,
  .mh-section-link:hover {
    transform: none;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Homepage-only premium header */
body.homepage-v2 .mh-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 10px 0 0 !important;
  background: transparent;
}

body.homepage-v2 .mh-header-container {
  width: min(1440px, calc(100% - 20px)) !important;
  min-height: 76px;
  padding: 8px 9px 8px 17px;
  gap: 16px;
  overflow: visible;
  border: 1px solid rgba(37,99,235, 0.17);
  border-radius: 18px;
  background: linear-gradient(120deg, #ffffff 0%, #fbfeff 58%, #f8fbff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 30px rgba(31, 72, 105, 0.11);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.homepage-v2 .mh-header-container::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: -1px;
  width: 4px;
  border-radius: 0 5px 5px 0;
  pointer-events: none;
  background: linear-gradient(180deg, #2563eb, #60a5fa 54%, #60a5fa);
}

body.homepage-v2 .mh-header-container::after {
  display: none;
}

body.homepage-v2 .mh-header-container .logo {
  min-height: 54px;
  padding: 4px 7px 4px 3px;
  border-radius: 12px;
  transition: transform 180ms ease;
}

body.homepage-v2 .mh-header-container .logo:hover,
body.homepage-v2 .mh-header-container .logo:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

body.homepage-v2 .mh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: #102033;
  text-decoration: none;
}

body.homepage-v2 .mh-brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: linear-gradient(145deg, #1d4ed8 0%, #60a5fa 58%, #60a5fa 100%);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #fff;
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}

body.homepage-v2 .mh-brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
}

body.homepage-v2 .mh-brand-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: #dbeafe;
}

body.homepage-v2 .mh-brand-copy {
  display: grid;
  gap: 3px;
}

body.homepage-v2 .mh-brand-name {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

body.homepage-v2 .mh-brand-name span {
  color: #2563eb;
}

body.homepage-v2 .mh-brand-tagline {
  color: #617287;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

body.homepage-v2 .mh-header-container .logo img,
body.homepage-v2 .mh-header-container .logo-text {
  max-width: 164px;
  max-height: 42px;
}

body.homepage-v2 .mh-header-container .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.homepage-v2 .mh-header-container .nav-menu a {
  position: relative;
  min-height: 48px;
  gap: 7px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #33485f;
  background: transparent;
  box-shadow: none;
  font-size: 12.5px;
  font-weight: 750;
  white-space: nowrap;
}

body.homepage-v2 .mh-header-container .nav-menu a::before {
  display: none;
}

body.homepage-v2 .mh-header-container .nav-menu a img {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 8px;
  box-shadow: 0 5px 12px rgba(31, 72, 105, 0.14);
}

body.homepage-v2 .mh-header-container .nav-menu .mh-nav-utility {
  min-height: 42px;
  padding-inline: 9px;
  color: #52657a;
  font-size: 12px;
}

body.homepage-v2 .mh-nav-divider {
  width: 1px;
  height: 26px;
  flex: 0 0 1px;
  margin: 0 5px;
  background: rgba(34, 76, 104, 0.13);
}

body.homepage-v2 .mh-header-container .nav-menu a:hover,
body.homepage-v2 .mh-header-container .nav-menu a:focus-visible {
  color: #102033;
  border-color: rgba(37, 99, 235, 0.18);
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 7px 16px rgba(31, 72, 105, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.mh-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex: 0 0 auto;
}

.mh-header-search,
.mh-header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font: 800 12px/1 var(--site-font-sans, "Nunito Sans", sans-serif);
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mh-header-search {
  min-width: 48px;
  padding: 0 13px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: #2563eb;
  background: #f8fbff;
}

.mh-header-search__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.mh-header-search__icon::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.mh-header-search__icon::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.mh-header-cta {
  padding: 0 10px 0 16px;
  border: 1px solid transparent;
  color: #ffffff !important;
  background: linear-gradient(115deg, #2563eb, #2563eb);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.21);
}

.mh-header-search:hover,
.mh-header-search:focus-visible,
.mh-header-cta:hover,
.mh-header-cta:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 10px 22px rgba(31, 72, 105, 0.16);
  outline: 2px solid transparent;
}

.mh-header-cta span:last-child {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease;
}

.mh-header-cta:hover span:last-child,
.mh-header-cta:focus-visible span:last-child {
  transform: translateX(3px);
}

body.homepage-v2 .mh-header-container .mobile-icons button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

body.homepage-v2 .mh-header-container .mobile-icons button[aria-expanded="true"]::before {
  top: 21px;
  box-shadow: none;
  transform: translateX(-50%) rotate(45deg);
}

body.homepage-v2 .mh-header-container .mobile-icons button[aria-expanded="true"]::after {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

body.homepage-v2 .mh-mobile-menu {
  display: grid !important;
  position: fixed;
  top: 84px;
  left: 50%;
  z-index: 89;
  width: min(560px, calc(100% - 14px));
  max-height: calc(100dvh - 94px);
  margin: 0;
  padding: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 54px rgba(16, 32, 51, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -9px) scale(0.985);
  transform-origin: top center;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

body.homepage-v2 .mh-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

body.homepage-v2 .mh-mobile-menu > [data-site-search] {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

body.homepage-v2 .mh-mobile-menu > a {
  position: relative;
  min-height: 46px;
  justify-content: flex-start;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid rgba(34, 76, 104, 0.1);
  border-radius: 10px;
  color: #263b52;
  background: #f7fbfc;
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
}

body.homepage-v2 .mh-mobile-menu > a::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

body.homepage-v2 .mh-mobile-menu > a.mh-mobile-menu__primary::before {
  display: none;
}

body.homepage-v2 .mh-mobile-menu > a.mh-mobile-menu__primary > img {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(37, 99, 235, 0.14));
}

body.homepage-v2 .mh-mobile-menu > a.mh-mobile-menu__primary > span {
  min-width: 0;
}

body.homepage-v2 .mh-mobile-menu > a:hover,
body.homepage-v2 .mh-mobile-menu > a:focus-visible {
  color: #102033;
  border-color: rgba(37, 99, 235, 0.3);
  background: #eff6ff;
  box-shadow: none;
  transform: none;
  outline: none;
}

@media (min-width: 1001px) {
  body.homepage-v2 .mh-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 1240px) {
  .mh-header-search {
    width: 48px;
    padding: 0;
  }

  .mh-header-search__label {
    display: none;
  }
}

@media (max-width: 1000px) {
  body.homepage-v2 .mh-site-header {
    padding-top: 7px !important;
  }

  body.homepage-v2 .mh-header-container {
    width: calc(100% - 14px) !important;
    min-height: 60px;
    padding: 7px 8px 7px 12px;
    border-radius: 14px;
  }

  body.homepage-v2 .mh-header-container .nav-menu {
    display: none;
  }

  body.homepage-v2 .mh-header-container .mobile-icons {
    display: flex;
  }

  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 150px;
    max-height: 38px;
  }

  body.homepage-v2 .mh-mobile-menu {
    top: 74px;
    max-height: calc(100dvh - 84px);
  }
}

@media (max-width: 520px) {
  body.homepage-v2 .mh-header-container .logo {
    padding-inline: 2px;
  }

  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 137px;
    max-height: 36px;
  }

  body.homepage-v2 .mh-brand {
    gap: 7px;
  }

  body.homepage-v2 .mh-brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    border-radius: 11px;
    font-size: 18px;
  }

  body.homepage-v2 .mh-brand-name {
    font-size: 19px;
  }

  body.homepage-v2 .mh-brand-tagline {
    display: none;
  }

  .mh-header-cta {
    display: none;
  }

  .mh-header-actions {
    gap: 5px;
  }

  body.homepage-v2 .mh-mobile-menu {
    grid-template-columns: minmax(0, 1fr);
  }

  body.homepage-v2 .mh-mobile-menu > [data-site-search] {
    grid-column: 1;
  }
}

@media (max-width: 340px) {
  body.homepage-v2 .mh-header-container .logo img,
  body.homepage-v2 .mh-header-container .logo-text {
    max-width: 120px;
  }

  body.homepage-v2 .mh-brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.homepage-v2 .mh-brand-name {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mh-header-search,
  .mh-header-cta,
  body.homepage-v2 .mh-header-container .nav-menu a,
  body.homepage-v2 .mh-mobile-menu,
  body.homepage-v2 .mh-header-container .mobile-icons button::before,
  body.homepage-v2 .mh-header-container .mobile-icons button::after {
    transition-duration: 0.01ms !important;
  }
}
