:root {
  --mh-bg: #07090d;
  --mh-bg-2: #0c1017;
  --mh-panel: #111721;
  --mh-panel-2: #161d28;
  --mh-text: #fff8e7;
  --mh-soft: #b9c2cf;
  --mh-muted: #7f8b9b;
  --mh-gold: #ffbd4a;
  --mh-cyan: #42e8ff;
  --mh-red: #ff5a3d;
  --mh-green: #44d28f;
  --mh-line: rgba(255, 255, 255, 0.13);
  --mh-line-strong: rgba(255, 255, 255, 0.24);
  --mh-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --mh-header: 76px;
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #07090d 0%, #0b0f15 48%, #07090d 100%);
  color: var(--mh-text);
  font-size: 16px;
  line-height: 1.55;
}

body.mh-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

code {
  border: 1px solid var(--mh-line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mh-cyan);
  padding: 0.1em 0.35em;
}

.mh-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.mh-icon svg {
  width: 20px;
  height: 20px;
}

.iconify {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  vertical-align: -0.2em;
}

.mh-skip {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 120;
  transform: translateY(-150%);
  border: 1px solid var(--mh-gold);
  border-radius: 6px;
  background: var(--mh-bg);
  color: var(--mh-text);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.mh-skip:focus {
  transform: translateY(0);
}

.mh-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-red), var(--mh-cyan));
}

.mh-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--mh-header);
  padding: 12px clamp(16px, 4%, 54px);
  color: var(--mh-text);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mh-topbar.is-scrolled,
.mh-topbar.mh-policy-topbar {
  border-bottom: 1px solid var(--mh-line);
  background: rgba(7, 9, 13, 0.84);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.mh-wordmark,
.mh-footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.mh-wordmark img,
.mh-footer-mark img {
  flex: 0 0 auto;
}

.mh-wordmark span,
.mh-footer-mark span {
  display: grid;
  line-height: 1.05;
}

.mh-wordmark strong,
.mh-footer-mark span {
  font-size: 0.95rem;
  font-weight: 900;
}

.mh-wordmark small {
  margin-top: 3px;
  color: var(--mh-soft);
  font-size: 0.78rem;
}

.mh-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mh-menu a {
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--mh-soft);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 10px 12px;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.mh-menu a:hover,
.mh-menu a:focus-visible {
  border-color: var(--mh-line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: var(--mh-text);
  outline: none;
}

.mh-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--mh-line-strong);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--mh-text);
}

.mh-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: calc(var(--mh-header) + 28px) clamp(16px, 4%, 54px) 0;
  scroll-margin-top: var(--mh-header);
}

.mh-hero-media,
.mh-hero-shade {
  position: absolute;
  inset: 0;
}

.mh-hero-media {
  z-index: 0;
  background: var(--mh-bg);
}

.mh-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.04) brightness(1.05);
  transform: scale(1.03);
}

.mh-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(5, 7, 10, 0.8) 36%, rgba(5, 7, 10, 0.32) 66%, rgba(5, 7, 10, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18) 0%, rgba(5, 7, 10, 0.04) 48%, rgba(5, 7, 10, 0.86) 100%);
}

.mh-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.mh-hero-grid-simple {
  display: block;
}

.mh-hero-copy {
  max-width: 760px;
}

.mh-kicker {
  margin: 0 0 13px;
  color: var(--mh-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dd,
dt {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 9ch;
  font-size: 5.35rem;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  font-size: 3.1rem;
  font-weight: 920;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0;
}

.mh-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 248, 231, 0.8);
  font-size: 1.2rem;
}

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

.mh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.mh-button:hover,
.mh-button:focus-visible,
.mh-policy-card:hover,
.mh-policy-card:focus-visible,
.mh-text-link:hover,
.mh-text-link:focus-visible,
.mh-footer a:hover,
.mh-footer a:focus-visible,
.mh-footer button:hover,
.mh-footer button:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.mh-button-hot {
  background: var(--mh-gold);
  color: #160f06;
  box-shadow: 0 14px 30px rgba(255, 189, 74, 0.24);
}

.mh-button-ghost {
  border: 1px solid var(--mh-line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--mh-text);
  backdrop-filter: blur(12px);
}

.mh-hero-note {
  max-width: 690px;
  margin: 18px 0 0;
  border-left: 3px solid var(--mh-red);
  color: rgba(255, 248, 231, 0.76);
  padding-left: 14px;
  font-size: 0.92rem;
}

.mh-hero-credentials,
.mh-license-panel,
.mh-fact,
.mh-entity,
.mh-flow-card,
.mh-question,
.mh-policy-card {
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: rgba(17, 23, 33, 0.86);
  box-shadow: var(--mh-shadow);
}

.mh-hero-credentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(880px, 100%);
  margin-top: 26px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 189, 74, 0.14), transparent 34%),
    rgba(7, 9, 13, 0.68);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  backdrop-filter: blur(16px);
}

.mh-flow-card::before,
.mh-license-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--mh-gold), var(--mh-red), var(--mh-cyan));
}

.mh-hero-credentials div {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 104px;
  border-right: 1px solid var(--mh-line);
  padding: 18px;
}

.mh-hero-credentials div:last-child {
  border-right: 0;
}

.mh-hero-credentials .mh-icon,
.mh-hero-credentials .iconify {
  color: var(--mh-gold);
  width: 20px;
  height: 20px;
}

.mh-hero-credentials small {
  color: var(--mh-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-hero-credentials strong {
  color: var(--mh-text);
  font-size: 1rem;
  line-height: 1.1;
}

.mh-ticker {
  position: relative;
  z-index: 2;
  width: 100vw;
  margin: 38px calc(50% - 50vw) 0;
  overflow: hidden;
  border-block: 1px solid var(--mh-line);
  border-inline: 0;
  border-radius: 0;
  background: rgba(7, 9, 13, 0.74);
  backdrop-filter: blur(14px);
}

.mh-ticker-track {
  display: flex;
  width: max-content;
  animation: mh-marquee 28s linear infinite;
}

.mh-ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  color: var(--mh-soft);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.mh-ticker-track span::after {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 22px;
  background: rgba(255, 189, 74, 0.62);
}

@keyframes mh-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mh-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.mh-section,
.mh-license-band,
.mh-metrics {
  scroll-margin-top: calc(var(--mh-header) + 18px);
}

.mh-section {
  padding: 92px 0;
}

.mh-section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.mh-section-heading p,
.mh-facility-copy > p,
.mh-policy-copy p {
  color: var(--mh-soft);
  font-size: 1.05rem;
}

.mh-license-band {
  padding: 92px 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.98), rgba(12, 16, 23, 0.94)),
    var(--mh-bg-2);
}

.mh-license-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
  gap: 18px;
  align-items: stretch;
}

.mh-license-panel {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 189, 74, 0.16), transparent 54%),
    var(--mh-panel);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.mh-panel-label,
.mh-fact small,
.mh-entity small {
  display: block;
  color: var(--mh-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-license-panel h3 {
  margin-top: 12px;
  color: var(--mh-gold);
  font-size: 1.6rem;
}

.mh-license-panel p {
  margin: 16px 0 22px;
  color: var(--mh-soft);
}

.mh-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mh-text);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: transform 160ms ease;
}

.mh-license-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mh-fact {
  display: grid;
  align-content: start;
  min-height: 132px;
  gap: 10px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 52%),
    var(--mh-panel);
  box-shadow: none;
}

.mh-fact:nth-child(2n) {
  border-radius: 8px;
}

.mh-fact:nth-child(3n) {
  border-radius: 8px;
}

.mh-fact .mh-icon,
.mh-entity .mh-icon,
.mh-policy-card .mh-icon {
  color: var(--mh-cyan);
}

.mh-fact strong {
  color: var(--mh-text);
  font-size: 1.03rem;
  line-height: 1.2;
}

.mh-fact p {
  margin: 0;
  color: var(--mh-soft);
  font-size: 0.9rem;
}

.mh-alert {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(255, 189, 74, 0.32);
  border-radius: 8px;
  background: rgba(255, 189, 74, 0.08);
  color: rgba(255, 248, 231, 0.84);
  padding: 16px;
}

.mh-alert .mh-icon {
  color: var(--mh-gold);
}

.mh-alert p {
  margin: 0;
}

.mh-metrics {
  padding: 26px 0;
  border-block: 1px solid var(--mh-line);
  background: #090c12;
}

.mh-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: var(--mh-line);
}

.mh-meter {
  min-height: 118px;
  background: var(--mh-bg-2);
  padding: 20px;
}

.mh-meter span {
  display: block;
  color: var(--mh-gold);
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.mh-meter small {
  display: block;
  margin-top: 10px;
  color: var(--mh-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-operator {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    var(--mh-bg);
}

.mh-entity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mh-entity {
  min-height: 238px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)), var(--mh-panel);
  box-shadow: none;
}

.mh-entity:nth-child(1) {
  border-radius: 8px 42px 8px 8px;
}

.mh-entity:nth-child(2) {
  border-radius: 42px 8px 8px 8px;
}

.mh-entity:nth-child(3) {
  border-radius: 8px 8px 42px 8px;
}

.mh-entity:nth-child(4) {
  border-radius: 8px 8px 8px 42px;
}

.mh-entity .mh-icon {
  margin-bottom: 22px;
}

.mh-entity h3 {
  margin-top: 10px;
}

.mh-entity p {
  margin: 12px 0 0;
  color: var(--mh-soft);
}

.mh-facility {
  background: #0b0f15;
}

.mh-facility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.mh-race-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mh-panel);
  box-shadow: var(--mh-shadow);
}

.mh-race-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.mh-photo-tag {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  border: 1px solid var(--mh-line-strong);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.78);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.mh-photo-tag span,
.mh-gallery-card span {
  display: block;
  color: var(--mh-gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-photo-tag strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.mh-facility-copy > p {
  margin: 18px 0 0;
}

.mh-checklist {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.mh-check {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: start;
  border-top: 1px solid var(--mh-line);
  padding-top: 16px;
}

.mh-check .mh-icon {
  color: var(--mh-red);
}

.mh-check strong {
  font-weight: 900;
}

.mh-check p {
  grid-column: 2;
  margin: -4px 0 0;
  color: var(--mh-soft);
}

.mh-operations {
  background:
    linear-gradient(180deg, #07090d 0%, #111721 100%);
}

.mh-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mh-flow-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 24px;
  background: var(--mh-panel);
  box-shadow: none;
}

.mh-flow-card:nth-child(odd) {
  border-radius: 8px 48px 8px 8px;
}

.mh-flow-card:nth-child(even) {
  border-radius: 48px 8px 8px 8px;
}

.mh-flow-card > span {
  display: block;
  color: rgba(255, 248, 231, 0.18);
  font-size: 3rem;
  font-weight: 950;
  line-height: 1;
}

.mh-flow-card .mh-icon {
  margin: 24px 0 18px;
  color: var(--mh-gold);
}

.mh-flow-card p {
  margin: 12px 0 0;
  color: var(--mh-soft);
}

.mh-gallery {
  background: #090c12;
}

.mh-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 310px);
  gap: 14px;
}

.mh-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mh-panel);
}

.mh-gallery-card-large {
  grid-row: span 2;
}

.mh-gallery-panel {
  display: grid;
  align-content: end;
  min-height: 310px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 189, 74, 0.14), transparent 40%),
    linear-gradient(20deg, rgba(66, 232, 255, 0.1), transparent 50%),
    var(--mh-panel);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  padding: 24px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.mh-gallery-panel .mh-icon,
.mh-gallery-panel .iconify {
  width: 28px;
  height: 28px;
  color: var(--mh-gold);
  margin-bottom: 44px;
}

.mh-gallery-panel small {
  color: var(--mh-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mh-gallery-panel h3 {
  margin-top: 8px;
  color: var(--mh-text);
  font-size: 2.05rem;
}

.mh-gallery-panel p {
  margin: 12px 0 0;
  color: var(--mh-soft);
}

.mh-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
  transition: transform 600ms ease;
}

.mh-gallery-card:hover img {
  transform: scale(1.05);
}

.mh-gallery-card figcaption {
  position: absolute;
  inset: auto 16px 16px;
  border: 1px solid var(--mh-line-strong);
  border-radius: 8px;
  background: rgba(7, 9, 13, 0.74);
  padding: 14px;
  backdrop-filter: blur(12px);
}

.mh-gallery-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.04rem;
}

.mh-policies {
  background:
    linear-gradient(90deg, rgba(66, 232, 255, 0.08), transparent 50%),
    var(--mh-bg);
}

.mh-policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.mh-policy-copy p {
  margin-top: 18px;
}

.mh-policy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mh-policy-card {
  display: grid;
  min-height: 170px;
  align-content: start;
  gap: 12px;
  padding: 22px;
  background: var(--mh-panel);
  box-shadow: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.mh-policy-card:hover,
.mh-policy-card:focus-visible {
  border-color: var(--mh-cyan);
  background: #17202c;
}

.mh-policy-card small {
  color: var(--mh-soft);
  font-size: 0.9rem;
}

.mh-faq {
  background: #0b0f15;
}

.mh-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mh-question {
  padding: 22px;
  background: var(--mh-panel);
  box-shadow: none;
}

.mh-question p {
  margin: 12px 0 0;
  color: var(--mh-soft);
}

.mh-footer {
  border-top: 1px solid var(--mh-line);
  background: #05070a;
  padding: 38px clamp(16px, 4%, 54px);
}

.mh-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.6fr) minmax(210px, 0.7fr);
  gap: 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.mh-footer p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--mh-muted);
  font-size: 0.9rem;
}

.mh-footer nav,
.mh-footer-small {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mh-footer a,
.mh-footer button {
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--mh-soft);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  text-align: left;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.mh-footer a:hover,
.mh-footer a:focus-visible,
.mh-footer button:hover,
.mh-footer button:focus-visible {
  color: var(--mh-text);
}

.mh-footer-small strong {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.mh-policy-main {
  min-height: 70vh;
  padding-top: var(--mh-header);
  background:
    linear-gradient(135deg, rgba(66, 232, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #07090d, #0d1219);
}

.mh-policy-hero {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 28px;
}

.mh-policy-hero h1 {
  max-width: none;
  font-size: 4.2rem;
}

.mh-policy-hero p:not(.mh-kicker) {
  margin: 16px 0 0;
  color: var(--mh-soft);
}

.mh-policy-content {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto 76px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: rgba(17, 23, 33, 0.86);
  padding: 34px;
  box-shadow: var(--mh-shadow);
}

.mh-policy-content h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.mh-policy-content h2:first-child {
  margin-top: 0;
}

.mh-policy-content p,
.mh-policy-content li {
  color: var(--mh-soft);
}

.mh-policy-content a {
  color: var(--mh-cyan);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mh-cookie {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 130;
  display: none;
  width: min(430px, calc(100% - 36px));
  pointer-events: none;
}

.mh-cookie.is-visible {
  display: flex;
}

.mh-cookie-panel {
  border: 1px solid var(--mh-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(66, 232, 255, 0.12), transparent 48%),
    linear-gradient(20deg, rgba(255, 189, 74, 0.12), transparent 45%),
    rgba(7, 9, 13, 0.96);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.6);
  padding: 16px;
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.mh-cookie-top {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.mh-cookie-symbol {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 189, 74, 0.32);
  border-radius: 8px;
  background: rgba(255, 189, 74, 0.12);
  color: var(--mh-gold);
}

.mh-cookie h2 {
  font-size: 1.45rem;
}

.mh-cookie p {
  margin: 7px 0 0;
  color: var(--mh-soft);
  font-size: 0.88rem;
}

.mh-cookie-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--mh-cyan);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mh-cookie-options {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.mh-cookie:not(.is-expanded) .mh-cookie-options,
.mh-cookie:not(.is-expanded) [data-mh-cookie-save] {
  display: none;
}

.mh-cookie.is-expanded [data-mh-cookie-customize] {
  display: none;
}

.mh-cookie-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
}

.mh-cookie-option input {
  margin-top: 3px;
  accent-color: var(--mh-gold);
}

.mh-cookie-option strong {
  display: block;
  font-size: 0.88rem;
}

.mh-cookie-option small {
  display: block;
  color: var(--mh-muted);
  font-size: 0.78rem;
}

.mh-cookie-option.is-locked {
  opacity: 0.8;
}

.mh-cookie-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.mh-cookie-actions button {
  min-height: 40px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  padding: 9px 12px;
}

.mh-cookie-actions [data-mh-cookie-reject],
.mh-cookie-actions [data-mh-cookie-customize],
.mh-cookie-actions [data-mh-cookie-save] {
  border: 1px solid var(--mh-line-strong);
  background: rgba(255, 255, 255, 0.07);
  color: var(--mh-text);
}

.mh-cookie-actions [data-mh-cookie-accept] {
  grid-column: 1 / -1;
  border: 1px solid var(--mh-gold);
  background: var(--mh-gold);
  color: #150f06;
}

.js .mh-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.js .mh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .mh-hero-grid,
  .mh-license-board,
  .mh-facility-grid,
  .mh-policy-grid {
    grid-template-columns: 1fr;
  }

  .mh-hero-showcase {
    min-height: 470px;
  }

  .mh-hero-window {
    inset: 0 0 70px auto;
    width: min(760px, 100%);
  }

  .mh-license-facts,
  .mh-entity-grid,
  .mh-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mh-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mh-gallery-card,
  .mh-gallery-card-large {
    min-height: 360px;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --mh-header: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2,
  .mh-policy-hero h1 {
    font-size: 2.2rem;
  }

  .mh-topbar {
    padding-inline: 14px;
  }

  .mh-wordmark img {
    width: 44px;
    height: 44px;
  }

  .mh-wordmark strong {
    font-size: 0.86rem;
  }

  .mh-wordmark small {
    font-size: 0.7rem;
  }

  .mh-menu-button {
    display: grid;
  }

  .mh-menu {
    position: fixed;
    inset: var(--mh-header) 10px auto;
    display: grid;
    gap: 8px;
    transform: translateY(-12px);
    border: 1px solid var(--mh-line);
    border-radius: 8px;
    background: rgba(7, 9, 13, 0.96);
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--mh-shadow);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .mh-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mh-menu a {
    padding: 13px 12px;
  }

  .mh-hero {
    display: flex;
    min-height: 82svh;
    align-items: center;
    padding: calc(var(--mh-header) + 20px) 14px 16px;
  }

  .mh-hero-grid {
    display: block;
    gap: 22px;
  }

  .mh-lede {
    font-size: 1rem;
  }

  .mh-actions {
    margin-top: 22px;
  }

  .mh-button {
    width: 100%;
  }

  .mh-ticker {
    display: none;
  }

  .mh-ticker {
    margin-top: 18px;
  }

  .mh-license-band,
  .mh-section {
    padding: 64px 0;
  }

  .mh-license-band {
    padding-top: 30px;
  }

  .mh-wrap {
    width: min(100% - 28px, 1180px);
  }

  .mh-license-facts,
  .mh-entity-grid,
  .mh-flow,
  .mh-metrics-grid,
  .mh-policy-cards,
  .mh-faq-grid,
  .mh-footer-grid {
    grid-template-columns: 1fr;
  }

  .mh-meter {
    min-height: 92px;
  }

  .mh-entity,
  .mh-flow-card {
    min-height: auto;
  }

  .mh-race-photo {
    min-height: 430px;
  }

  .mh-check {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .mh-gallery-card,
  .mh-gallery-card-large {
    min-height: 310px;
  }

  .mh-policy-content {
    padding: 22px;
  }

  .mh-cookie {
    inset: auto 10px 10px;
  }

  .mh-cookie-actions {
    justify-content: stretch;
  }

  .mh-cookie-actions button {
    flex: 1 1 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.75rem;
  }

  h2,
  .mh-policy-hero h1 {
    font-size: 1.9rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
