:root {
  --mz-ink: #101826;
  --mz-navy: #14213d;
  --mz-blue: #234f86;
  --mz-red: #d82333;
  --mz-red-dark: #b41624;
  --mz-paper: #f5f7fa;
  --mz-white: #ffffff;
  --mz-muted: #667085;
  --mz-line: #dce3ec;
  --mz-success: #16835d;
  --mz-shadow: 0 20px 55px rgba(20, 33, 61, 0.12);
  --mz-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body.mz-site {
  margin: 0;
  color: var(--mz-ink);
  background: var(--mz-paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.mz-site::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 33, 61, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 61, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 72%);
}

.mz-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.mz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(220, 227, 236, 0.85);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.mz-nav {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mz-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--mz-ink);
}

.mz-brand img {
  display: block;
  width: auto;
  height: 82px;
  max-width: min(330px, 36vw);
  object-fit: contain;
}

.mz-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mz-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mz-nav-links a:hover,
.mz-nav-links a:focus-visible {
  color: var(--mz-navy);
  background: #edf2f8;
  transform: translateY(-1px);
}

.mz-nav-links .mz-nav-highlight {
  color: var(--mz-white);
  background: var(--mz-red);
}

.mz-nav-links .mz-nav-highlight:hover,
.mz-nav-links .mz-nav-highlight:focus-visible {
  color: var(--mz-white);
  background: var(--mz-red-dark);
}

.mz-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--mz-line);
  border-radius: 14px;
  color: var(--mz-navy);
  background: var(--mz-white);
  font-size: 1.35rem;
}

.mz-main {
  min-height: calc(100vh - 240px);
}

.mz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--mz-red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mz-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--mz-red);
}

.mz-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 76px;
  color: var(--mz-white);
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 35, 51, 0.35), transparent 28%),
    linear-gradient(130deg, #10192b 0%, #14213d 50%, #1b365d 100%);
}

.mz-hero::after {
  content: "SW";
  position: absolute;
  right: -0.04em;
  bottom: -0.3em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(15rem, 33vw, 36rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.mz-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.mz-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 5.8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.mz-hero h1 span {
  color: #ff6b76;
}

.mz-hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  line-height: 1.75;
}

.mz-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.mz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.mz-btn:hover {
  transform: translateY(-2px);
}

.mz-btn:focus-visible,
.mz-menu-toggle:focus-visible,
.mz-duration-btn:focus-visible,
.mz-faq summary:focus-visible {
  outline: 3px solid rgba(216, 35, 51, 0.3);
  outline-offset: 3px;
}

.mz-btn-primary {
  color: var(--mz-white);
  background: var(--mz-red);
  box-shadow: 0 14px 32px rgba(216, 35, 51, 0.3);
}

.mz-btn-primary:hover {
  color: var(--mz-white);
  background: var(--mz-red-dark);
}

.mz-btn-secondary {
  color: var(--mz-white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.mz-btn-secondary:hover {
  color: var(--mz-white);
  background: rgba(255, 255, 255, 0.14);
}

.mz-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.mz-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mz-console {
  position: relative;
  min-height: 440px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(6, 13, 26, 0.68);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.mz-console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.mz-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #83e8bd;
}

.mz-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #45d69c;
  box-shadow: 0 0 0 6px rgba(69, 214, 156, 0.1);
}

.mz-console-map {
  position: relative;
  height: 250px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 42%, rgba(216, 35, 51, 0.3), transparent 11%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #12243f;
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.mz-console-map::before,
.mz-console-map::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48% 52% 58% 42% / 45% 38% 62% 55%;
  transform: rotate(-9deg);
}

.mz-console-map::before {
  inset: 48px 72px 38px 82px;
}

.mz-console-map::after {
  inset: 72px 104px 64px 118px;
  border-color: rgba(216, 35, 51, 0.62);
}

.mz-map-pin {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 3px solid #ff9ba3;
  border-radius: 50%;
  background: var(--mz-red);
  box-shadow: 0 0 0 8px rgba(216, 35, 51, 0.16);
}

.mz-map-pin:nth-child(1) { left: 39%; top: 40%; }
.mz-map-pin:nth-child(2) { left: 58%; top: 53%; }
.mz-map-pin:nth-child(3) { left: 48%; top: 68%; }

.mz-data-canvas-shell {
  isolation: isolate;
  background: #081426;
}

.mz-data-canvas-shell::before,
.mz-data-canvas-shell::after {
  display: none;
}

#mzExtractionCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.mz-canvas-hud {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  pointer-events: none;
}

.mz-canvas-hud span {
  min-width: 0;
  padding: 7px 9px;
  overflow: hidden;
  border: 1px solid rgba(130, 232, 189, 0.16);
  border-radius: 9px;
  color: rgba(230, 244, 255, 0.7);
  background: rgba(5, 15, 29, 0.72);
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz-canvas-hud span:first-child {
  color: #83e8bd;
}

.mz-canvas-hud i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #45d69c;
  box-shadow: 0 0 10px rgba(69, 214, 156, 0.9);
  animation: mz-data-pulse 1.4s ease-in-out infinite;
}

@keyframes mz-data-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.mz-console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mz-console-stat {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.mz-console-stat strong {
  display: block;
  color: var(--mz-white);
  font-size: 1.3rem;
}

.mz-console-stat span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

/* Canvas-only robot internet-search illustration */
.mz-extractor-preview {
  position: relative;
  min-height: 360px;
  height: clamp(360px, 42vw, 500px);
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #061426;
}

.mz-extractor-preview #mzExtractionCanvas {
  display: block;
  width: 100%;
  height: 100%;
}

.mz-preview-header {
  align-items: flex-start;
  padding-bottom: 15px;
}

.mz-preview-header > div {
  display: grid;
  gap: 4px;
}

.mz-preview-eyebrow {
  color: rgba(166, 196, 224, 0.58);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mz-preview-header strong {
  color: #f5fbff;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.mz-preview-form {
  display: grid;
  gap: 7px;
  margin-top: 17px;
}

.mz-preview-form label,
.mz-progress-meta,
.mz-preview-metric span {
  color: rgba(211, 229, 245, 0.6);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.02em;
}

.mz-url-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 5px 5px 5px 13px;
  border: 1px solid rgba(133, 184, 226, 0.2);
  border-radius: 13px;
  background: rgba(4, 13, 27, 0.76);
}

.mz-url-control > i {
  color: #6fa6d5;
}

.mz-url-control input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: #dceeff;
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
}

.mz-url-control input[aria-invalid="true"] {
  color: #ff9ba3;
}

.mz-url-control button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  color: #061b19;
  background: #83e8bd;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mz-url-control button:hover {
  transform: translateY(-1px);
  background: #a0f3d2;
  box-shadow: 0 8px 22px rgba(69, 214, 156, 0.2);
}

.mz-url-control button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.mz-url-control button:focus-visible,
.mz-url-control input:focus-visible {
  outline: 2px solid rgba(131, 232, 189, 0.8);
  outline-offset: 3px;
}

.mz-preview-hint {
  color: rgba(176, 202, 225, 0.42);
  font-size: 0.58rem;
}

.mz-progress-block {
  margin-top: 15px;
}

.mz-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
}

.mz-progress-meta strong {
  color: #83e8bd;
  font-size: 0.7rem;
}

.mz-progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(111, 166, 213, 0.13);
}

.mz-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3e8cc5, #45d69c 72%, #b3ffe0);
  box-shadow: 0 0 16px rgba(69, 214, 156, 0.58);
  transition: width 360ms ease;
}

.mz-preview-grid {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
  margin-top: 16px;
}

.mz-preview-status-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mz-preview-metric,
.mz-activity-stream {
  border: 1px solid rgba(121, 174, 218, 0.13);
  border-radius: 12px;
  background: rgba(7, 20, 38, 0.72);
}

.mz-preview-metric {
  min-width: 0;
  padding: 11px;
}

.mz-preview-metric-wide,
.mz-activity-stream {
  grid-column: 1 / -1;
}

.mz-preview-metric strong {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #f1f8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.96rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mz-preview-metric-wide strong {
  color: #9af0cb;
  font-size: 0.67rem;
  font-weight: 650;
}

.mz-preview-metric-wide strong i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: #45d69c;
  box-shadow: 0 0 9px rgba(69, 214, 156, 0.9);
}

.mz-activity-stream {
  display: grid;
  padding: 5px 9px;
}

.mz-activity-stream div {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 26px;
  border-bottom: 1px solid rgba(121, 174, 218, 0.08);
  color: rgba(220, 237, 251, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.55rem;
}

.mz-activity-stream div:last-child {
  border-bottom: 0;
}

.mz-activity-stream time {
  color: rgba(142, 180, 215, 0.46);
}

.mz-activity-stream b {
  color: #83e8bd;
  font-size: 0.5rem;
}

.mz-extractor-preview .mz-console-map {
  height: auto;
  min-height: 196px;
  margin-top: 0;
  border: 1px solid rgba(121, 174, 218, 0.13);
  border-radius: 14px;
}

.mz-canvas-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 48%, rgba(229, 75, 89, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 37% 48%, rgba(69, 214, 156, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 63% 48%, rgba(69, 214, 156, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 86% 48%, rgba(69, 214, 156, 0.9) 0 3px, transparent 4px),
    #081426;
}

.mz-canvas-fallback::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 14%;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, rgba(229, 75, 89, 0.35), rgba(69, 214, 156, 0.55));
}

.mz-canvas-fallback span {
  position: absolute;
  z-index: 1;
  top: calc(48% - 2px);
  left: 10%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a7ffe0;
  box-shadow: 0 0 10px #45d69c;
  animation: mz-fallback-flow 2.8s linear infinite;
}

.mz-canvas-fallback span:nth-child(2) { animation-delay: -0.7s; }
.mz-canvas-fallback span:nth-child(3) { animation-delay: -1.4s; }
.mz-canvas-fallback span:nth-child(4) { animation-delay: -2.1s; }

@keyframes mz-fallback-flow {
  from { transform: translateX(0); opacity: 0; }
  12%, 86% { opacity: 1; }
  to { transform: translateX(255px); opacity: 0; }
}

.mz-extractor-preview #mzExtractionCanvas {
  z-index: 1;
}

.mz-extractor-preview .mz-canvas-hud {
  z-index: 2;
  left: 10px;
  right: 10px;
  bottom: 9px;
}

.mz-extractor-preview .mz-canvas-hud span {
  padding: 5px 6px;
  font-size: 0.5rem;
}

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

.mz-section-white {
  background: var(--mz-white);
}

.mz-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.mz-section-head h2,
.mz-content-panel h2,
.mz-product-copy h1,
.mz-checkout-card h1 {
  margin: 0;
  color: var(--mz-navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.mz-section-head p {
  max-width: 570px;
  margin: 0;
  color: var(--mz-muted);
  line-height: 1.7;
}

.mz-duration-switcher {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--mz-line);
  border-radius: 16px;
  background: var(--mz-white);
  box-shadow: 0 10px 30px rgba(20, 33, 61, 0.06);
}

.mz-duration-btn {
  min-height: 42px;
  padding: 0 15px;
  border: 0;
  border-radius: 11px;
  color: var(--mz-muted);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.mz-duration-btn.is-active {
  color: var(--mz-white);
  background: var(--mz-navy);
}

.mz-duration-btn:disabled {
  color: #98a2b3;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.55;
}

.mz-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mz-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--mz-line);
  border-radius: var(--mz-radius);
  background: var(--mz-white);
  box-shadow: 0 12px 36px rgba(20, 33, 61, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mz-product-card:hover {
  transform: translateY(-6px);
  border-color: #bbc8d7;
  box-shadow: var(--mz-shadow);
}

.mz-product-card.is-featured {
  color: var(--mz-white);
  border-color: transparent;
  background: linear-gradient(150deg, #14213d 0%, #1b365d 100%);
}

.mz-product-card.is-featured::after {
  content: "+";
  position: absolute;
  right: -17px;
  top: -52px;
  color: rgba(255, 255, 255, 0.065);
  font-size: 15rem;
  font-weight: 300;
  line-height: 1;
}

.mz-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 28px;
}

.mz-market-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--mz-navy);
  background: #edf2f8;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.is-featured .mz-market-code {
  color: var(--mz-white);
  background: var(--mz-red);
}

.mz-new-badge {
  color: var(--mz-red-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.is-featured .mz-new-badge {
  color: #ff9ba3;
}

.mz-product-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mz-navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

.is-featured h3 {
  color: var(--mz-white);
}

.mz-product-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  color: var(--mz-muted);
  font-size: 0.9rem;
}

.is-featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.mz-product-card li {
  display: flex;
  gap: 9px;
}

.mz-product-card li::before {
  content: "✓";
  color: var(--mz-success);
  font-weight: 900;
}

.is-featured li::before {
  color: #7ee2b8;
}

.mz-price-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--mz-line);
}

.is-featured .mz-price-row {
  border-color: rgba(255, 255, 255, 0.14);
}

.mz-price {
  color: var(--mz-navy);
  font-size: 2.15rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.is-featured .mz-price {
  color: var(--mz-white);
}

.mz-price-note {
  color: var(--mz-muted);
  font-size: 0.8rem;
}

.is-featured .mz-price-note {
  color: rgba(255, 255, 255, 0.55);
}

.mz-product-card .mz-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 18px;
}

.mz-btn-dark {
  color: var(--mz-white);
  background: var(--mz-navy);
}

.mz-btn-dark:hover {
  color: var(--mz-white);
  background: #0d172b;
}

.is-featured .mz-btn-dark {
  background: var(--mz-red);
}

.mz-process-grid,
.mz-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mz-process-card,
.mz-value-card,
.mz-content-panel,
.mz-checkout-card,
.mz-side-card {
  border: 1px solid var(--mz-line);
  border-radius: var(--mz-radius);
  background: var(--mz-white);
  box-shadow: 0 14px 42px rgba(20, 33, 61, 0.06);
}

.mz-process-card,
.mz-value-card {
  padding: 30px;
}

.mz-step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 13px;
  color: var(--mz-white);
  background: var(--mz-navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 800;
}

.mz-process-card h3,
.mz-value-card h3,
.mz-side-card h3 {
  margin: 0 0 12px;
  color: var(--mz-navy);
}

.mz-process-card p,
.mz-value-card p,
.mz-content-panel p,
.mz-side-card p {
  color: var(--mz-muted);
  line-height: 1.75;
}

.mz-faq {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}

.mz-faq details {
  border: 1px solid var(--mz-line);
  border-radius: 18px;
  background: var(--mz-white);
  box-shadow: 0 8px 25px rgba(20, 33, 61, 0.045);
}

.mz-faq summary {
  padding: 22px 24px;
  color: var(--mz-navy);
  font-weight: 750;
  cursor: pointer;
}

.mz-faq details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--mz-muted);
  line-height: 1.75;
}

.mz-product-hero {
  padding: 82px 0 68px;
  color: var(--mz-white);
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 35, 51, 0.3), transparent 25%),
    linear-gradient(135deg, #10192b, #1a365e);
}

.mz-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 62px;
}

.mz-product-copy h1 {
  color: var(--mz-white);
}

.mz-product-copy .mz-hero-lead {
  margin-top: 22px;
}

.mz-media-frame {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.mz-media-frame img,
.mz-media-frame video {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 18px;
  background: #0c1728;
}

.mz-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 24px;
}

.mz-content-panel {
  padding: 38px;
}

.mz-content-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.mz-side-card {
  position: sticky;
  top: 100px;
  padding: 28px;
}

.mz-feature-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.mz-feature-list li {
  display: flex;
  gap: 10px;
  color: var(--mz-muted);
}

.mz-feature-list li::before {
  content: "✓";
  color: var(--mz-success);
  font-weight: 900;
}

.mz-pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: center;
  gap: 56px;
}

.mz-pricing-card {
  padding: 36px;
  border: 1px solid var(--mz-line);
  border-radius: 28px;
  background: var(--mz-white);
  box-shadow: var(--mz-shadow);
}

.mz-pricing-card h3 {
  margin: 0;
  color: var(--mz-navy);
  font-size: 1.5rem;
}

.mz-price-large {
  margin: 24px 0 8px;
  color: var(--mz-navy);
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 880;
  letter-spacing: -0.07em;
  line-height: 1;
}

.mz-form-control,
.mz-site .form-control,
.mz-site .form-select {
  min-height: 48px;
  border: 1px solid var(--mz-line);
  border-radius: 13px;
  background: var(--mz-white);
}

.mz-site .form-control:focus,
.mz-site .form-select:focus {
  border-color: var(--mz-blue);
  box-shadow: 0 0 0 4px rgba(35, 79, 134, 0.12);
}

.mz-checkout-shell {
  padding: 82px 0;
}

.mz-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 0.65fr);
  align-items: start;
  justify-content: center;
  gap: 28px;
  max-width: 960px;
  margin-inline: auto;
}

.mz-checkout-card {
  padding: 36px;
}

.mz-checkout-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.mz-checkout-summary {
  display: grid;
  gap: 15px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 18px;
  background: #f2f5f9;
}

.mz-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--mz-muted);
}

.mz-summary-row strong {
  color: var(--mz-navy);
}

.mz-security-note {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid #cfe4dc;
  border-radius: 16px;
  color: #315b4c;
  background: #eef9f5;
  line-height: 1.55;
}

.mz-contact-shell {
  padding: 82px 0;
}

.mz-contact-card {
  max-width: 780px;
  margin-inline: auto;
  padding: 42px;
  border: 1px solid var(--mz-line);
  border-radius: var(--mz-radius);
  background: var(--mz-white);
  box-shadow: var(--mz-shadow);
}

.mz-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #0e1728;
}

.mz-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 46px;
  padding: 56px 0 38px;
}

.mz-footer h2,
.mz-footer h3 {
  color: var(--mz-white);
}

.mz-footer h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.mz-footer h3 {
  margin: 0 0 14px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mz-footer p {
  max-width: 470px;
  line-height: 1.7;
}

.mz-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mz-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.mz-footer a:hover {
  color: var(--mz-white);
}

.mz-footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .mz-preview-grid {
    grid-template-columns: 1fr;
  }

  .mz-extractor-preview .mz-console-map {
    min-height: 220px;
  }

  .mz-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mz-hero-grid,
  .mz-product-layout {
    grid-template-columns: 1fr;
  }

  .mz-console {
    max-width: 720px;
  }
}

@media (max-width: 860px) {
  .mz-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mz-nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    padding: 12px;
    border: 1px solid var(--mz-line);
    border-radius: 18px;
    background: var(--mz-white);
    box-shadow: var(--mz-shadow);
  }

  .mz-nav-links.is-open {
    display: grid;
  }

  .mz-nav-links a {
    width: 100%;
  }

  .mz-section-head,
  .mz-pricing-layout,
  .mz-content-grid,
  .mz-checkout-grid,
  .mz-footer-grid {
    grid-template-columns: 1fr;
  }

  .mz-section-head {
    align-items: start;
    flex-direction: column;
  }

  .mz-process-grid,
  .mz-value-grid {
    grid-template-columns: 1fr;
  }

  .mz-side-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .mz-container {
    width: min(100% - 28px, 1180px);
  }

  .mz-brand img {
    height: 64px;
    max-width: 250px;
  }

  .mz-hero,
  .mz-product-hero {
    padding: 64px 0 54px;
  }

  .mz-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .mz-console {
    min-height: 390px;
    padding: 18px;
  }

  .mz-extractor-preview {
    min-height: 320px;
    height: 340px;
    padding: 0;
  }

  .mz-url-control {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .mz-url-control button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .mz-preview-status-panel {
    grid-template-columns: 1fr;
  }

  .mz-preview-metric-wide,
  .mz-activity-stream {
    grid-column: auto;
  }

  .mz-console-map {
    height: 220px;
  }

  .mz-console-stats {
    grid-template-columns: 1fr;
  }

  .mz-section {
    padding: 68px 0;
  }

  .mz-product-grid {
    grid-template-columns: 1fr;
  }

  .mz-product-card,
  .mz-process-card,
  .mz-value-card,
  .mz-content-panel,
  .mz-pricing-card,
  .mz-checkout-card,
  .mz-contact-card {
    padding: 24px;
  }

  .mz-actions,
  .mz-actions .mz-btn,
  .mz-duration-switcher {
    width: 100%;
  }

  .mz-duration-btn {
    flex: 1 1 40%;
  }
}

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

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