#mhp-page {
  --mhp-bg: #f4f7fb;
  --mhp-surface: #ffffff;
  --mhp-surface-2: #eef4fb;
  --mhp-text: #102236;
  --mhp-muted: #53657a;
  --mhp-line: #d7e2ee;
  --mhp-accent: #2a7de1;
  --mhp-accent-strong: #145fba;
  --mhp-success: #1f7a54;
  --mhp-shadow: 0 18px 48px rgba(16, 34, 54, 0.08);
  color: var(--mhp-text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  #mhp-page {
    --mhp-bg: #09121c;
    --mhp-surface: #0f1a27;
    --mhp-surface-2: #152233;
    --mhp-text: #e7edf5;
    --mhp-muted: #a9b7c8;
    --mhp-line: #24364d;
    --mhp-accent: #6fb0ff;
    --mhp-accent-strong: #93c5fd;
    --mhp-success: #54c08c;
    --mhp-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  }
}

#mhp-page *,
#mhp-page *::before,
#mhp-page *::after {
  box-sizing: border-box;
}

#mhp-page .mhp-skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--mhp-accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

#mhp-page .mhp-skip-link:focus {
  top: 12px;
}

body {
  margin: 0;
}

#mhp-page.mhp-root {
  background:
    radial-gradient(circle at top right, rgba(42, 125, 225, 0.08), transparent 30%),
    radial-gradient(circle at top left, rgba(42, 125, 225, 0.06), transparent 22%),
    var(--mhp-bg);
  min-height: 100vh;
}

#mhp-page h1,
#mhp-page h2,
#mhp-page h3,
#mhp-page .mhp-kicker {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  letter-spacing: -0.02em;
}

#mhp-page h1,
#mhp-page h2,
#mhp-page h3 {
  margin: 0 0 12px;
  line-height: 1.15;
}

#mhp-page p {
  margin: 0 0 16px;
  color: var(--mhp-muted);
}

#mhp-page a {
  color: inherit;
}

#mhp-page a:focus,
#mhp-page button:focus,
#mhp-page input:focus,
#mhp-page textarea:focus {
  outline: 3px solid rgba(42, 125, 225, 0.24);
  outline-offset: 2px;
}

#mhp-page .mhp-announcement {
  padding: 10px 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--mhp-accent), var(--mhp-accent-strong));
}

#mhp-page .mhp-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

#mhp-page .mhp-header,
#mhp-page .mhp-hero,
#mhp-page .mhp-card,
#mhp-page .mhp-step,
#mhp-page .mhp-media-card,
#mhp-page .mhp-faq__item,
#mhp-page .mhp-footer {
  background: var(--mhp-surface);
  border: 1px solid var(--mhp-line);
  box-shadow: var(--mhp-shadow);
}

#mhp-page .mhp-header,
#mhp-page .mhp-hero,
#mhp-page .mhp-section,
#mhp-page .mhp-footer {
  margin-top: 24px;
}

#mhp-page .mhp-header,
#mhp-page .mhp-hero,
#mhp-page .mhp-footer,
#mhp-page .mhp-security,
#mhp-page .mhp-final-cta {
  border-radius: 24px;
  padding: 22px;
}

#mhp-page .mhp-header {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

#mhp-page .mhp-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

#mhp-page .mhp-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--mhp-surface-2);
}

#mhp-page .mhp-logo svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--mhp-accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#mhp-page .mhp-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mhp-accent);
}

#mhp-page .mhp-host-note {
  margin: 0;
  font-size: 13px;
}

#mhp-page .mhp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

#mhp-page .mhp-button--primary {
  background: var(--mhp-accent);
  color: #fff;
}

#mhp-page .mhp-button--primary:hover {
  background: var(--mhp-accent-strong);
}

#mhp-page .mhp-button--ghost {
  border-color: var(--mhp-line);
  background: transparent;
}

#mhp-page .mhp-hero {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

#mhp-page .mhp-hero h1 {
  font-size: clamp(34px, 6vw, 62px);
}

#mhp-page .mhp-lead {
  font-size: 18px;
  line-height: 1.8;
}

#mhp-page .mhp-cta-row,
#mhp-page .mhp-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#mhp-page .mhp-trust-list,
#mhp-page .mhp-bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

#mhp-page .mhp-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#mhp-page .mhp-trust-list li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--mhp-line);
  background: var(--mhp-surface-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--mhp-muted);
}

#mhp-page .mhp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

#mhp-page .mhp-hero-image {
  display: block;
  width: min(100%, 320px);
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--mhp-line);
  box-shadow: var(--mhp-shadow);
  background: var(--mhp-surface);
}

#mhp-page .mhp-device-card {
  width: 100%;
  border-radius: 26px;
  padding: 18px;
  background: linear-gradient(180deg, var(--mhp-surface-2), var(--mhp-surface));
  border: 1px solid var(--mhp-line);
}

#mhp-page .mhp-device-card__top,
#mhp-page .mhp-device-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--mhp-muted);
}

#mhp-page .mhp-status-dot {
  color: var(--mhp-success);
}

#mhp-page .mhp-device-card__body {
  margin: 18px 0;
  border-radius: 22px;
  background: var(--mhp-surface);
  border: 1px solid var(--mhp-line);
  padding: 18px;
}

#mhp-page .mhp-record-line {
  height: 10px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 125, 225, 0.2), rgba(42, 125, 225, 0.08));
}

#mhp-page .mhp-record-line--short {
  width: 68%;
}

#mhp-page .mhp-qr-tile {
  width: 120px;
  height: 120px;
  margin: 18px auto;
  border-radius: 18px;
  border: 1px solid var(--mhp-line);
  background:
    linear-gradient(90deg, rgba(16, 34, 54, 0.08) 50%, transparent 50%),
    linear-gradient(rgba(16, 34, 54, 0.08) 50%, transparent 50%);
  background-size: 16px 16px;
  background-color: var(--mhp-surface-2);
}

#mhp-page .mhp-section {
  padding: 8px 0;
}

#mhp-page .mhp-section__heading {
  margin-bottom: 18px;
}

#mhp-page .mhp-problem-grid,
#mhp-page .mhp-feature-grid,
#mhp-page .mhp-roadmap-grid,
#mhp-page .mhp-testimonial-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

#mhp-page .mhp-card,
#mhp-page .mhp-step,
#mhp-page .mhp-media-card,
#mhp-page .mhp-faq__item {
  border-radius: 20px;
  padding: 18px;
}

#mhp-page .mhp-steps,
#mhp-page .mhp-media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 360px));
  justify-content: center;
}

#mhp-page .mhp-step__count {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--mhp-accent);
}

#mhp-page .mhp-security__grid,
#mhp-page .mhp-split-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

#mhp-page .mhp-bullet-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 18px;
  color: var(--mhp-muted);
}

#mhp-page .mhp-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mhp-accent);
}

#mhp-page .mhp-portability__copy {
  max-width: 820px;
  font-size: 17px;
}

#mhp-page .mhp-media-placeholder,
#mhp-page .mhp-video-poster,
#mhp-page .mhp-media-image {
  min-height: 240px;
  border-radius: 18px;
}

#mhp-page .mhp-media-placeholder,
#mhp-page .mhp-video-poster {
  display: grid;
  place-items: center;
  border: 1px dashed var(--mhp-line);
  background: linear-gradient(135deg, var(--mhp-surface-2), transparent);
  color: var(--mhp-muted);
  text-align: center;
  font-weight: 700;
}

#mhp-page .mhp-media-image {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  height: auto;
  border: 1px solid var(--mhp-line);
  object-fit: cover;
  background: var(--mhp-surface-2);
}

#mhp-page .mhp-media-card figcaption {
  margin-top: 12px;
  color: var(--mhp-muted);
}

#mhp-page .mhp-faq__trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: var(--mhp-text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

#mhp-page .mhp-faq__trigger::after {
  content: "+";
  float: right;
  color: var(--mhp-accent);
}

#mhp-page .mhp-faq__trigger[aria-expanded="true"]::after {
  content: "-";
}

#mhp-page .mhp-faq__panel {
  padding-top: 12px;
}

#mhp-page .mhp-final-cta {
  background: linear-gradient(180deg, var(--mhp-surface), var(--mhp-surface-2));
}

#mhp-page .mhp-footer {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

#mhp-page .mhp-footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#mhp-page code {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.95em;
}

@media (max-width: 860px) {
  #mhp-page .mhp-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #mhp-page .mhp-shell {
    width: min(1120px, calc(100% - 20px));
  }

  #mhp-page .mhp-header,
  #mhp-page .mhp-hero,
  #mhp-page .mhp-footer,
  #mhp-page .mhp-security,
  #mhp-page .mhp-final-cta,
  #mhp-page .mhp-card,
  #mhp-page .mhp-step,
  #mhp-page .mhp-media-card,
  #mhp-page .mhp-faq__item {
    padding: 16px;
  }

  #mhp-page .mhp-header {
    align-items: flex-start;
    flex-direction: column;
  }

  #mhp-page .mhp-cta-row,
  #mhp-page .mhp-header__actions {
    width: 100%;
  }

  #mhp-page .mhp-button {
    width: 100%;
  }
}
