.mxh:where(*) {
  isolation: isolate;
}
html:has(.mxh),
body:has(.mxh) {
  overflow-x: clip;
}
.mxh-page .page-header,
.mxh-page .page-title,
.mxh-page .entry-header {
  display: none !important;
}
.mxh-page .site-content,
.mxh-page .content-area,
.mxh-page .entry-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.mxh,
.mxh * {
  box-sizing: border-box;
}
.mxh {
  width: auto;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  --mxh-black: #0a0a0a;
  --mxh-black-2: #111;
  --mxh-white: #fff;
  --mxh-soft: #f4f4f2;
  --mxh-silver: #bfc4cc;
  --mxh-gold: #c6a15b;
  background: var(--mxh-black);
  color: var(--mxh-white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
}
.mxh a {
  text-decoration: none !important;
}
.mxh-shell {
  width: min(1320px, calc(100% - 80px));
  margin: 0 auto;
}
.mxh-promo {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgba(191, 196, 204, 0.2);
  background: #050505;
}
.mxh-promo__track {
  position: relative;
  min-height: 54px;
}
.mxh-promo__inner {
  position: absolute;
  inset: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 30px;
  color: #fff !important;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.mxh-promo__inner.is-current {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.mxh-promo__dots {
  position: absolute;
  z-index: 7;
  right: 18px;
  bottom: 8px;
  display: flex;
  gap: 5px;
}
.mxh-promo__dots button {
  width: 14px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}
.mxh-promo__dots button.is-current {
  background: var(--mxh-silver);
}
.mxh-promo__inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
}
.mxh-promo__inner > * {
  position: relative;
}
.mxh-promo__inner strong {
  font-size: 13px;
}
.mxh-promo__inner b {
  color: var(--mxh-silver);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.mxh-promo__inner i {
  color: var(--mxh-gold);
  font-style: normal;
}
.mxh-badge {
  border: 1px solid rgba(198, 161, 91, 0.6);
  color: #dcc58e;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.mxh-hero {
  position: relative;
  min-height: calc(100dvh - 54px);
  isolation: isolate;
  background: #050505;
}
.mxh-media-slider {
  position: relative;
  height: min(820px, calc(100dvh - 60px));
  min-height: 650px;
  overflow: hidden;
  background: #050505;
}
.mxh-media-slider__track,
.mxh-media-slide,
.mxh-media-slide__media,
.mxh-media-slide__image,
.mxh-media-slide__reveal,
.mxh-media-slide__overlay {
  position: absolute;
  inset: 0;
}
.mxh-media-slide {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.9s;
}
.mxh-media-slide.is-current {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}
.mxh-media-slide__media video,
.mxh-media-slide__image,
.mxh-media-slide__reveal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mxh-media-slide:first-child .mxh-media-slide__media { background:#e9e9e8; }
.mxh-media-slide__reveal {
  --mxh-slider-x: 72%;
  --mxh-slider-y: 50%;
  opacity: 0;
  mask-image: radial-gradient(
    circle 270px at var(--mxh-slider-x) var(--mxh-slider-y),
    #000 0 45%,
    transparent 75%
  );
  -webkit-mask-image: radial-gradient(
    circle 270px at var(--mxh-slider-x) var(--mxh-slider-y),
    #000 0 45%,
    transparent 75%
  );
  transition: opacity 0.3s;
}
.mxh-media-slide.is-revealing .mxh-media-slide__reveal {
  opacity: 1;
}
.mxh-media-slide__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88),
      rgba(0, 0, 0, 0.28) 62%,
      rgba(0, 0, 0, 0.08)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 55%);
}
.mxh-media-slide:first-child .mxh-media-slide__overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.08) 48%,
    rgba(0, 0, 0, 0.06)
  );
}
.mxh-media-slide__content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 90px;
}
.mxh-media-slide__content > p {
  margin: 0 0 24px;
  color: var(--mxh-silver);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}
.mxh-media-slide__content h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}
.mxh-media-slide__content > span {
  max-width: 520px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}
.mxh-media-slider__nav {
  position: absolute;
  z-index: 6;
  right: 38px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.mxh-media-slider__nav > button {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  backdrop-filter: blur(12px);
}
.mxh-media-slider__dots {
  display: flex;
  gap: 7px;
}
.mxh-media-slider__dots button {
  width: 22px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
}
.mxh-media-slider__dots button.is-current {
  background: var(--mxh-gold);
}
.mxh-video-feature {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}
.mxh-video-feature > video,
.mxh-video-feature__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mxh-video-feature > video {
  object-fit: cover;
}
.mxh-video-feature__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent);
}
.mxh-video-feature__content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 64px));
  max-width: 720px;
  margin: 0 auto 0 max(32px, calc((100vw - 1320px) / 2));
  padding: 70px 0 32px;
}
.mxh-video-feature__label {
  margin: 0 0 26px;
  color: var(--mxh-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.mxh-video-feature h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.06em 0.25em;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.mxh-video-feature h2 span {
  opacity: 0;
  transform: translateY(32px);
}
.mxh-video-feature.is-visible h2 span {
  animation: mxhWordUp 0.7s var(--mxh-word-delay) cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}
.mxh-video-feature__text {
  max-width: 330px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(24px);
}
.mxh-video-feature.is-visible .mxh-video-feature__text {
  animation: mxhWordUp 0.7s 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes mxhWordUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.mxh-hero__base,
.mxh-hero__reveal,
.mxh-hero__veil {
  position: absolute;
  inset: 0;
}
.mxh-hero__base,
.mxh-hero__reveal {
  background-position: center;
  background-size: cover;
}
.mxh-hero__base {
  z-index: -4;
  animation: mxhHeroIn 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.mxh-hero__reveal {
  --mxh-x: 70%;
  --mxh-y: 45%;
  z-index: -3;
  opacity: 0;
  mask-image: radial-gradient(
    circle 270px at var(--mxh-x) var(--mxh-y),
    #000 0,
    #000 48%,
    transparent 76%
  );
  -webkit-mask-image: radial-gradient(
    circle 270px at var(--mxh-x) var(--mxh-y),
    #000 0,
    #000 48%,
    transparent 76%
  );
  transition: opacity 0.5s ease;
}
.mxh-hero.is-active .mxh-hero__reveal {
  opacity: 1;
}
.mxh-hero__veil {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 3, 3, 0.92) 0%,
      rgba(3, 3, 3, 0.64) 42%,
      rgba(3, 3, 3, 0.12) 72%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 25%);
}
.mxh-hero__content {
  min-height: calc(100dvh - 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 44px;
}
.mxh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--mxh-silver);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  animation: mxhRise 0.9s 0.15s both;
}
.mxh-hero__eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--mxh-silver);
}
.mxh-hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(62px, 8.2vw, 124px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.075em;
}
.mxh-hero h1 span,
.mxh-hero h1 em {
  display: block;
  animation: mxhRise 1s 0.25s both;
}
.mxh-hero h1 em {
  margin-left: clamp(24px, 7vw, 110px);
  color: var(--mxh-silver);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  animation-delay: 0.38s;
}
.mxh-hero__lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  animation: mxhRise 0.9s 0.5s both;
}
.mxh-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  animation: mxhRise 0.9s 0.62s both;
}
.mxh-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s;
}
.mxh-button:hover {
  transform: translateY(-2px);
}
.mxh-button--primary {
  background: var(--mxh-silver);
  color: #090909 !important;
}
.mxh-button--primary:hover {
  background: #e2e5e9;
  box-shadow: 0 0 35px rgba(191, 196, 204, 0.25);
}
.mxh-button--ghost {
  border-color: rgba(191, 196, 204, 0.55);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}
.mxh-button--ghost:hover {
  border-color: var(--mxh-silver);
  background: rgba(255, 255, 255, 0.08);
}
.mxh-button--light {
  background: #fff;
  color: #090909 !important;
}
.mxh-hero__foot {
  display: grid;
  grid-template-columns: 360px 360px;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: 50px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}
.mxh-hero__foot p {
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(191, 196, 204, 0.4);
  animation: mxhRise 0.9s 0.72s both;
}
.mxh-hero__foot p:last-child {
  animation-delay: 0.84s;
}
.mxh-trust {
  border-block: 1px solid rgba(191, 196, 204, 0.16);
  background: #0d0d0d;
}
.mxh-trust__grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.mxh-trust span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid rgba(191, 196, 204, 0.12);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.mxh-trust span:first-child {
  padding-left: 0;
}
.mxh-trust span:last-child {
  border: 0;
}
.mxh-trust b {
  color: var(--mxh-gold);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.mxh-section {
  padding: 140px 0;
}
.mxh-heading {
  display: grid;
  grid-template-columns: 180px 1fr 340px;
  align-items: end;
  gap: 30px;
  margin-bottom: 70px;
}
.mxh-heading > p,
.mxh-product__copy > p,
.mxh-why p:first-child {
  margin: 0;
  color: var(--mxh-silver);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.mxh-heading h2,
.mxh-product h2,
.mxh-why h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.mxh-heading h2 em,
.mxh-why h2 em {
  color: var(--mxh-silver);
  font-family: Georgia, serif;
  font-weight: 400;
}
.mxh-heading > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}
.mxh-method {
  background:
    radial-gradient(
      circle at 50% 60%,
      rgba(191, 196, 204, 0.07),
      transparent 38%
    ),
    #0a0a0a;
}
.mxh-method__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1200px;
}
.mxh-glow-card {
  --mxh-tilt-x: 0deg;
  --mxh-tilt-y: 0deg;
  --mxh-light-x: 50%;
  --mxh-light-y: 50%;
  position: relative;
  width: 100%;
  max-width: 320px;
  min-width: 0;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease var(--mxh-delay),
    transform 0.8s ease var(--mxh-delay);
}
.mxh-glow-card.is-visible {
  opacity: 1;
  transform: none;
}
.mxh-glow-card__aura {
  position: absolute;
  inset: 4% 0 auto;
  width: 100%;
  height: 92%;
  border-radius: 40px;
  background: linear-gradient(137deg, #6f747d 0%, #d9dde3 48%, #c6a15b 100%);
  filter: blur(45px);
  opacity: 0.2;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
}
.mxh-glow-card--2 .mxh-glow-card__aura {
  background: linear-gradient(137deg, #fff 0%, #9fa6b2 55%, #59616d 100%);
}
.mxh-glow-card--3 .mxh-glow-card__aura {
  background: linear-gradient(137deg, #555c67 0%, #bfc4cc 50%, #a67c36 100%);
}
.mxh-glow-card:hover .mxh-glow-card__aura {
  opacity: 0.42;
  transform: scale(1.03);
}
.mxh-glow-card__surface {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 7px solid transparent;
  border-radius: 40px;
  background:
    linear-gradient(#151517, #0e0e10) padding-box,
    linear-gradient(137deg, #777f8b 0%, #d9dde3 48%, #c6a15b 100%) border-box;
  transform: rotateX(var(--mxh-tilt-x)) rotateY(var(--mxh-tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.35s ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 25px 70px rgba(0, 0, 0, 0.45);
}
.mxh-glow-card--2 .mxh-glow-card__surface {
  background:
    linear-gradient(#151517, #0e0e10) padding-box,
    linear-gradient(137deg, #fff 0%, #9fa6b2 52%, #4d5664 100%) border-box;
}
.mxh-glow-card--3 .mxh-glow-card__surface {
  background:
    linear-gradient(#151517, #0e0e10) padding-box,
    linear-gradient(137deg, #676e79 0%, #d9dde3 48%, #a67c36 100%) border-box;
}
.mxh-glow-card:hover .mxh-glow-card__surface {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 34px 90px rgba(0, 0, 0, 0.58);
}
.mxh-glow-card__light {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(
    circle 170px at var(--mxh-light-x) var(--mxh-light-y),
    rgba(255, 255, 255, 0.2),
    transparent 68%
  );
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.mxh-glow-card:hover .mxh-glow-card__light {
  opacity: 1;
}
.mxh-glow-card__visual {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 190px;
  height: 190px;
  transform: translateX(-50%) translateZ(35px);
}
.mxh-glow-card__visual:before {
  content: "";
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: var(--mxh-silver);
  filter: blur(30px);
  opacity: 0.16;
}
.mxh-glow-card__visual svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 13px rgba(217, 221, 227, 0.35));
  animation: mxhFloat 5s ease-in-out infinite;
}
.mxh-glow-card--2 .mxh-glow-card__visual svg {
  animation-delay: -0.9s;
}
.mxh-glow-card--3 .mxh-glow-card__visual svg {
  animation-delay: -1.8s;
}
.mxh-orbit {
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(191, 196, 204, 0.18);
  border-radius: 50%;
  animation: mxhOrbit 11s linear infinite;
}
.mxh-orbit:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mxh-gold);
  box-shadow: 0 0 12px var(--mxh-gold);
}
.mxh-orbit--two {
  inset: 43px;
  animation-direction: reverse;
  animation-duration: 7s;
}
.mxh-glow-card__content {
  position: relative;
  z-index: 4;
  min-height: 346px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  transform: translateZ(28px);
}
.mxh-glow-card__content > b {
  color: var(--mxh-gold);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.mxh-glow-card h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.mxh-glow-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  line-height: 1.65;
}
@keyframes mxhFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}
@keyframes mxhOrbit {
  to {
    transform: rotate(360deg);
  }
}
.mxh-results {
  background: var(--mxh-soft);
  color: #111;
}
.mxh-results .mxh-heading > p {
  color: #666;
}
.mxh-results .mxh-heading h2 em {
  color: #777;
}
.mxh-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr;
  border: 1px solid #d4d4d1;
}
.mxh-results__grid article,
.mxh-results__grid blockquote {
  min-height: 310px;
  margin: 0;
  padding: 45px;
  border-right: 1px solid #d4d4d1;
}
.mxh-results__grid blockquote {
  border: 0;
  background: #111;
  color: #fff;
}
.mxh-results strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.07em;
}
.mxh-results strong small {
  color: var(--mxh-gold);
  font-size: 30px;
}
.mxh-results article p {
  max-width: 220px;
  margin: 60px 0 0;
  color: #646464;
  font-size: 13px;
  line-height: 1.7;
}
.mxh-results blockquote p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.45;
}
.mxh-results cite {
  display: block;
  margin-top: 55px;
  color: var(--mxh-silver);
  font-family: inherit;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.mxh-routines {
  background: #0d0d0d;
}
.mxh-routines__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(191, 196, 204, 0.2);
  border: 1px solid rgba(191, 196, 204, 0.2);
}
.mxh-routines__grid a {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 38px;
  background: #0d0d0d;
  color: #fff !important;
  transition: background 0.3s;
}
.mxh-routines__grid a:hover {
  background: #151515;
}
.mxh-routines__grid span {
  color: var(--mxh-gold);
  font-family: Georgia, serif;
}
.mxh-routines h3 {
  margin: auto 0 8px;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -0.06em;
}
.mxh-routines p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.mxh-routines b {
  margin-top: 34px;
  color: var(--mxh-silver);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.mxh-product {
  background: #050505;
}
.mxh-product__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 700px;
}
.mxh-product__media {
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #202020 0, #111 45%, #080808 76%);
  overflow: hidden;
}
.mxh-product__media:after {
  content: "";
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(191, 196, 204, 0.14);
  border-radius: 50%;
}
.mxh-product__media span {
  position: absolute;
  top: 35px;
  left: 35px;
  color: var(--mxh-gold);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.mxh-product__media img {
  position: relative;
  z-index: 1;
  max-width: 72%;
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 35px 40px rgba(0, 0, 0, 0.55));
}
.mxh-product__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  background: #101010;
}
.mxh-product h2 {
  margin-top: 30px;
  font-size: clamp(42px, 4vw, 62px);
}
.mxh-product__price {
  margin-top: 25px;
  color: var(--mxh-gold);
  font-size: 24px;
}
.mxh-product__price del {
  margin-right: 10px;
  color: #777;
  font-size: 15px;
}
.mxh-product ul {
  display: grid;
  gap: 13px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.mxh-product li:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: var(--mxh-silver);
}
.mxh-product .mxh-button {
  align-self: flex-start;
}
.mxh-why {
  background: #0a0a0a;
}
.mxh-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.mxh-why h2 {
  margin-top: 28px;
}
.mxh-why__grid > div:last-child > p {
  max-width: 570px;
  margin: 22px 0 60px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.8;
}
.mxh-why ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(191, 196, 204, 0.2);
  list-style: none;
}
.mxh-why li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(191, 196, 204, 0.2);
  color: var(--mxh-silver);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.mxh-final {
  padding: 140px 0;
  background: var(--mxh-silver);
  color: #0a0a0a;
  text-align: center;
}
.mxh-final p {
  margin: 0 0 30px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.mxh-final h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: -0.075em;
}
.mxh-final span {
  display: block;
  max-width: 540px;
  margin: 32px auto;
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 1.7;
}
.mxh-final .mxh-button {
  background: #0a0a0a;
  color: #fff !important;
}
.mxh-final .mxh-button:hover {
  background: #222;
}
@keyframes mxhHeroIn {
  from {
    opacity: 0;
    transform: scale(1.07);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes mxhRise {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }
}
@media (max-width: 1000px) {
  .mxh-shell {
    width: min(100% - 42px, 920px);
  }
  .mxh-hero__foot {
    grid-template-columns: 1fr 1fr;
  }
  .mxh-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px 0;
  }
  .mxh-trust span {
    min-height: 54px;
    padding: 0 15px;
  }
  .mxh-heading {
    grid-template-columns: 120px 1fr;
  }
  .mxh-heading > span {
    grid-column: 2;
  }
  .mxh-results__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mxh-results__grid blockquote {
    grid-column: 1/-1;
  }
  .mxh-routines h3 {
    font-size: 44px;
  }
  .mxh-product__grid {
    grid-template-columns: 1fr 1fr;
  }
  .mxh-product__copy {
    padding: 45px;
  }
  .mxh-why__grid {
    gap: 45px;
  }
}
@media (max-width: 720px) {
  .mxh-shell {
    width: calc(100% - 36px);
  }
  .mxh-promo__inner {
    min-height: 48px;
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 18px;
    overflow: hidden;
    white-space: nowrap;
  }
  .mxh-promo__track {
    min-height: 48px;
  }
  .mxh-promo__inner > span:not(.mxh-badge),
  .mxh-promo__inner b {
    display: none;
  }
  .mxh-hero {
    min-height: calc(100svh - 48px);
  }
  .mxh-media-slider {
    min-height: 720px;
    height: calc(100svh - 48px);
  }
  .mxh-media-slide__media video,
  .mxh-media-slide__image,
  .mxh-media-slide__reveal {
    object-position: 65% center;
    background-position: 65% center;
  }
  .mxh-media-slide:first-child .mxh-media-slide__image {
    background-position: center;
  }
  .mxh-media-slide:first-child .mxh-media-slide__overlay {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.05) 70%
    );
  }
  .mxh-media-slide__content {
    justify-content: flex-end;
    padding: 80px 18px 105px;
  }
  .mxh-media-slide__content h1 {
    font-size: 48px;
  }
  .mxh-media-slide__content > span {
    font-size: 14px;
    margin: 20px 0;
  }
  .mxh-media-slider__nav {
    right: 18px;
    bottom: 28px;
  }
  .mxh-video-feature__content {
    width: auto;
    margin: 0;
    padding: 90px 18px 32px;
  }
  .mxh-video-feature h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
  .mxh-hero__base {
    background-position: 62% center;
  }
  .mxh-hero__reveal {
    display: none;
  }
  .mxh-hero__veil {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 62%);
  }
  .mxh-hero__content {
    min-height: calc(100svh - 48px);
    justify-content: flex-end;
    padding: 75px 0 24px;
  }
  .mxh-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 8px;
  }
  .mxh-hero h1 {
    font-size: clamp(49px, 15vw, 70px);
    line-height: 0.9;
  }
  .mxh-hero h1 em {
    margin-left: 0;
  }
  .mxh-hero__lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
  }
  .mxh-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  .mxh-button {
    width: 100%;
    min-height: 50px;
  }
  .mxh-hero__foot {
    display: none;
  }
  .mxh-trust__grid {
    grid-template-columns: 1fr 1fr;
    padding: 14px 0;
  }
  .mxh-trust span {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(191, 196, 204, 0.12);
  }
  .mxh-trust span:first-child {
    padding-left: 10px;
  }
  .mxh-trust span:last-child {
    grid-column: 1/-1;
  }
  .mxh-section {
    padding: 85px 0;
  }
  .mxh-heading {
    display: block;
    margin-bottom: 40px;
  }
  .mxh-heading > p {
    margin-bottom: 18px;
  }
  .mxh-heading h2,
  .mxh-product h2,
  .mxh-why h2 {
    font-size: 45px;
  }
  .mxh-heading > span {
    display: block;
    margin-top: 22px;
  }
  .mxh-method__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .mxh-glow-card {
    max-width: 330px;
  }
  .mxh-glow-card__surface {
    min-height: 340px;
  }
  .mxh-glow-card__content {
    min-height: 326px;
  }
  .mxh-glow-card h3 {
    font-size: 28px;
  }
  .mxh-results__grid {
    grid-template-columns: 1fr;
  }
  .mxh-results__grid article,
  .mxh-results__grid blockquote {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid #d4d4d1;
    padding: 32px;
  }
  .mxh-results article p {
    margin-top: 35px;
  }
  .mxh-results blockquote {
    grid-column: auto;
  }
  .mxh-routines__grid {
    grid-template-columns: 1fr;
  }
  .mxh-routines__grid a {
    min-height: 280px;
    padding: 28px;
  }
  .mxh-routines h3 {
    font-size: 48px;
  }
  .mxh-product__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .mxh-product__media {
    min-height: 450px;
  }
  .mxh-product__copy {
    padding: 45px 25px;
  }
  .mxh-why__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .mxh-why ul {
    grid-template-columns: 1fr;
  }
  .mxh-final {
    padding: 95px 0;
  }
  .mxh-final h2 {
    font-size: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mxh * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .mxh-hero__reveal {
    display: none;
  }
}
