/*
 * ============================================================
 *  NOVA — Theme skin  (example / white-label build)
 *  Monochrome white-on-black. Cinematic dark surfaces, liquid
 *  glass, a signature soft-white glow, Geist type.
 *  Rename freely — this is the sellable demo build.
 *  This file is not overwritten by theme updates.
 * ============================================================
 */

:root {
  /* --- Base palette (pure black ground) --- */
  --mh-black: #000000;
  --mh-slate-950: #0b0f17;   /* cards, panels */
  --mh-slate-900: #10151f;   /* raised / hover */
  --mh-slate-800: #1a2130;   /* borders, dividers */
  --mh-slate-700: #27303f;   /* strong border */

  --mh-white: #ffffff;       /* primary text + accent */
  --mh-silver-300: #94a3b8;  /* secondary text */
  --mh-silver-500: #64748b;  /* tertiary text */
  --mh-accent-600: #c5c5c5;  /* pressed accent */

  /* Signature soft-white glow (used sparingly, on premium/active) */
  --mh-glow-text: 0 0 10px rgba(255, 255, 255, 0.45);
  --mh-glow-strong: rgba(255, 255, 255, 0.16);
  --mh-glow-soft: rgba(255, 255, 255, 0.10);
  --mh-glow-faint: rgba(255, 255, 255, 0.05);

  /* Liquid glass */
  --mh-glass: rgba(11, 15, 23, 0.55);
  --mh-glass-strong: rgba(16, 21, 31, 0.72);
  --mh-stroke: rgba(255, 255, 255, 0.08);
  --mh-stroke-strong: rgba(255, 255, 255, 0.14);
  --mh-blur: 18px;

  /* Status */
  --mh-safe: #10b981;
  --mh-warn: #f59e0b;
  --mh-critical: #ef4444;

  /* Motion */
  --mh-ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Type — Geist for UI, Great Vibes for the signature watermark only */
  --mh-font-body: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mh-font-script: 'Great Vibes', cursive;
}

/* ---- Global canvas: pure black with a cinematic vignette + faint bloom ---- */
body {
  background-color: #000 !important;
  font-family: var(--mh-font-body);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

/* Layered atmosphere: a soft top-white bloom and a deep vignette,
   evoking the muted, night-hardware feel of the reference. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 50% -8%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(45% 40% at 82% 4%, rgba(148, 163, 184, 0.05) 0%, transparent 55%),
    radial-gradient(120% 120% at 50% 0%, transparent 55%, rgba(0, 0, 0, 0.85) 100%);
}

/* Very subtle drifting grain so the black never looks flat */
body::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255, 255, 255, 0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 27% 68%, rgba(255, 255, 255, 0.22) 50%, transparent 51%),
    radial-gradient(1px 1px at 43% 14%, rgba(255, 255, 255, 0.28) 50%, transparent 51%),
    radial-gradient(1px 1px at 61% 47%, rgba(255, 255, 255, 0.2) 50%, transparent 51%),
    radial-gradient(1px 1px at 74% 81%, rgba(255, 255, 255, 0.26) 50%, transparent 51%),
    radial-gradient(1px 1px at 83% 30%, rgba(255, 255, 255, 0.22) 50%, transparent 51%),
    radial-gradient(1px 1px at 91% 63%, rgba(255, 255, 255, 0.24) 50%, transparent 51%),
    radial-gradient(1px 1px at 5% 88%, rgba(255, 255, 255, 0.18) 50%, transparent 51%);
  background-repeat: no-repeat;
  animation: mh-drift 26s ease-in-out infinite alternate;
}

@keyframes mh-drift {
  0%   { transform: translate3d(-1.5%, -1%, 0); }
  100% { transform: translate3d(1.5%, 1.5%, 0); }
}

/* Tighten display tracking for the hardware-tech aesthetic */
h1, h2, h3, .mh-display {
  letter-spacing: -0.02em;
}

/* ============================================================
 *  HEADER / NAV
 * ============================================================ */

/* top bar — dark liquid glass, hairline stroke, deep shadow */
header > .bg-card {
  background: var(--mh-glass) !important;
  border-color: var(--mh-stroke) !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 24px 60px -44px rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(var(--mh-blur));
  backdrop-filter: blur(var(--mh-blur));
  overflow: hidden;
}

/* brand wordmark — clean white with a whisper of glow */
header h1 {
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: var(--mh-glow-text);
}

header a img {
  box-shadow: 0 0 24px -10px rgba(255, 255, 255, 0.4);
  transition: transform 0.2s var(--mh-ease), box-shadow 0.2s var(--mh-ease);
}
header a:hover img {
  transform: translateY(-1px);
  box-shadow: 0 0 30px -8px rgba(255, 255, 255, 0.5);
}

/* stats in the header bar */
header .grid.grid-cols-3 p:first-child {
  color: #fff;
  text-shadow: var(--mh-glow-text);
}
header .grid.grid-cols-3 p:last-child {
  color: var(--mh-silver-300);
}
@media (min-width: 768px) {
  header .grid.grid-cols-3 > div + div {
    border-left: 1px solid var(--mh-stroke);
    padding-left: 1.75rem;
  }
}

/* nav pills */
header nav a,
header nav button {
  border-radius: 9999px !important;
  transition: transform 0.15s var(--mh-ease), background-color 0.15s var(--mh-ease),
              color 0.15s var(--mh-ease), box-shadow 0.15s var(--mh-ease), border-color 0.15s var(--mh-ease);
}
header nav a:hover,
header nav button:hover {
  transform: translateY(-1px);
}
/* active nav pill: subtle white ring + faint fill */
header nav a.text-accent-500,
header nav button.text-accent-500 {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  box-shadow: inset 0 0 0 1px var(--mh-stroke-strong);
  border-color: transparent !important;
}

/* primary account / "Join Discord" style CTA -> filled white pill */
.mh-cta {
  background: var(--mh-white) !important;
  color: #04070c !important;
  border-color: transparent !important;
  font-weight: 600 !important;
  box-shadow: 0 8px 26px -12px rgba(255, 255, 255, 0.5);
  transition: transform 0.15s var(--mh-ease), box-shadow 0.15s var(--mh-ease), filter 0.15s var(--mh-ease);
}
.mh-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
  box-shadow: 0 12px 34px -12px rgba(255, 255, 255, 0.55);
}

/* ============================================================
 *  CURRENCY SELECTOR — legible dark dropdown
 * ============================================================ */
.choices__list--dropdown,
.choices__list[aria-expanded] {
  background: var(--mh-slate-950) !important;
  border: 1px solid var(--mh-stroke) !important;
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.85);
}
.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  color: #fff !important;
  background: transparent !important;
}
.choices__list--dropdown .choices__item .symbol,
.choices__list--dropdown .choices__item .code,
.choices__list--dropdown .choices__item .default,
.choices__list[aria-expanded] .choices__item .symbol,
.choices__list[aria-expanded] .choices__item .code {
  color: #fff !important;
  display: inline !important;
}
.choices__list--dropdown .choices__item .default,
.choices__list[aria-expanded] .choices__item .default {
  color: rgba(255, 255, 255, 0.5) !important;
}
/* highlighted row: dark text on white */
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: var(--mh-white) !important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list--dropdown .choices__item--selectable.is-highlighted .symbol,
.choices__list--dropdown .choices__item--selectable.is-highlighted .code,
.choices__list--dropdown .choices__item--selectable.is-highlighted .default,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted .symbol,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted .code {
  color: #04070c !important;
}
.currency-selector .choices__inner {
  background: var(--mh-glass-strong) !important;
  border-color: var(--mh-stroke) !important;
}
.currency-selector .choices.is-open .choices__inner {
  border-color: var(--mh-stroke-strong) !important;
}

/* ============================================================
 *  BUTTONS (shared)
 * ============================================================ */
.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s var(--mh-ease), box-shadow 0.15s var(--mh-ease), filter 0.15s var(--mh-ease), background 0.15s var(--mh-ease);
  white-space: nowrap;
}

/* Primary = filled white pill (the reference's "Join Discord") */
.mh-btn-primary {
  background: var(--mh-white);
  color: #04070c;
  box-shadow: 0 10px 34px -14px rgba(255, 255, 255, 0.55);
}
.mh-btn-primary:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -14px rgba(255, 255, 255, 0.6);
}

/* Ghost = dark glass pill with hairline */
.mh-btn-ghost {
  background: var(--mh-glass-strong);
  color: #fff;
  border: 1px solid var(--mh-stroke-strong);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.mh-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.mh-btn i { font-size: 0.95em; }

/* ============================================================
 *  HERO (cinematic, Lumeon-style)
 * ============================================================ */
.mh-hero {
  position: relative;
  text-align: center;
  padding: 5rem 1rem 3.5rem;
  isolation: isolate;
}

/* subtle stage glow behind the hero content */
.mh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(50% 55% at 50% 26%, rgba(255, 255, 255, 0.07) 0%, transparent 62%);
}

.mh-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--mh-stroke-strong);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

/* big display heading; second line can carry an accent span */
.mh-wordmark {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  margin: 0 auto;
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.12);
}
.mh-wordmark .accent {
  color: var(--mh-silver-300); /* the muted second word, like the reference */
}

.mh-hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--mh-silver-300);
  font-weight: 400;
}

.mh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.4rem;
}

/* ---- stat cards (glass rows with an icon, like the reference) ---- */
.mh-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}
.mh-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 190px;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  background: var(--mh-glass);
  border: 1px solid var(--mh-stroke);
  -webkit-backdrop-filter: blur(var(--mh-blur));
  backdrop-filter: blur(var(--mh-blur));
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.9);
  transition: transform 0.2s var(--mh-ease), border-color 0.2s var(--mh-ease), box-shadow 0.2s var(--mh-ease);
}
.mh-stat:hover {
  transform: translateY(-3px);
  border-color: var(--mh-stroke-strong);
  box-shadow: 0 30px 70px -40px rgba(255, 255, 255, 0.12);
}
.mh-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--mh-stroke);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.mh-stat-text { text-align: left; line-height: 1.15; }
.mh-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.mh-stat-label {
  margin-top: 0.15rem;
  color: var(--mh-silver-500);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

/* ============================================================
 *  SECTIONS (why-choose-us, CTA)
 * ============================================================ */
.mh-section {
  padding: 4rem 0;
}
.mh-section-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  margin-bottom: 2.75rem;
}

.mh-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.mh-feature {
  padding: 2rem 1.75rem;
  border-radius: 16px;
  background: var(--mh-glass);
  border: 1px solid var(--mh-stroke);
  -webkit-backdrop-filter: blur(var(--mh-blur));
  backdrop-filter: blur(var(--mh-blur));
  transition: transform 0.2s var(--mh-ease), border-color 0.2s var(--mh-ease), box-shadow 0.2s var(--mh-ease);
}
.mh-feature:hover {
  transform: translateY(-4px);
  border-color: var(--mh-stroke-strong);
  box-shadow: 0 24px 60px -34px rgba(255, 255, 255, 0.14);
}
.mh-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--mh-stroke);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.mh-feature h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
.mh-feature p {
  color: var(--mh-silver-300);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Available Products heading */
.mh-products-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: #fff;
  margin: 2rem 0 2.5rem;
}

/* Final CTA */
.mh-cta-band {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.mh-cta-band h2 {
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
}

/* Signature script watermark (Great Vibes) — decorative only */
.mh-signature {
  font-family: var(--mh-font-script);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.25);
  line-height: 1;
}

/* ============================================================
 *  STATUS — product holders (soft green "Operational")
 * ============================================================ */
.mh-fw-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.055);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: 0 0 24px -14px rgba(16, 185, 129, 0.3);
  transition: transform 0.2s var(--mh-ease), border-color 0.2s var(--mh-ease), box-shadow 0.2s var(--mh-ease);
}
.mh-fw-card:hover {
  transform: translateY(-2px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 32px -12px rgba(16, 185, 129, 0.4);
}
.mh-fw-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mh-font-body);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.mh-fw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: var(--mh-safe);
  font-size: 0.95rem;
}
.mh-fw-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #6ee7b7;              /* light emerald */
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.45);
  white-space: nowrap;
}
.mh-fw-dot {
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--mh-safe);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}
.mh-fw-dot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--mh-safe);
  animation: mh-pulse 2s var(--mh-ease) infinite;
}
@keyframes mh-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* Optional: any live SellAuth status whose text contains "undetected" glows green */
.status[data-label*="ndetect" i] span {
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.45);
}

/* ============================================================
 *  REVIEWS — category headers + Discord vouch cards
 * ============================================================ */
.mh-review-cat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0.5rem 0 1.25rem;
}
.mh-review-cat-site { margin-top: 2.75rem; }
.mh-review-cat-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.mh-review-cat-title i { color: var(--mh-silver-300); font-size: 1.1rem; }
.mh-review-cat::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--mh-stroke-strong), transparent);
}
.mh-review-cat-count {
  font-size: 0.8rem;
  color: var(--mh-silver-500);
  font-weight: 500;
  white-space: nowrap;
}

.mh-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: var(--mh-glass);
  border: 1px solid var(--mh-stroke);
  -webkit-backdrop-filter: blur(var(--mh-blur));
  backdrop-filter: blur(var(--mh-blur));
  transition: transform 0.2s var(--mh-ease), border-color 0.2s var(--mh-ease), box-shadow 0.2s var(--mh-ease);
}
.mh-review-card:hover {
  transform: translateY(-3px);
  border-color: var(--mh-stroke-strong);
  box-shadow: 0 24px 55px -34px rgba(255, 255, 255, 0.14);
}
.mh-review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mh-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.16);   /* discord blurple tint */
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.mh-review-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
}
.mh-review-user {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mh-review-dc { color: #7c88f0; font-size: 0.85rem; }
.mh-review-date {
  font-size: 0.72rem;
  color: var(--mh-silver-500);
}
.mh-review-stars {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-shadow: var(--mh-glow-text);
  flex-shrink: 0;
}
.mh-review-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--mh-stroke);
  color: var(--mh-silver-300);
  font-size: 0.72rem;
  font-weight: 600;
}
.mh-review-tag i { font-size: 0.7rem; opacity: 0.7; }
.mh-review-msg {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.55;
}
.mh-review-foot {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--mh-silver-500);
  border-top: 1px solid var(--mh-stroke);
}
.mh-review-foot i { color: #ef4444; }

/* ============================================================
 *  PRODUCT CARDS + GLASS SURFACES (recolor the base theme)
 * ============================================================ */
.bg-card {
  background-color: var(--mh-glass) !important;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* product cards lift + hairline-glow on hover */
.component a.group:hover {
  border-color: var(--mh-stroke-strong) !important;
  box-shadow: 0 22px 55px -34px rgba(255, 255, 255, 0.16);
}

/* ============================================================
 *  MOTION — hero entrance, scroll reveal
 * ============================================================ */
@keyframes mh-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mh-pop {
  0%   { opacity: 0; transform: scale(0.94); }
  60%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}

.mh-hero > * {
  opacity: 0;
  animation: mh-fade-up 0.7s var(--mh-ease) forwards;
}
.mh-hero > .mh-eyebrow      { animation-delay: 0.05s; }
.mh-hero > .mh-wordmark     { animation-delay: 0.15s; }
.mh-hero > .mh-hero-sub     { animation-delay: 0.30s; }
.mh-hero > .mh-hero-actions { animation-delay: 0.42s; }
.mh-hero > .mh-stats        { animation-delay: 0.56s; }

.mh-stat { animation: mh-pop 0.6s var(--mh-ease) both; }
.mh-stats .mh-stat:nth-child(1) { animation-delay: 0.60s; }
.mh-stats .mh-stat:nth-child(2) { animation-delay: 0.70s; }
.mh-stats .mh-stat:nth-child(3) { animation-delay: 0.80s; }

/* Scroll-reveal */
.mh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--mh-ease), transform 0.7s var(--mh-ease);
  will-change: opacity, transform;
}
.mh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mh-features .mh-feature:nth-child(1) { transition-delay: 0.00s; }
.mh-features .mh-feature:nth-child(2) { transition-delay: 0.10s; }
.mh-features .mh-feature:nth-child(3) { transition-delay: 0.20s; }

.mh-feature:hover .mh-feature-icon {
  transform: translateY(-3px) scale(1.05);
  transition: transform 0.25s var(--mh-ease);
}
.mh-feature-icon { transition: transform 0.25s var(--mh-ease); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body::after,
  .mh-hero > *, .mh-stat {
    animation: none !important;
  }
  .mh-hero > * { opacity: 1; }
  .mh-reveal { transition: none; opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .mh-hero { padding-top: 3.5rem; }
  .mh-stat { min-width: 0; width: 100%; }
}
