/* Matchline marketing — Zoho-inspired design system */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mlx-ink: #18191B;
  --mlx-paper: #FFFFFF;
  --mlx-paper-dim: #F6F8FB;
  --mlx-paper-muted: #EEF2F7;
  --mlx-indigo: #1B6BBA;
  --mlx-indigo-dim: #155A9E;
  --mlx-indigo-light: #E8F2FC;
  --mlx-amber: #F0483E;
  --mlx-amber-dim: #D93D33;
  --mlx-line: rgba(24, 25, 27, 0.1);
  --mlx-line-strong: rgba(24, 25, 27, 0.18);
  --mlx-text-muted: #5C6570;
  --zh-radius: 8px;
  --zh-radius-lg: 16px;
  --zh-shadow: 0 4px 24px rgba(24, 25, 27, 0.08);
  --zh-shadow-sm: 0 2px 8px rgba(24, 25, 27, 0.06);
}

html { scroll-behavior: smooth; }

body.ml-site {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--mlx-paper);
  color: var(--mlx-ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.ml-site h1, body.ml-site h2, body.ml-site h3, body.ml-site h4 {
  font-family: "Inter", sans-serif;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.mono { font-family: "JetBrains Mono", monospace; letter-spacing: -0.01em; }

.mlx-wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* Header — Zoho-style clean white nav */
.ml-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mlx-line);
}

.ml-site-header.is-scrolled {
  background: #fff;
  box-shadow: var(--zh-shadow-sm);
  border-bottom: 1px solid var(--mlx-line);
}

.ml-site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ml-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.ml-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--mlx-indigo);
  flex-shrink: 0;
  display: block;
  font-size: 0;
  color: transparent;
  box-shadow: none;
  position: relative;
}
.ml-logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: #fff;
  opacity: 0.9;
}

.ml-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.ml-logo-text strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--mlx-ink);
}

.ml-logo-text small {
  display: none;
}

.ml-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--mlx-line-strong);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.ml-nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--mlx-ink);
  border-radius: 1px;
}

.ml-site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.ml-site-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ml-site-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(18, 20, 26, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.ml-site-links a:hover {
  color: var(--mlx-ink);
  background: transparent;
}

.ml-site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ml-nav-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 20, 26, 0.7);
  text-decoration: none;
  white-space: nowrap;
}

.ml-nav-text:hover { color: var(--mlx-ink); }

.ml-nav-user {
  font-size: 14px;
  color: rgba(18, 20, 26, 0.65);
  white-space: nowrap;
}

.ml-btn-nav-primary,
.ml-btn.ml-btn-nav-primary {
  background: var(--mlx-amber) !important;
  color: #fff !important;
  border: 1px solid var(--mlx-amber) !important;
  border-radius: var(--zh-radius);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.15s, transform 0.15s;
}

.ml-btn-nav-primary:hover {
  background: var(--mlx-amber-dim) !important;
  border-color: var(--mlx-amber-dim) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 72, 62, 0.25);
}

.ml-btn-nav-ghost,
.ml-btn.ml-btn-nav-ghost {
  background: transparent;
  color: var(--mlx-ink);
  border: 1px solid var(--mlx-line-strong);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}

.ml-btn-nav-ghost:hover { background: rgba(18, 20, 26, 0.05); }

.ml-site-actions form { margin: 0; }

.ml-site-main { padding-top: 72px; flex: 1; }

body.ml-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hero */
.mlx-hero { padding: 80px 0 90px; }
.mlx-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(18, 20, 26, 0.55);
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.mlx-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mlx-indigo); }
.mlx-hero h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.98; font-weight: 700; max-width: 920px;
}
.mlx-word-hrms { color: var(--mlx-amber-dim); }
.mlx-word-match { color: var(--mlx-indigo); }
.mlx-hero-sub {
  margin-top: 28px; font-size: 19px; line-height: 1.55;
  color: rgba(18, 20, 26, 0.68); max-width: 560px;
}
.mlx-hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.mlx-btn {
  font-family: "Inter", sans-serif; font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: transform 0.15s, box-shadow 0.15s;
}
.mlx-btn-dark { background: var(--mlx-amber); color: #fff; border-color: var(--mlx-amber); }
.mlx-btn-dark:hover { background: var(--mlx-amber-dim); border-color: var(--mlx-amber-dim); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(240, 72, 62, 0.25); }
.mlx-btn-ghost { background: transparent; color: var(--mlx-indigo); border-color: var(--mlx-indigo); }
.mlx-btn-ghost:hover { background: var(--mlx-indigo-light); }
.mlx-btn-lg { padding: 15px 26px; font-size: 15px; border-radius: 10px; }

.mlx-hero-stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--mlx-line); padding-top: 28px; gap: 24px;
}
.mlx-stat-num { font-family: "Space Grotesk", sans-serif; font-size: 28px; font-weight: 700; }
.mlx-stat-lbl { font-size: 12.5px; color: rgba(18, 20, 26, 0.55); margin-top: 4px; font-family: "JetBrains Mono", monospace; letter-spacing: 0.02em; text-transform: uppercase; }

/* Plots intro */
.mlx-plots-intro { padding: 40px 0 20px; text-align: center; }
.mlx-plots-intro h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; }
.mlx-plots-intro p { max-width: 600px; margin: 16px auto 0; color: rgba(18, 20, 26, 0.65); font-size: 16.5px; line-height: 1.6; }

/* Spine */
.mlx-spine-section { padding: 80px 0 60px; }
.mlx-spine-grid { display: grid; grid-template-columns: 1fr 2px 1fr; gap: 0; }
.mlx-spine-line {
  background: linear-gradient(to bottom, var(--mlx-amber) 0%, var(--mlx-amber) 48%, var(--mlx-indigo) 52%, var(--mlx-indigo) 100%);
  width: 2px;
}
.mlx-plot-col { padding: 0 44px; }
.mlx-plot-col.left { padding-left: 0; }
.mlx-plot-col.right { padding-right: 0; }
.mlx-plot-tag {
  font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 100px; margin-bottom: 22px;
}
.mlx-plot-tag.amber { background: rgba(232, 163, 61, 0.15); color: var(--mlx-amber-dim); }
.mlx-plot-tag.indigo { background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim); }
.mlx-plot-col h3 { font-size: 30px; font-weight: 700; margin-bottom: 14px; line-height: 1.15; }
.mlx-plot-desc { color: rgba(18, 20, 26, 0.65); font-size: 15.5px; line-height: 1.6; margin-bottom: 28px; }

.mlx-mock-card { background: #fff; border: 1px solid var(--mlx-line); border-radius: 14px; padding: 20px; box-shadow: 0 1px 2px rgba(18, 20, 26, 0.04); }
.mlx-chat-row { display: flex; gap: 10px; margin-bottom: 14px; }
.mlx-chat-row:last-child { margin-bottom: 0; }
.mlx-chat-row.user { flex-direction: row-reverse; }
.mlx-bubble { max-width: 78%; padding: 11px 14px; border-radius: 12px; font-size: 14px; line-height: 1.45; }
.mlx-chat-row.user .mlx-bubble { background: var(--mlx-amber); color: #2b1d05; border-bottom-right-radius: 4px; }
.mlx-chat-row.bot .mlx-bubble { background: var(--mlx-paper-dim); color: var(--mlx-ink); border-bottom-left-radius: 4px; }
.mlx-chat-row.system .mlx-bubble {
  background: transparent; border: 1px dashed var(--mlx-line-strong); color: rgba(18, 20, 26, 0.6);
  font-family: "JetBrains Mono", monospace; font-size: 12.5px; max-width: 100%;
  display: flex; align-items: center; gap: 8px;
}
.mlx-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #3fae5c; flex-shrink: 0; }

.mlx-job-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--mlx-line); }
.mlx-job-title { font-weight: 600; font-size: 15px; }
.mlx-job-meta { font-size: 12.5px; color: rgba(18, 20, 26, 0.5); margin-top: 3px; font-family: "JetBrains Mono", monospace; }
.mlx-badge-live {
  font-family: "JetBrains Mono", monospace; font-size: 11px;
  background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim);
  padding: 4px 9px; border-radius: 100px; display: flex; align-items: center; gap: 6px;
}
.mlx-cand-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--mlx-line); }
.mlx-cand-row:last-child { border-bottom: none; padding-bottom: 0; }
.mlx-cand-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--mlx-indigo), var(--mlx-amber)); flex-shrink: 0; }
.mlx-cand-name { font-size: 14px; font-weight: 600; }
.mlx-cand-role { font-size: 12px; color: rgba(18, 20, 26, 0.5); }
.mlx-cand-score { margin-left: auto; text-align: right; font-family: "JetBrains Mono", monospace; }
.mlx-pct { font-size: 15px; font-weight: 600; color: var(--mlx-indigo-dim); }
.mlx-why { font-size: 10.5px; color: rgba(18, 20, 26, 0.45); }

/* Converge */
.mlx-converge { padding: 70px 0 100px; text-align: center; }
.mlx-converge-line-wrap { display: flex; justify-content: center; margin-bottom: 36px; }
.mlx-converge-funnel { width: 220px; height: 60px; }
.mlx-converge h3 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; max-width: 640px; margin: 0 auto; }
.mlx-converge p { max-width: 520px; margin: 16px auto 0; color: rgba(18, 20, 26, 0.62); font-size: 15.5px; line-height: 1.6; }
.mlx-record-card {
  max-width: 460px; margin: 40px auto 0; background: var(--mlx-ink); color: var(--mlx-paper);
  border-radius: 16px; padding: 26px 28px; text-align: left; box-shadow: 0 20px 50px rgba(18, 20, 26, 0.25);
}
.mlx-record-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.mlx-record-id { font-family: "JetBrains Mono", monospace; font-size: 11.5px; color: rgba(242, 240, 234, 0.5); }
.mlx-record-name { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.mlx-record-role { font-size: 13px; color: rgba(242, 240, 234, 0.6); }
.mlx-record-tags { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.mlx-record-tag {
  font-family: "JetBrains Mono", monospace; font-size: 11px; padding: 5px 10px; border-radius: 100px;
  border: 1px solid rgba(242, 240, 234, 0.18); color: rgba(242, 240, 234, 0.75);
}
.mlx-record-tag.amber { border-color: rgba(232, 163, 61, 0.4); color: var(--mlx-amber); }
.mlx-record-tag.indigo { border-color: rgba(75, 78, 252, 0.4); color: #9fa0ff; }

/* Features */
.mlx-features { padding: 60px 0 100px; }
.mlx-features-head { max-width: 600px; margin-bottom: 56px; }
.mlx-features-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; }
.mlx-feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--mlx-line); border: 1px solid var(--mlx-line); border-radius: 16px; overflow: hidden;
}
.mlx-feat-card { background: var(--mlx-paper); padding: 32px; }
.mlx-icon-tag {
  width: 38px; height: 38px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.mlx-feat-card.amber .mlx-icon-tag { background: rgba(232, 163, 61, 0.15); color: var(--mlx-amber-dim); }
.mlx-feat-card.indigo .mlx-icon-tag { background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim); }
.mlx-feat-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.mlx-feat-card p { font-size: 14.5px; color: rgba(18, 20, 26, 0.62); line-height: 1.55; }

/* FAQ */
.mlx-faq { padding: 60px 0; }
.mlx-faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.mlx-faq-intro h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-top: 12px; }
.mlx-faq-item { border-bottom: 1px solid var(--mlx-line); padding: 1rem 0; }
.mlx-faq-item summary { font-weight: 600; cursor: pointer; font-size: 15px; }
.mlx-faq-item p { margin-top: 0.75rem; font-size: 14.5px; color: rgba(18, 20, 26, 0.65); line-height: 1.55; }

/* CTA */
.mlx-cta-final { padding: 100px 0 120px; text-align: center; }
.mlx-cta-final h2 { font-size: clamp(32px, 5.5vw, 58px); font-weight: 700; line-height: 1.05; max-width: 760px; margin: 0 auto; }
.mlx-cta-final .mlx-hero-actions { justify-content: center; margin-top: 36px; }

/* Reveal */
.mlx-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mlx-reveal.in { opacity: 1; transform: translateY(0); }

/* Footer — Zoho-style dark footer */
.ml-site-footer {
  background: #131A25;
  color: #E8ECF1;
  border-top: none;
  padding: 56px 0 0;
}

.ml-footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 48px;
}

.ml-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ml-footer-brand .ml-logo-mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.ml-footer-logo {
  display: block;
  height: 40px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.ml-footer-brand strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #fff;
}

.ml-footer-brand p {
  font-size: 13.5px;
  color: rgba(232, 236, 241, 0.65);
  max-width: 280px;
  line-height: 1.5;
}

.ml-footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 236, 241, 0.45);
  margin-bottom: 14px;
}

.ml-footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(232, 236, 241, 0.78);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}

.ml-footer-col a:hover { color: #fff; }

.ml-footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(232, 236, 241, 0.4);
  font-family: "JetBrains Mono", monospace;
}

@media (max-width: 900px) {
  .ml-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
  .ml-footer-top { grid-template-columns: 1fr; }
  .ml-footer-bottom { flex-direction: column; text-align: center; }
}

/* Cookie notice (marketing pages don't load app.css) */
.cookie-notice {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  max-width: min(560px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  background: var(--mlx-ink);
  color: var(--mlx-paper);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-notice.hidden { display: none; }
.cookie-notice a { color: var(--mlx-amber); }
.cookie-notice .btn {
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
}

@media (max-width: 560px) {
  .cookie-notice {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.65rem;
    transform: none;
    max-width: none;
    width: auto;
  }
}
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--mlx-indigo);
  color: #fff;
}

@media (max-width: 900px) {
  .mlx-spine-grid { grid-template-columns: 1fr; }
  .mlx-spine-line { display: none; }
  .mlx-plot-col { padding: 0 0 60px 0; }
  .mlx-plot-col.right { padding-bottom: 0; }
  .mlx-faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .ml-nav-toggle { display: flex; }
  .ml-site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--mlx-line);
    box-shadow: 0 12px 32px rgba(24, 25, 27, 0.08);
  }
  body.ml-nav-open .ml-site-nav { display: flex; }
  .mp-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    width: 100%;
  }
  .mp-nav-drop { width: 100%; }
  .mp-nav-drop-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 4px;
    font-size: 15px;
  }
  .mp-nav-flat {
    display: block;
    padding: 12px 4px;
    font-size: 15px;
  }
  .ml-site-links a {
    display: block;
    padding: 0.65rem 0;
    width: 100%;
  }
  .ml-site-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--mlx-line);
  }
  .ml-site-header-inner { position: relative; }
}

@media (max-width: 760px) {
  .mlx-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .mlx-feat-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mlx-reveal { opacity: 1; transform: none; transition: none; }
  .mlx-hero-stack .mlx-frame { animation: none; }
}

/* ── Premium hero layout ── */
.mlx-hero-premium { padding: 56px 0 72px; overflow: hidden; }
.mlx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
}
.mlx-hero-visual { position: relative; min-width: 0; }

/* ── Product frames ── */
.mlx-preview-disclaimer {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.4);
  margin-bottom: 10px;
}
.mlx-frame {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(18, 20, 26, 0.1), 0 4px 12px rgba(18, 20, 26, 0.04);
  overflow: hidden;
}
.mlx-frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(18, 20, 26, 0.03);
  border-bottom: 1px solid var(--mlx-line);
}
.mlx-frame-dots { display: flex; gap: 5px; }
.mlx-frame-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(18, 20, 26, 0.12);
}
.mlx-frame-title {
  font-size: 11px;
  color: rgba(18, 20, 26, 0.45);
  flex: 1;
  text-align: center;
  padding-right: 44px;
}
.mlx-frame-body { padding: 16px 18px 18px; }

/* ── Hero stacked composition ── */
.mlx-hero-stage { position: relative; }
.mlx-hero-stack {
  position: relative;
  min-height: 420px;
  padding: 12px 0 24px;
}
.mlx-frame-hero {
  position: absolute;
  width: min(92%, 340px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mlx-frame-seeker { top: 0; left: 0; z-index: 3; transform: rotate(-1.5deg); }
.mlx-frame-recruit { top: 88px; left: 18%; z-index: 2; transform: rotate(0.8deg); }
.mlx-frame-hrms { top: 168px; right: 0; z-index: 1; transform: rotate(-0.5deg); }
.mlx-hero-connect {
  position: absolute;
  inset: 40px 8% 60px 8%;
  border: 1px dashed rgba(75, 78, 252, 0.2);
  border-radius: 20px;
  pointer-events: none;
  z-index: 0;
}
.mlx-hero-stack:hover .mlx-frame-seeker { transform: rotate(-1deg) translateY(-4px); }
.mlx-hero-stack:hover .mlx-frame-recruit { transform: rotate(0.4deg) translateY(-2px); }
.mlx-hero-stack:hover .mlx-frame-hrms { transform: rotate(0deg) translateY(-6px); }

/* ── Preview UI primitives ── */
.mlx-preview-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mlx-preview-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.5);
}
.mlx-preview-eyebrow.indigo { color: var(--mlx-indigo-dim); }
.mlx-preview-eyebrow.amber { color: var(--mlx-amber-dim); }
.mlx-pill-preview {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 100px;
  background: rgba(18, 20, 26, 0.06);
  color: rgba(18, 20, 26, 0.65);
}
.mlx-pill-preview.indigo { background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim); }
.mlx-pill-preview.amber { background: rgba(232, 163, 61, 0.15); color: var(--mlx-amber-dim); }
.mlx-preview-role strong { display: block; font-size: 15px; margin-bottom: 4px; }
.mlx-preview-role span { font-size: 11px; color: rgba(18, 20, 26, 0.5); }
.mlx-preview-why {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  font-size: 12.5px;
  color: rgba(18, 20, 26, 0.62);
  line-height: 1.45;
}
.mlx-preview-why li {
  padding: 5px 0 5px 14px;
  position: relative;
}
.mlx-preview-why li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mlx-indigo);
  opacity: 0.55;
}
.mlx-preview-why.compact li { padding: 3px 0 3px 12px; font-size: 11.5px; }
.mlx-preview-pipeline {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.mlx-preview-pipeline span,
.mlx-preview-pipeline.mini span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid var(--mlx-line);
  color: rgba(18, 20, 26, 0.5);
}
.mlx-preview-pipeline span.active,
.mlx-preview-pipeline.mini span.active {
  background: rgba(75, 78, 252, 0.1);
  border-color: rgba(75, 78, 252, 0.25);
  color: var(--mlx-indigo-dim);
}
.mlx-preview-pipeline.mini { margin-top: 14px; }
.mlx-preview-inbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--mlx-line);
  font-size: 13px;
}
.mlx-preview-inbox-row:last-child { border-bottom: none; }
.mlx-preview-inbox-row.muted { opacity: 0.72; }
.mlx-preview-inbox-row strong { display: block; font-size: 13px; }
.mlx-preview-inbox-row span.mono { font-size: 10px; color: rgba(18, 20, 26, 0.48); }
.mlx-preview-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mlx-indigo), var(--mlx-amber));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mlx-preview-avatar.sm { width: 28px; height: 28px; font-size: 10px; }
.mlx-preview-fit {
  margin-left: auto;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--mlx-indigo-dim);
  white-space: nowrap;
}
.mlx-preview-stats.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mlx-preview-stats.trio div {
  background: rgba(232, 163, 61, 0.08);
  border-radius: 8px;
  padding: 8px;
  font-size: 11px;
}
.mlx-preview-stats.trio strong { display: block; font-size: 12px; margin-bottom: 2px; }
.mlx-preview-stats.trio span { color: rgba(18, 20, 26, 0.5); font-size: 10px; }
.mlx-preview-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: rgba(18, 20, 26, 0.62);
}
.mlx-preview-checklist li { padding: 5px 0 5px 18px; position: relative; }
.mlx-preview-checklist li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: rgba(18, 20, 26, 0.35);
  font-size: 11px;
}
.mlx-preview-checklist li.done::before { content: "✓"; color: #3fae5c; }
.mlx-preview-checklist.compact { margin-top: 10px; }
.mlx-preview-inbox-text { min-width: 0; flex: 1; }
.mlx-preview-inbox-text strong { display: block; font-size: 13px; line-height: 1.25; }
.mlx-preview-inbox-text .mono,
.mlx-preview-inbox-text span.mono { display: block; font-size: 10px; color: rgba(18, 20, 26, 0.48); margin-top: 2px; }
.mlx-preview-fit.muted { color: rgba(18, 20, 26, 0.45); }
.mlx-preview-avatar.lg { width: 40px; height: 40px; font-size: 12px; }
.mlx-preview-pipeline.vertical {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-top: 8px;
}
.mlx-preview-pipeline.vertical span { text-align: center; }

/* ── Showcase sections ── */
.mlx-showcase {
  padding: 100px 0;
  position: relative;
}
.mlx-showcase-seeker { background: linear-gradient(180deg, transparent 0%, rgba(75, 78, 252, 0.04) 50%, transparent 100%); }
.mlx-showcase-recruit { background: linear-gradient(180deg, transparent 0%, rgba(75, 78, 252, 0.03) 50%, transparent 100%); }
.mlx-showcase-hrms { background: linear-gradient(180deg, transparent 0%, rgba(232, 163, 61, 0.06) 50%, transparent 100%); }
.mlx-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}
.mlx-showcase-grid.reverse .mlx-showcase-copy { order: 2; }
.mlx-showcase-grid.reverse .mlx-showcase-visual { order: 1; }
.mlx-showcase-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}
.mlx-cap-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.mlx-cap-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--mlx-line);
  font-size: 14.5px;
  color: rgba(18, 20, 26, 0.65);
  line-height: 1.5;
}
.mlx-cap-list li strong {
  display: block;
  color: var(--mlx-ink);
  font-size: 13px;
  margin-bottom: 4px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
}
.mlx-product-preview { position: relative; min-width: 0; }
.mlx-frame-showcase { width: 100%; }
.mlx-frame-body.mlx-preview-shell {
  padding: 0;
  background: #faf9f6;
}
.mlx-preview-shell.indigo-context { background: linear-gradient(180deg, #faf9f6 0%, rgba(75, 78, 252, 0.03) 100%); }
.mlx-preview-shell.amber-context { background: linear-gradient(180deg, #faf9f6 0%, rgba(232, 163, 61, 0.05) 100%); }

.mlx-preview-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-bottom: 1px solid var(--mlx-line);
  background: #fff;
}
.mlx-preview-toolbar span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(18, 20, 26, 0.5);
  padding: 6px 10px;
  border-radius: 8px;
}
.mlx-preview-toolbar span.active {
  background: rgba(75, 78, 252, 0.1);
  color: var(--mlx-indigo-dim);
  font-weight: 600;
}
.amber-context .mlx-preview-toolbar span.active {
  background: rgba(232, 163, 61, 0.15);
  color: var(--mlx-amber-dim);
}
.mlx-preview-toolbar-meta {
  margin-left: auto;
  font-size: 10px !important;
  color: rgba(18, 20, 26, 0.45) !important;
  padding: 0 !important;
  font-weight: 400 !important;
}

.mlx-preview-lifecycle {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-bottom: 1px solid var(--mlx-line);
  background: rgba(232, 163, 61, 0.06);
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  color: rgba(18, 20, 26, 0.55);
}
.mlx-preview-lifecycle .arrow { opacity: 0.4; }
.mlx-preview-lifecycle .done { color: #3fae5c; }
.mlx-preview-lifecycle .active {
  color: var(--mlx-amber-dim);
  font-weight: 600;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid rgba(232, 163, 61, 0.25);
}

.mlx-preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--mlx-line);
  border-bottom: 1px solid var(--mlx-line);
}
.mlx-preview-metrics.amber .mlx-preview-metric.highlight { border-bottom-color: var(--mlx-amber); }
.mlx-preview-metrics:has(.mlx-preview-metric:nth-child(3):last-child) {
  grid-template-columns: repeat(3, 1fr);
}
.mlx-preview-metric {
  background: #fff;
  padding: 12px 10px;
  text-align: center;
}
.mlx-preview-metric.highlight { border-bottom: 2px solid var(--mlx-indigo); }
.amber-context .mlx-preview-metric.highlight { border-bottom-color: var(--mlx-amber); }
.mlx-preview-metric .n {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--mlx-ink);
}
.mlx-preview-metric .l {
  display: block;
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.48);
  line-height: 1.3;
}

.mlx-preview-workspace {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding: 14px;
}
.mlx-preview-workspace.hrms { grid-template-columns: 1.1fr 0.9fr; }

.mlx-preview-panel {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  padding: 14px;
}
.mlx-preview-panel.compact { padding: 12px; }
.mlx-preview-panel.accent {
  background: rgba(75, 78, 252, 0.05);
  border-color: rgba(75, 78, 252, 0.15);
}
.mlx-preview-panel.accent strong { display: block; font-size: 13px; margin: 6px 0 4px; }
.mlx-preview-panel.accent p { font-size: 11px; color: rgba(18, 20, 26, 0.55); margin: 0; }
.mlx-preview-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.mlx-preview-panel-head h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 4px 0 2px;
  line-height: 1.2;
}
.mlx-preview-panel-head p.mono { font-size: 11px; color: rgba(18, 20, 26, 0.5); margin: 0; }

.mlx-preview-aside-stack { display: flex; flex-direction: column; gap: 10px; }

.mlx-preview-inbox-split {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 12px;
  padding: 14px;
  min-height: 280px;
}
.mlx-preview-queue {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  overflow: hidden;
}
.mlx-preview-queue-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--mlx-line);
}
.mlx-preview-queue-item:last-child { border-bottom: none; }
.mlx-preview-queue-item.selected {
  background: rgba(75, 78, 252, 0.08);
  box-shadow: inset 3px 0 0 var(--mlx-indigo);
}

.mlx-preview-detail {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mlx-preview-detail-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mlx-line);
}
.mlx-preview-detail-head h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
}
.mlx-preview-detail-head p.mono { font-size: 11px; color: rgba(18, 20, 26, 0.5); margin: 0; }
.mlx-preview-detail-block .mlx-preview-why { margin-top: 8px; }
.mlx-preview-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }

.mlx-preview-table-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mlx-line);
}
.mlx-preview-table-row:last-child { border-bottom: none; }
.mlx-preview-cal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 8px;
}
.mlx-preview-cal span {
  aspect-ratio: 1;
  background: rgba(18, 20, 26, 0.05);
  border-radius: 4px;
  font-size: 0;
}
.mlx-preview-cal span.event { background: rgba(232, 163, 61, 0.4); }

/* ── Connected journey ── */
.mlx-journey {
  padding: 88px 0;
  background: var(--mlx-ink);
  color: var(--mlx-paper);
}
.mlx-journey-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.mlx-journey-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 12px 0 14px;
}
.mlx-journey-head p { color: rgba(242, 240, 234, 0.65); font-size: 16px; line-height: 1.6; }
.mlx-journey .mlx-eyebrow { color: rgba(242, 240, 234, 0.5); justify-content: center; }
.mlx-journey-track {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.mlx-journey-track > li:not(.mlx-journey-connector) {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0 6px;
}
.mlx-journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  margin-bottom: 12px;
  background: rgba(242, 240, 234, 0.08);
  border: 1px solid rgba(242, 240, 234, 0.15);
}
.mlx-journey-icon.indigo { border-color: rgba(75, 78, 252, 0.5); color: #9fa0ff; }
.mlx-journey-icon.amber { border-color: rgba(232, 163, 61, 0.5); color: var(--mlx-amber); }
.mlx-journey-track strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}
.mlx-journey-track > li:not(.mlx-journey-connector) > span:last-child {
  display: block;
  font-size: 11px;
  color: rgba(242, 240, 234, 0.5);
  line-height: 1.4;
}
.mlx-journey-connector {
  flex: 0 0 24px;
  align-self: center;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--mlx-indigo), var(--mlx-amber));
  opacity: 0.45;
  list-style: none;
}

/* ── Capability stories ── */
.mlx-stories { padding: 80px 0 100px; }
.mlx-stories-lead {
  margin-top: 12px;
  color: rgba(18, 20, 26, 0.62);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
}
.mlx-story-rows { display: flex; flex-direction: column; gap: 1px; margin-top: 40px; background: var(--mlx-line); border: 1px solid var(--mlx-line); border-radius: 16px; overflow: hidden; }
.mlx-story-row {
  background: var(--mlx-paper);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.mlx-story-row header { display: flex; align-items: center; gap: 14px; min-width: 180px; }
.mlx-story-row h3 { font-size: 17px; font-weight: 600; }
.mlx-story-row p { font-size: 14.5px; color: rgba(18, 20, 26, 0.62); line-height: 1.55; margin: 0; }
.mlx-story-row.indigo .mlx-icon-tag { background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim); }
.mlx-story-row.amber .mlx-icon-tag { background: rgba(232, 163, 61, 0.15); color: var(--mlx-amber-dim); }

/* ── Trust section ── */
.mlx-trust {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--mlx-paper-dim) 0%, var(--mlx-paper) 100%);
}
.mlx-trust-inner { max-width: 720px; margin: 0 auto; }
.mlx-trust h2 {
  font-size: clamp(26px, 3.8vw, 36px);
  font-weight: 700;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.mlx-trust p { color: rgba(18, 20, 26, 0.65); font-size: 16px; line-height: 1.6; }
.mlx-cta-lead {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(18, 20, 26, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

/* ── Responsive: premium layouts ── */
@media (max-width: 1024px) {
  .mlx-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .mlx-hero-visual { max-width: 520px; margin: 0 auto; }
  .mlx-showcase-grid,
  .mlx-showcase-grid.reverse { grid-template-columns: 1fr; gap: 40px; }
  .mlx-showcase-grid.reverse .mlx-showcase-copy,
  .mlx-showcase-grid.reverse .mlx-showcase-visual { order: unset; }
  .mlx-frame-hero { position: relative; width: 100%; left: auto !important; right: auto !important; top: auto !important; transform: none !important; margin-bottom: 12px; }
  .mlx-hero-stack { min-height: auto; display: flex; flex-direction: column; gap: 12px; padding-bottom: 0; }
  .mlx-hero-connect { display: none; }
  .mlx-preview-workspace,
  .mlx-preview-workspace.hrms { grid-template-columns: 1fr; }
  .mlx-preview-inbox-split { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .mlx-journey-track { flex-direction: column; align-items: stretch; gap: 0; overflow-x: visible; }
  .mlx-journey-connector {
    width: 2px;
    height: 20px;
    flex: none;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--mlx-indigo), var(--mlx-amber));
  }
  .mlx-journey-track > li:not(.mlx-journey-connector) {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    text-align: left;
    padding: 12px 0;
    min-width: 0;
  }
  .mlx-journey-icon { margin-bottom: 0; grid-row: span 2; }
  .mlx-story-row { grid-template-columns: 1fr; gap: 12px; }
  .mlx-preview-metrics { grid-template-columns: repeat(2, 1fr) !important; }
  .mlx-preview-toolbar-meta { margin-left: 0; width: 100%; padding-top: 4px !important; }
}
@media (max-width: 760px) {
  .mlx-hero-premium { padding: 40px 0 56px; }
  .mlx-showcase { padding: 72px 0; }
  .mlx-wrap { padding: 0 20px; }
}

/* ── M42 Premium homepage extensions ── */
.mlx-section { padding: 88px 0; }
.mlx-section-head { max-width: 640px; margin-bottom: 48px; }
.mlx-section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.mlx-section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 12px 0 14px;
  line-height: 1.12;
}
.mlx-section-head p { color: rgba(18, 20, 26, 0.65); font-size: 16px; line-height: 1.6; }
.mlx-hero-trust {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(18, 20, 26, 0.48);
  line-height: 1.5;
  max-width: 520px;
}

/* Hero XL canvas */
.mlx-hero-canvas {
  position: relative;
  min-height: 480px;
  padding: 8px 0 20px;
}
.mlx-frame-hero-xl {
  position: absolute;
  width: min(88%, 300px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mlx-panel-career { top: 0; left: 0; z-index: 4; transform: rotate(-1.2deg); }
.mlx-panel-match { top: 72px; left: 14%; z-index: 3; transform: rotate(0.6deg); }
.mlx-panel-recruit { top: 148px; right: 8%; z-index: 2; transform: rotate(-0.4deg); }
.mlx-panel-hire { top: 228px; right: 0; z-index: 1; transform: rotate(0.8deg); }
.mlx-hero-connect-xl {
  position: absolute;
  inset: 32px 4% 48px 4%;
  border: 1px dashed rgba(75, 78, 252, 0.18);
  border-radius: 24px;
  pointer-events: none;
  z-index: 0;
}
.mlx-hero-canvas:hover .mlx-panel-career { transform: rotate(-0.8deg) translateY(-3px); }
.mlx-hero-canvas:hover .mlx-panel-match { transform: rotate(0.3deg) translateY(-2px); }
.mlx-hero-canvas:hover .mlx-panel-recruit { transform: rotate(-0.2deg) translateY(-4px); }
.mlx-hero-canvas:hover .mlx-panel-hire { transform: rotate(0.5deg) translateY(-5px); }
.mlx-match-bars { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.mlx-match-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  padding: 8px 10px;
  background: rgba(75, 78, 252, 0.04);
  border-radius: 8px;
  border: 1px solid var(--mlx-line);
}
.mlx-match-bar .ok { color: #2d8a4e; font-family: "JetBrains Mono", monospace; font-size: 10px; }
.mlx-match-bar .warn { color: var(--mlx-amber-dim); font-family: "JetBrains Mono", monospace; font-size: 10px; }
.mlx-preview-note { font-size: 10px; color: rgba(18, 20, 26, 0.45); margin-top: 12px; }
.mlx-preview-note-sm { font-size: 11px; color: rgba(18, 20, 26, 0.55); margin: 6px 0 0; line-height: 1.4; }

/* Connected journey */
.mlx-connect-section { background: var(--mlx-paper-dim); }
.mlx-connect-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
.mlx-connect-col-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.45);
  margin-bottom: 16px;
}
.mlx-connect-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mlx-connect-steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 4px 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  margin-bottom: 8px;
}
.mlx-connect-steps .n {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(75, 78, 252, 0.1);
  color: var(--mlx-indigo-dim);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mlx-connect-col.company .mlx-connect-steps .n {
  background: rgba(232, 163, 61, 0.15);
  color: var(--mlx-amber-dim);
}
.mlx-connect-steps strong { font-size: 14px; grid-column: 2; }
.mlx-connect-steps li > span:last-child {
  grid-column: 2;
  font-size: 12px;
  color: rgba(18, 20, 26, 0.55);
}
.mlx-connect-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0 8px;
}
.mlx-connect-bridge-line {
  width: 2px;
  flex: 1;
  min-height: 80px;
  background: linear-gradient(180deg, var(--mlx-indigo), var(--mlx-amber));
  opacity: 0.5;
  margin-bottom: 12px;
}
.mlx-connect-bridge-core {
  text-align: center;
  background: var(--mlx-ink);
  color: var(--mlx-paper);
  padding: 16px 14px;
  border-radius: 14px;
  max-width: 140px;
}
.mlx-connect-bridge-core strong { display: block; font-size: 12px; margin-bottom: 6px; line-height: 1.3; }
.mlx-connect-bridge-core span { font-size: 9px; color: rgba(242, 240, 234, 0.55); line-height: 1.4; display: block; }

/* Automation flow */
.mlx-automation-section { background: linear-gradient(180deg, transparent 0%, rgba(232, 163, 61, 0.05) 100%); }
.mlx-auto-steps {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
  justify-content: center;
}
.mlx-auto-steps li {
  text-align: center;
  min-width: 88px;
  padding: 12px 10px;
  background: var(--mlx-paper);
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
}
.mlx-auto-steps li.mlx-auto-arrow {
  min-width: auto;
  padding: 0;
  background: none;
  border: none;
  color: rgba(18, 20, 26, 0.35);
  font-size: 18px;
}
.mlx-auto-icon { display: block; font-size: 18px; margin-bottom: 6px; }
.mlx-auto-steps strong { display: block; font-size: 12px; margin-bottom: 4px; }
.mlx-auto-steps li > span:last-child { font-size: 10px; color: rgba(18, 20, 26, 0.5); display: block; }

/* Matching panel */
.mlx-match-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--mlx-line);
  gap: 12px;
  flex-wrap: wrap;
}
.mlx-match-score-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.mlx-match-score-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(18, 20, 26, 0.48);
}
.mlx-match-sections { padding: 14px; display: flex; flex-direction: column; gap: 14px; }
.mlx-match-block .mlx-preview-eyebrow { display: block; margin-bottom: 6px; }
.mlx-evidence-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.mlx-match-human-note {
  padding: 12px 14px;
  font-size: 10px;
  color: rgba(18, 20, 26, 0.5);
  border-top: 1px solid var(--mlx-line);
  background: rgba(75, 78, 252, 0.03);
}
.mlx-cap-list.compact li { padding: 8px 0; border: none; }

/* Trust panel */
.mlx-trust-section { background: var(--mlx-paper-dim); }
.mlx-trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mlx-line);
  flex-wrap: wrap;
}
.mlx-trust-row:last-of-type { border-bottom: none; }
.mlx-trust-row strong { font-size: 13px; }
.mlx-trust-note { font-size: 12px; color: rgba(18, 20, 26, 0.58); line-height: 1.5; margin-top: 14px; }

/* Continuity */
.mlx-continuity-section { background: var(--mlx-ink); color: var(--mlx-paper); }
.mlx-continuity-section .mlx-section-head p { color: rgba(242, 240, 234, 0.65); }
.mlx-continuity-section .mlx-eyebrow { color: rgba(242, 240, 234, 0.5); justify-content: center; }
.mlx-continuity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.mlx-continuity-panel .mlx-frame-body { font-size: 13px; line-height: 1.45; }
.mlx-continuity-panel p { margin: 8px 0; }

/* Ecosystem */
.mlx-ecosystem-section { background: linear-gradient(180deg, var(--mlx-paper) 0%, var(--mlx-paper-dim) 100%); }
.mlx-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.mlx-eco-node {
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 14px;
  text-align: center;
}
.mlx-eco-node strong { display: block; font-size: 14px; margin-bottom: 6px; }
.mlx-eco-node span { font-size: 11px; color: rgba(18, 20, 26, 0.55); line-height: 1.4; display: block; }
.mlx-eco-node.indigo { border-color: rgba(75, 78, 252, 0.2); background: rgba(75, 78, 252, 0.03); }
.mlx-eco-node.amber { border-color: rgba(232, 163, 61, 0.25); background: rgba(232, 163, 61, 0.05); }
.mlx-eco-node.neutral { border-style: dashed; }
.mlx-eco-caption { text-align: center; margin-top: 16px; font-size: 10px; color: rgba(18, 20, 26, 0.4); }

/* Human control + proof */
.mlx-human-control { background: linear-gradient(180deg, var(--mlx-paper-dim) 0%, var(--mlx-paper) 100%); }
.mlx-proof { padding: 80px 0; }
.mlx-proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}
.mlx-proof-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--mlx-line-strong);
  background: #fff;
  color: rgba(18, 20, 26, 0.72);
}

/* Footer 5-col */
@media (min-width: 901px) {
  .ml-footer-top { grid-template-columns: 1.4fr repeat(4, 1fr); }
}

/* M42 responsive */
@media (max-width: 1024px) {
  .mlx-hero-canvas { min-height: auto; }
  .mlx-frame-hero-xl {
    position: relative;
    width: 100%;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    margin-bottom: 10px;
  }
  .mlx-hero-connect-xl { display: none; }
  .mlx-continuity-grid { grid-template-columns: 1fr; }
  .mlx-eco-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mlx-connect-grid { grid-template-columns: 1fr; }
  .mlx-connect-bridge {
    flex-direction: row;
    padding: 16px 0;
    min-width: 0;
  }
  .mlx-connect-bridge-line {
    width: 80px;
    height: 2px;
    min-height: 0;
    margin: 0 12px 0 0;
    background: linear-gradient(90deg, var(--mlx-indigo), var(--mlx-amber));
  }
  .mlx-connect-bridge-core { max-width: none; flex: 1; text-align: left; }
  .mlx-auto-steps { flex-direction: column; align-items: stretch; }
  .mlx-auto-steps li.mlx-auto-arrow { transform: rotate(90deg); align-self: center; }
  .mlx-eco-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .mlx-section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .mlx-hero-canvas:hover .mlx-panel-career,
  .mlx-hero-canvas:hover .mlx-panel-match,
  .mlx-hero-canvas:hover .mlx-panel-recruit,
  .mlx-hero-canvas:hover .mlx-panel-hire { transform: none; }
  .mlx-spine-step { opacity: 1 !important; transform: none !important; }
}

/* M61.1 — Generational homepage act system */
.mlx-act { position: relative; }
.mlx-act-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(18, 20, 26, 0.38);
  margin-bottom: 12px;
}
.mlx-act-label.centered { text-align: center; }
.mlx-btn-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 20, 26, 0.65);
  text-decoration: none;
  padding: 12px 8px;
}
.mlx-btn-text:hover { color: var(--mlx-ink); }
.mlx-act-aside { margin-top: 32px; max-width: 640px; }

/* Act 2 — Person journey spine */
.mlx-act-person { background: linear-gradient(180deg, var(--mlx-paper) 0%, rgba(75, 78, 252, 0.04) 100%); }
.mlx-spine-track { position: relative; padding: 8px 0 0; }
.mlx-spine-thread {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--mlx-indigo), var(--mlx-amber));
  opacity: 0.35;
}
.mlx-spine-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-left: 0;
}
.mlx-spine-step {
  position: relative;
  padding: 16px 16px 16px 52px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  opacity: 0.55;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}
.mlx-spine-step.active { opacity: 1; border-color: rgba(75, 78, 252, 0.25); }
.mlx-spine-step.amber.active { border-color: rgba(232, 163, 61, 0.35); }
.mlx-spine-n {
  position: absolute;
  left: 14px;
  top: 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(18, 20, 26, 0.4);
}
.mlx-spine-step strong { display: block; font-size: 14px; margin-bottom: 4px; }
.mlx-spine-step span:last-child { font-size: 12px; color: rgba(18, 20, 26, 0.55); line-height: 1.4; display: block; }
.mlx-spine-privacy {
  margin-top: 24px;
  padding: 20px;
  background: rgba(75, 78, 252, 0.05);
  border: 1px solid rgba(75, 78, 252, 0.15);
  border-radius: 14px;
}
.mlx-spine-privacy p { margin-top: 10px; font-size: 13px; line-height: 1.55; color: rgba(18, 20, 26, 0.68); }

/* Act 3 — Company OS landscape */
.mlx-act-company { background: var(--mlx-paper-dim); }
.mlx-os-canvas { padding: 8px 0; }
.mlx-os-hub {
  text-align: center;
  padding: 20px;
  background: var(--mlx-ink);
  color: var(--mlx-paper);
  border-radius: 14px;
  margin-bottom: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.mlx-os-hub strong { display: block; font-size: 15px; margin-bottom: 4px; }
.mlx-os-hub span { font-size: 11px; color: rgba(242, 240, 234, 0.55); }
.mlx-os-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mlx-os-node {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
}
.mlx-os-node.indigo { border-color: rgba(75, 78, 252, 0.18); background: rgba(75, 78, 252, 0.03); }
.mlx-os-node.amber { border-color: rgba(232, 163, 61, 0.22); background: rgba(232, 163, 61, 0.04); }
.mlx-os-node.neutral { border-style: dashed; }
.mlx-os-node strong { display: block; font-size: 13px; margin-bottom: 4px; }
.mlx-os-node > span { font-size: 11px; color: rgba(18, 20, 26, 0.55); display: block; }
.mlx-os-link {
  display: block;
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: rgba(18, 20, 26, 0.42);
  margin-top: 8px;
  line-height: 1.35;
}
.mlx-os-caption { text-align: center; margin-top: 16px; font-size: 10px; color: rgba(18, 20, 26, 0.4); }

/* Act 4 — Convergence */
.mlx-act-converge { background: var(--mlx-ink); color: var(--mlx-paper); }
.mlx-act-converge .mlx-section-head p,
.mlx-act-converge .mlx-eyebrow { color: rgba(242, 240, 234, 0.6); }
.mlx-act-converge .mlx-act-label { color: rgba(242, 240, 234, 0.35); }
.mlx-converge-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px) 1fr;
  gap: 20px;
  align-items: stretch;
}
.mlx-converge-side {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(242, 240, 234, 0.12);
  border-radius: 16px;
}
.mlx-converge-side.person { border-color: rgba(75, 78, 252, 0.35); }
.mlx-converge-side.company { border-color: rgba(232, 163, 61, 0.35); }
.mlx-converge-side h3 { font-size: 16px; margin-bottom: 14px; }
.mlx-converge-side ul { list-style: none; font-size: 13px; line-height: 1.7; color: rgba(242, 240, 234, 0.75); }
.mlx-converge-center { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; }
.mlx-converge-core {
  background: linear-gradient(135deg, rgba(75, 78, 252, 0.25), rgba(232, 163, 61, 0.2));
  border: 1px solid rgba(242, 240, 234, 0.2);
  border-radius: 16px;
  padding: 20px 16px;
  width: 100%;
}
.mlx-converge-core strong { display: block; font-size: 14px; margin-bottom: 12px; }
.mlx-converge-core span {
  display: block;
  font-size: 11px;
  padding: 4px 0;
  color: rgba(242, 240, 234, 0.8);
  border-bottom: 1px solid rgba(242, 240, 234, 0.08);
}
.mlx-converge-center > p { font-size: 11px; color: rgba(242, 240, 234, 0.5); line-height: 1.45; max-width: 260px; }

/* Act 6 — Decision chain */
.mlx-act-decisions { background: linear-gradient(180deg, var(--mlx-paper-dim) 0%, var(--mlx-paper) 100%); }
.mlx-decision-flow { padding: 8px 0; }
.mlx-decision-lane {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 14px;
}
.mlx-decision-stage {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px;
  background: var(--mlx-paper);
  border: 1px solid var(--mlx-line);
  border-radius: 8px;
}
.mlx-decision-stage.hired { background: rgba(232, 163, 61, 0.12); border-color: rgba(232, 163, 61, 0.3); }
.mlx-decision-sep { font-size: 18px; color: rgba(18, 20, 26, 0.25); font-weight: 300; }
.mlx-decision-support {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mlx-decision-box {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  text-align: center;
}
.mlx-decision-box.indigo { border-color: rgba(75, 78, 252, 0.2); }
.mlx-decision-box.amber { border-color: rgba(232, 163, 61, 0.25); background: rgba(232, 163, 61, 0.05); }
.mlx-decision-box strong { display: block; font-size: 12px; margin-bottom: 6px; }
.mlx-decision-box span { font-size: 10px; color: rgba(18, 20, 26, 0.55); line-height: 1.4; display: block; }
.mlx-decision-arrow { color: rgba(18, 20, 26, 0.3); font-size: 18px; }
.mlx-decision-note { text-align: center; margin-top: 16px; font-size: 10px; color: rgba(18, 20, 26, 0.45); }

/* Act 8 — Privacy callout on dark continuity */
.mlx-privacy-callout {
  margin-top: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(242, 240, 234, 0.15);
  border-radius: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mlx-privacy-callout p { margin-top: 12px; font-size: 14px; line-height: 1.55; color: rgba(242, 240, 234, 0.8); }

/* Act 9 — Executive room */
.mlx-showcase-exec { background: var(--mlx-paper-dim); }
.mlx-exec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px;
}
.mlx-exec-tile {
  padding: 12px;
  background: var(--mlx-paper);
  border: 1px solid var(--mlx-line);
  border-radius: 10px;
}
.mlx-exec-tile.warn { border-color: rgba(232, 163, 61, 0.3); background: rgba(232, 163, 61, 0.06); }
.mlx-exec-tile .l { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(18, 20, 26, 0.48); margin-bottom: 6px; }
.mlx-exec-tile .n { font-family: "Space Grotesk", sans-serif; font-size: 22px; font-weight: 700; }
.mlx-exec-queue {
  padding: 14px;
  border-top: 1px solid var(--mlx-line);
  font-size: 12px;
  color: rgba(18, 20, 26, 0.58);
  line-height: 1.5;
}

/* Act 10 — Global ops */
.mlx-act-global { background: linear-gradient(180deg, var(--mlx-paper) 0%, rgba(232, 163, 61, 0.04) 100%); }
.mlx-global-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mlx-line);
  flex-wrap: wrap;
}
.mlx-global-row strong { font-size: 13px; }
.mlx-global-note { margin-top: 14px; font-size: 12px; color: rgba(18, 20, 26, 0.58); line-height: 1.5; }

/* Act 11 — Product universe */
.mlx-universe-map { max-width: 880px; margin: 0 auto; }
.mlx-uni-node {
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  text-align: center;
}
.mlx-uni-node.core { max-width: 200px; margin: 0 auto 12px; }
.mlx-uni-node.indigo { border-color: rgba(75, 78, 252, 0.2); background: rgba(75, 78, 252, 0.04); }
.mlx-uni-node.amber { border-color: rgba(232, 163, 61, 0.22); background: rgba(232, 163, 61, 0.05); }
.mlx-uni-node.neutral { border-style: dashed; }
.mlx-uni-node strong { display: block; font-size: 13px; }
.mlx-uni-node span { font-size: 10px; color: rgba(18, 20, 26, 0.5); display: block; margin-top: 4px; }
.mlx-uni-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 8px 0; }
.mlx-uni-connector { height: 20px; width: 2px; background: var(--mlx-line-strong); margin: 0 auto; opacity: 0.4; }
.mlx-uni-connector.vertical { height: 16px; }

/* Act 12 — Final paths */
.mlx-final-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 24px;
  text-align: left;
}
.mlx-final-path {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
}
.mlx-final-path p { margin: 14px 0 20px; font-size: 15px; line-height: 1.5; color: rgba(18, 20, 26, 0.68); }
.mlx-cta-truth { margin-top: 20px; font-size: 11px; color: rgba(18, 20, 26, 0.42); }

/* M61.1 responsive */
@media (max-width: 1024px) {
  .mlx-spine-steps { grid-template-columns: repeat(2, 1fr); }
  .mlx-os-nodes { grid-template-columns: repeat(2, 1fr); }
  .mlx-exec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mlx-converge-grid { grid-template-columns: 1fr; }
  .mlx-converge-center { order: -1; }
  .mlx-decision-support { flex-direction: column; }
  .mlx-decision-arrow { transform: rotate(90deg); }
  .mlx-final-paths { grid-template-columns: 1fr; }
  .mlx-uni-row { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .mlx-spine-steps { grid-template-columns: 1fr; }
  .mlx-spine-thread { display: none; }
  .mlx-spine-step { padding-left: 16px; }
  .mlx-spine-n { position: static; display: inline-block; margin-bottom: 6px; }
  .mlx-os-nodes { grid-template-columns: 1fr; }
  .mlx-decision-lane { flex-direction: column; }
  .mlx-decision-sep { transform: rotate(90deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   M61.2 — Top 1% product-led homepage
   ═══════════════════════════════════════════════════════════════════════════ */

.mp-site { background: #f7f6f3; }
.mp-header .ml-site-header-inner { height: 64px; }

.mp-site { background: #fff; }
.mp-header .ml-site-header-inner { height: 64px; }

.mp-nav-links {
  display: flex;
  align-items: center;
  gap: 4px !important;
}
.mp-nav-drop { position: relative; }
.mp-nav-drop-trigger {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #3D4450;
  padding: 8px 12px;
  border-radius: 6px;
  border: none;
  background: transparent;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
  white-space: nowrap;
}
.mp-nav-drop-trigger::before,
.mp-nav-drop-trigger::marker { display: none !important; content: none !important; }
.mp-nav-chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.mp-nav-drop.is-open .mp-nav-chevron { transform: rotate(180deg); }
.mp-nav-drop-trigger:hover,
.mp-nav-drop.is-open .mp-nav-drop-trigger {
  color: var(--mlx-ink);
}
@media (min-width: 861px) {
  .mp-nav-drop:hover .mp-nav-chevron { opacity: 0.85; }
  .mp-nav-drop:hover .mp-nav-drop-panel,
  .mp-nav-drop.is-open .mp-nav-drop-panel {
    display: flex;
  }
  .mp-nav-drop:hover .mp-nav-drop-trigger,
  .mp-nav-drop.is-open .mp-nav-drop-trigger {
    color: var(--mlx-ink);
  }
}
.mp-nav-flat {
  font-size: 14px;
  font-weight: 500;
  color: #3D4450;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.mp-nav-flat:hover { color: var(--mlx-ink); }
.mp-nav-drop-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(24, 25, 27, 0.08);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 48px rgba(24, 25, 27, 0.12), 0 2px 8px rgba(24, 25, 27, 0.04);
  z-index: 100;
  display: none;
  flex-direction: column;
  gap: 1px;
}
.mp-nav-drop-panel[hidden] { display: none !important; }
.mp-nav-drop.is-open .mp-nav-drop-panel:not([hidden]),
.mp-nav-drop:hover .mp-nav-drop-panel:not([hidden]) {
  display: flex;
}
@media (min-width: 861px) {
  .mp-nav-drop:hover .mp-nav-drop-panel[hidden] {
    display: flex !important;
  }
}
.mp-nav-drop-panel a {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #3D4450;
  text-decoration: none;
  font-weight: 400;
}
.mp-nav-drop-panel a:hover { background: #F4F7FA; color: var(--mlx-ink); }

.mp-hero {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #F6F8FB 0%, #FFFFFF 60%);
  text-align: center;
}
.mp-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.mp-hero-copy { max-width: 720px; text-align: center; }
.mp-eyebrow {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mlx-indigo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}
.mp-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  max-width: none;
  margin: 0 auto;
}
.mp-hero h1 span { display: block; color: var(--mlx-indigo); margin-top: 8px; }
.mp-hero-lead {
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--mlx-text-muted);
  max-width: 640px;
}
.mp-hero-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}
.mp-hero-product { width: 100%; max-width: 960px; }
.mp-signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(18, 20, 26, 0.55);
  text-decoration: none;
}
.mp-signin:hover { color: var(--mlx-ink); }
.mp-hero-proof {
  margin-top: 18px;
  font-size: 10px;
  color: rgba(18, 20, 26, 0.42);
  line-height: 1.5;
  max-width: 44ch;
}

.mp-preview-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(18, 20, 26, 0.4);
  margin-bottom: 8px;
}
.mp-app {
  background: #fff;
  border: 1px solid rgba(18, 20, 26, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(18, 20, 26, 0.08), 0 2px 8px rgba(18, 20, 26, 0.04);
  overflow: hidden;
}
.mp-app-chrome { display: flex; min-height: 280px; }
.mp-sidebar {
  width: 148px;
  flex-shrink: 0;
  background: #fafaf8;
  border-right: 1px solid var(--mlx-line);
  padding: 14px 10px;
}
.mp-sidebar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 14px;
  padding: 0 6px;
}
.mp-sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.mp-nav-item {
  font-size: 11px;
  padding: 7px 8px;
  border-radius: 6px;
  color: rgba(18, 20, 26, 0.55);
}
.mp-nav-item.active {
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
  font-weight: 600;
}
.mp-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--mlx-line);
  background: #fff;
}
.mp-page-title { font-size: 14px; font-weight: 600; margin: 0; }
.mp-topbar-meta { font-size: 10px; color: rgba(18, 20, 26, 0.4); }
.mp-main-body { padding: 14px 16px 16px; flex: 1; }

.mp-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.mp-metrics-row.four { grid-template-columns: repeat(4, 1fr); }
.mp-metric {
  padding: 10px;
  background: #f7f6f3;
  border: 1px solid var(--mlx-line);
  border-radius: 8px;
}
.mp-metric.warn { border-color: rgba(232, 163, 61, 0.35); background: rgba(232, 163, 61, 0.06); }
.mp-metric.indigo { border-color: rgba(75, 78, 252, 0.2); }
.mp-metric-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.mp-metric-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(18, 20, 26, 0.48);
  margin-top: 4px;
  display: block;
}
.mp-panel-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(18, 20, 26, 0.45);
  display: block;
  margin-bottom: 8px;
}
.mp-split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mp-panel {
  padding: 10px;
  border: 1px solid var(--mlx-line);
  border-radius: 8px;
  background: #fafaf8;
}
.mp-pipeline-bar {
  height: 6px;
  background: var(--mlx-line);
  border-radius: 3px;
  margin-bottom: 10px;
  overflow: hidden;
}
.mp-pipeline-bar .fill { display: block; height: 100%; background: var(--mlx-indigo); border-radius: 3px; }
.mp-queue { list-style: none; margin: 0; padding: 0; }
.mp-queue li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mlx-line);
  font-size: 12px;
}
.mp-queue li:last-child { border-bottom: none; }
.mp-queue.compact li { padding: 5px 0; font-size: 11px; }
.mp-queue.mini li { flex-direction: column; align-items: flex-start; gap: 2px; }
.mp-sub { font-size: 10px; color: rgba(18, 20, 26, 0.5); display: block; }
.mp-badge {
  font-size: 9px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 100px;
  background: rgba(18, 20, 26, 0.06);
  color: rgba(18, 20, 26, 0.65);
  white-space: nowrap;
}
.mp-badge.indigo { background: rgba(75, 78, 252, 0.1); color: var(--mlx-indigo-dim); }
.mp-badge.warn { background: rgba(232, 163, 61, 0.15); color: var(--mlx-amber-dim); }
.mp-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.mp-table th, .mp-table td { padding: 8px 6px; border-bottom: 1px solid var(--mlx-line); text-align: left; }
.mp-table th { font-size: 9px; text-transform: uppercase; letter-spacing: 0.04em; color: rgba(18, 20, 26, 0.45); }
.mp-footnote, .mp-note { font-size: 11px; color: rgba(18, 20, 26, 0.5); margin-top: 10px; line-height: 1.45; }
.mp-country-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mp-country-chips span {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid var(--mlx-line);
  background: #fff;
}

.mp-hero-stage { position: relative; }
.mp-hero-stage-inner { position: relative; }
.mp-hero-primary { position: relative; z-index: 2; }
.mp-hero-secondary {
  position: absolute;
  z-index: 3;
  width: 38%;
  max-width: 200px;
}
.mp-hero-sec-recruit { right: -4%; top: 8%; }
.mp-hero-sec-career { right: 2%; bottom: -6%; }
.mp-mini-frame {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(18, 20, 26, 0.1);
  font-size: 11px;
}
.mp-mini-frame.indigo { border-color: rgba(75, 78, 252, 0.25); }
.mp-mini-title { font-weight: 600; font-size: 11px; display: block; margin-bottom: 6px; }

.mp-proof-strip {
  padding: 72px 0;
  background: var(--mlx-paper);
}
.zh-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.zh-section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.zh-section-head p {
  font-size: 17px;
  color: var(--mlx-text-muted);
  line-height: 1.6;
}
.zh-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.zh-featured-card {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: var(--zh-radius-lg);
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  display: block;
}
.zh-featured-card:hover {
  box-shadow: var(--zh-shadow);
  border-color: var(--mlx-indigo);
  transform: translateY(-2px);
}
.zh-featured-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.zh-featured-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.zh-featured-card p {
  font-size: 13px;
  color: var(--mlx-text-muted);
  line-height: 1.5;
  margin: 0;
}
.zh-featured-card .zh-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mlx-indigo);
}
.mp-proof-list {
  list-style: none;
  display: none;
}

.mp-truth-stats {
  padding: 56px 0;
  background: var(--mlx-indigo);
  color: #fff;
}
.mp-truth-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  align-items: end;
}
.mp-truth-item { text-align: center; }
.mp-truth-val {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  display: block;
  color: #fff;
}
.mp-truth-lbl {
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  display: block;
}
.mp-truth-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 0;
}

.mp-section { padding: 80px 0; }
.mp-section-light { background: #fff; }
.mp-section-tint { background: var(--mlx-paper-dim); }
.mp-section-dark {
  background: linear-gradient(135deg, #131A25 0%, #1B2A3D 100%);
  color: #E8ECF1;
}
.mp-section-dark .mp-section-head p,
.mp-section-dark .mp-thesis { color: rgba(232, 236, 241, 0.7); }
.mp-section h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  max-width: none;
  margin: 0 0 16px;
}
.mp-section-head { margin-bottom: 28px; max-width: 640px; }
.mp-section-head.light h2 { color: var(--mlx-paper); }
.mp-section-head p { font-size: 16px; line-height: 1.55; color: rgba(18, 20, 26, 0.65); }
.mp-thesis { margin-top: 14px; font-size: 12px; }
.mp-split {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(340px, 1.15fr);
  gap: 40px;
  align-items: center;
}
.mp-split.reverse { direction: rtl; }
.mp-split.reverse > * { direction: ltr; }
.mp-workflow-list { list-style: none; margin: 20px 0 24px; padding: 0; }
.mp-workflow-list li { padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--mlx-line); color: rgba(18, 20, 26, 0.72); }
.mp-workflow-list li strong { color: var(--mlx-ink); }

.mp-journey-track {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}
.mp-journey-track li {
  flex: 1 1 auto;
  min-width: 100px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 240, 234, 0.15);
  font-size: 11px;
  font-weight: 500;
  position: relative;
}
.mp-journey-track li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(242, 240, 234, 0.35);
  z-index: 1;
}
.mp-privacy-note { margin-top: 16px; font-size: 12px; color: rgba(242, 240, 234, 0.55); }

.mp-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 600;
}
.mp-flow i { font-style: normal; color: rgba(18, 20, 26, 0.25); }
.mp-flow span {
  padding: 6px 8px;
  background: #f7f6f3;
  border: 1px solid var(--mlx-line);
  border-radius: 6px;
}
.mp-stage-lane {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
}
.mp-neq { color: rgba(18, 20, 26, 0.25); font-weight: 400; }
.mp-stage-lane .hired { color: var(--mlx-amber-dim); }
.mp-match-list { list-style: none; margin: 0; padding: 0; font-size: 11px; }
.mp-match-list li { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid var(--mlx-line); }
.mp-match-list .ok { color: #2d6a4f; }
.mp-match-list .partial { color: var(--mlx-amber-dim); }
.mp-match-list .gap { color: rgba(18, 20, 26, 0.45); }
.mp-privacy-chip {
  margin-top: 10px;
  font-size: 10px;
  padding: 8px;
  background: rgba(75, 78, 252, 0.06);
  border-radius: 6px;
  color: var(--mlx-indigo-dim);
}
.mp-int-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
}
.mp-int-grid li {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 10px;
  font-size: 12px;
}
.mp-int-grid strong { display: block; margin-bottom: 4px; font-size: 13px; }
.mp-int-grid span { color: rgba(18, 20, 26, 0.55); font-size: 11px; }
.mp-role-blurb { font-size: 12px; color: rgba(18, 20, 26, 0.6); margin: 0; }

.mp-role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.mp-role-tab {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border: 1px solid var(--mlx-line);
  border-radius: 100px;
  background: #fff;
  cursor: pointer;
  color: rgba(18, 20, 26, 0.65);
}
.mp-role-tab.active, .mp-role-tab:hover {
  border-color: var(--mlx-indigo);
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
}
.mp-role-panel { display: none; }
.mp-role-panel.active { display: block; }

.mp-cta-final {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--mlx-paper-dim) 0%, #fff 100%);
  color: var(--mlx-ink);
  text-align: center;
}
.zh-final-head {
  max-width: 560px;
  margin: 0 auto 40px;
}
.zh-final-head h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.zh-final-head p {
  font-size: 18px;
  color: var(--mlx-text-muted);
}
.mp-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.mp-cta-block {
  padding: 36px 32px;
  border: 1px solid var(--mlx-line);
  border-radius: var(--zh-radius-lg);
  background: #fff;
  box-shadow: var(--zh-shadow-sm);
  text-align: left;
}
.mp-cta-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mlx-indigo);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.mp-cta-block p { font-size: 16px; line-height: 1.5; margin-bottom: 20px; color: var(--mlx-text-muted); }
.mp-cta-signin { text-align: center; margin-top: 28px; font-size: 15px; color: var(--mlx-text-muted); }
.mp-cta-signin a { color: var(--mlx-indigo); font-weight: 600; }
.mp-cta-truth { text-align: center; margin-top: 16px; font-size: 11px; color: rgba(24, 25, 27, 0.4); }

.mp-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.mp-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .mp-reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1100px) {
  .mp-hero-grid { grid-template-columns: 1fr; }
  .mp-hero h1 { max-width: 22ch; }
  .mp-hero-product { order: -1; }
  .mp-hero-secondary { position: relative; right: auto; bottom: auto; width: 48%; max-width: none; margin-top: -40px; }
  .mp-hero-sec-recruit { float: right; margin-right: 4%; }
  .mp-hero-sec-career { float: left; margin-left: 4%; clear: both; }
  .mp-split, .mp-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .mp-metrics-row.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .mp-nav-drop:hover .mp-nav-drop-panel[hidden] { display: none !important; }
  .mp-nav-drop-panel {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 8px;
    margin: 0;
    min-width: 0;
    background: transparent;
  }
  .mp-nav-drop.is-open .mp-nav-drop-panel:not([hidden]) { display: flex; }
  .mp-sidebar { width: 120px; }
  .mp-split-panels { grid-template-columns: 1fr; }
  .mp-journey-track { flex-direction: column; }
  .mp-journey-track li::after { display: none; }
  .mp-cta-grid { grid-template-columns: 1fr; }
  .mp-int-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .mp-hero { padding: 12px 0 24px; }
  .mp-hero h1 { font-size: clamp(28px, 8vw, 36px); max-width: none; }
  .mp-app-chrome { flex-direction: column; min-height: auto; }
  .mp-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--mlx-line); }
  .mp-sidebar-nav { flex-direction: row; flex-wrap: wrap; }
  .mp-hero-secondary { width: 100%; float: none; margin: 8px 0 0; }
  .mp-metrics-row { grid-template-columns: repeat(2, 1fr); }
  .mp-proof-list { gap: 6px 12px; }
  .mp-proof-list li { font-size: 9px; }
  .mp-truth-grid { grid-template-columns: repeat(2, 1fr); }
  .zh-featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .zh-featured-grid { grid-template-columns: 1fr; }
}

/* ── Zoho-inspired: suite banner, values, FAQ, auth pages ── */
.zh-suite-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, #1B6BBA 0%, #155A9E 100%);
  color: #fff;
}
.zh-suite-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.zh-suite-copy h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  margin-bottom: 14px;
}
.zh-suite-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.zh-suite-visual {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--zh-radius-lg);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.zh-suite-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.zh-suite-mod {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--zh-radius);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
}
.zh-btn-white {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: #fff;
  color: var(--mlx-indigo);
  border-radius: var(--zh-radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.zh-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.zh-values {
  padding: 80px 0;
  background: #fff;
}
.zh-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.zh-value-card {
  text-align: center;
  padding: 32px 24px;
}
.zh-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.zh-value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.zh-value-card p {
  font-size: 14px;
  color: var(--mlx-text-muted);
  line-height: 1.6;
}

.zh-faq {
  padding: 80px 0;
  background: var(--mlx-paper-dim);
}
.zh-faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}
.zh-faq-item {
  border-bottom: 1px solid var(--mlx-line);
  padding: 20px 0;
}
.zh-faq-item summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.zh-faq-item summary::-webkit-details-marker { display: none; }
.zh-faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--mlx-indigo);
  font-weight: 400;
}
.zh-faq-item[open] summary::after { content: "−"; }
.zh-faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--mlx-text-muted);
  line-height: 1.6;
  padding-right: 24px;
}

/* Auth pages on marketing shell */
.zh-auth-page {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mlx-paper-dim);
}
.zh-auth-showcase {
  background: linear-gradient(160deg, #1B6BBA 0%, #131A25 100%);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zh-auth-showcase h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
  line-height: 1.15;
}
.zh-auth-showcase p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}
.zh-auth-benefits {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}
.zh-auth-benefits li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}
.zh-auth-benefits li:last-child { border-bottom: none; }
.zh-auth-benefits strong { display: block; font-size: 14px; margin-bottom: 2px; }
.zh-auth-benefits span { color: rgba(255, 255, 255, 0.65); font-size: 13px; }
.zh-auth-benefit-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.zh-auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: #fff;
}
.zh-auth-card {
  width: 100%;
  max-width: 420px;
}
.zh-auth-card h1 {
  font-size: 28px;
  margin-bottom: 8px;
}
.zh-auth-sub {
  font-size: 15px;
  color: var(--mlx-text-muted);
  margin-bottom: 28px;
}
.zh-form-group { margin-bottom: 18px; }
.zh-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--mlx-ink);
}
.zh-form-optional { font-weight: 500; color: #9CA3AF; }
.zh-form-hint { font-size: 12px; color: #6B7280; margin-top: 6px; line-height: 1.45; }
.zh-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--mlx-line-strong);
  border-radius: var(--zh-radius);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.zh-form-input:focus {
  outline: none;
  border-color: var(--mlx-indigo);
  box-shadow: 0 0 0 3px var(--mlx-indigo-light);
}
.zh-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.zh-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: var(--mlx-amber);
  color: #fff;
  border: none;
  border-radius: var(--zh-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.zh-btn-primary:hover { background: var(--mlx-amber-dim); }
.zh-form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
  padding: 12px 14px;
  border-radius: var(--zh-radius);
  font-size: 14px;
  margin-bottom: 18px;
}
.zh-auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--mlx-text-muted);
}
.zh-auth-footer a { color: var(--mlx-indigo); font-weight: 600; text-decoration: none; }
.zh-auth-trust {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--mlx-text-muted);
}
.zh-setup-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.zh-setup-steps li {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--mlx-text-muted);
  padding: 8px;
  border-radius: var(--zh-radius);
  background: var(--mlx-paper-dim);
}
.zh-setup-steps li.active {
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
  font-weight: 600;
}
.zh-setup-steps li span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

/* Pricing on marketing shell */
.zh-pricing-page { padding: 48px 0 80px; background: var(--mlx-paper-dim); }
.zh-pricing-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.zh-pricing-header h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
.zh-pricing-header p { font-size: 17px; color: var(--mlx-text-muted); line-height: 1.6; }
.zh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.zh-price-card {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: var(--zh-radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
}
.zh-price-card.highlight {
  border-color: var(--mlx-indigo);
  box-shadow: var(--zh-shadow);
}
.zh-price-card.highlight::before {
  content: "Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mlx-indigo);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.zh-price-name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.zh-price-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--mlx-ink);
  margin-bottom: 4px;
}
.zh-price-amount small { font-size: 16px; font-weight: 400; color: var(--mlx-text-muted); }
.zh-price-desc { font-size: 14px; color: var(--mlx-text-muted); margin-bottom: 24px; }
.zh-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.zh-price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--mlx-text-muted);
  padding-left: 24px;
  position: relative;
}
.zh-price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22A06B;
  font-weight: 700;
}
.zh-pricing-region {
  text-align: center;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--mlx-text-muted);
}
.zh-pricing-region a { color: var(--mlx-indigo); font-weight: 600; text-decoration: none; margin: 0 4px; }

/* Help page */
.zh-help-page { padding: 48px 0 80px; }
.zh-help-header { text-align: center; margin-bottom: 48px; }
.zh-help-header h1 { font-size: 36px; margin-bottom: 8px; }
.zh-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.zh-help-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: var(--zh-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.zh-help-card:hover {
  box-shadow: var(--zh-shadow-sm);
  border-color: var(--mlx-indigo);
}
.zh-help-card h3 { font-size: 16px; margin-bottom: 6px; }
.zh-help-card p { font-size: 13px; color: var(--mlx-text-muted); margin: 0 0 10px; line-height: 1.5; }
.zh-help-card-link { font-size: 13px; font-weight: 600; color: var(--mlx-indigo); }

/* Help article */
.zh-help-article-page { padding: 32px 0 80px; }
.zh-help-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mlx-text-muted);
  margin-bottom: 24px;
}
.zh-help-breadcrumb a { color: var(--mlx-indigo); text-decoration: none; font-weight: 500; }
.zh-help-breadcrumb a:hover { text-decoration: underline; }
.zh-help-article-head { margin-bottom: 32px; max-width: 720px; }
.zh-help-article-head h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.zh-help-article-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mlx-text-muted);
  margin: 0;
}
.zh-help-article {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
  color: #3d4a5f;
}
.zh-help-article h1 { display: none; }
.zh-help-article h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mlx-ink);
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
  padding-top: 8px;
  border-top: 1px solid var(--mlx-line);
}
.zh-help-article h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.zh-help-article h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--mlx-ink);
  margin: 24px 0 8px;
}
.zh-help-article p { margin: 0 0 14px; }
.zh-help-article ul,
.zh-help-article ol {
  margin: 0 0 16px;
  padding-left: 1.35rem;
}
.zh-help-article li { margin-bottom: 6px; }
.zh-help-article strong { color: var(--mlx-ink); font-weight: 600; }
.zh-help-article code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88em;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 5px;
  color: #334155;
}
.zh-help-code {
  background: #0f172a;
  color: #e2e8f0;
  padding: 16px 18px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 0 0 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}
.zh-help-code code { background: none; padding: 0; color: inherit; }
.zh-help-table-wrap {
  overflow-x: auto;
  margin: 0 0 20px;
  border: 1px solid var(--mlx-line);
  border-radius: 10px;
}
.zh-help-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.zh-help-table th,
.zh-help-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--mlx-line);
}
.zh-help-table th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--mlx-ink);
}
.zh-help-table tr:last-child td { border-bottom: none; }

@media (max-width: 900px) {
  .zh-suite-inner { grid-template-columns: 1fr; }
  .zh-values-grid { grid-template-columns: 1fr; }
  .zh-auth-page { grid-template-columns: 1fr; }
  .zh-auth-showcase { padding: 40px 24px; min-height: auto; }
  .zh-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .saas-product-grid { grid-template-columns: 1fr !important; }
  .saas-product-grid.reverse .saas-product-visual { order: -1; }
}

/* ══════════════════════════════════════════════════════════
   Premium SaaS marketing — no dashboard chrome
   ══════════════════════════════════════════════════════════ */

.saas-hero {
  position: relative;
  overflow: hidden;
  background: #eef4fb;
  text-align: center;
}

/* Photo hero */
.mp-hero-photo {
  min-height: clamp(520px, 48vw, 680px);
  padding: 0;
  display: flex;
  align-items: stretch;
}
.mp-hero-photo .saas-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.saas-hero-photo-layer,
.saas-hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.saas-hero-photo-img {
  object-fit: cover;
  object-position: center 42%;
}
.saas-hero-scrim {
  position: absolute;
  inset: 0;
}
.saas-hero-scrim--desktop {
  background:
    radial-gradient(ellipse 62% 58% at 50% 32%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.45) 62%, transparent 84%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, transparent 45%, rgba(255, 255, 255, 0.2) 100%);
}
.saas-hero-scrim--mobile { display: none; }

.mp-hero-photo .saas-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(56px, 9vh, 96px) 0 clamp(48px, 6vh, 72px);
  gap: 0;
}
.mp-hero-photo .mp-hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.mp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 7px 14px 7px 12px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #334155;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 18, 34, 0.1);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(12, 18, 34, 0.06), 0 10px 28px rgba(12, 18, 34, 0.08);
  backdrop-filter: blur(10px);
}
.mp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb 0%, #1b6bba 100%);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.mp-hero-photo h1,
.mp-hero-premium h1 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(40px, 5.8vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #0a1628;
}
.mp-hero-photo h1 span,
.mp-hero-premium h1 span {
  display: block;
  margin-top: 10px;
  color: #1d4ed8;
}
.mp-hero-photo .mp-hero-tagline {
  margin: 20px auto 0;
  max-width: 420px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}
.mp-hero-tagline {
  margin: 20px auto 0;
  max-width: 420px;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.55;
  font-weight: 500;
  color: #334155;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}
.mp-hero-photo .mp-hero-cta,
.mp-hero-premium .mp-hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mp-hero-photo .mlx-btn-lg,
.mp-hero-premium .mlx-btn-lg {
  min-width: 196px;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(12, 18, 34, 0.08);
}
.mp-hero-photo .mlx-btn-dark,
.mp-hero-premium .mlx-btn-dark {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #1d4ed8;
  box-shadow: 0 1px 2px rgba(12, 18, 34, 0.1), 0 8px 22px rgba(37, 99, 235, 0.28);
}
.mp-hero-photo .mlx-btn-dark:hover,
.mp-hero-premium .mlx-btn-dark:hover {
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 2px 4px rgba(12, 18, 34, 0.12), 0 12px 28px rgba(37, 99, 235, 0.34);
}
.mp-hero-photo .mlx-btn-ghost,
.mp-hero-premium .mlx-btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 18, 34, 0.14);
  color: #0f172a;
  backdrop-filter: blur(8px);
}
.mp-hero-photo .mlx-btn-ghost:hover,
.mp-hero-premium .mlx-btn-ghost:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.4);
  color: #1d4ed8;
}

@media (max-width: 768px) {
  .mp-hero-photo {
    min-height: min(88vh, 820px);
  }
  .saas-hero-photo-img {
    object-position: center top;
  }
  .saas-hero-scrim--desktop { display: none; }
  .saas-hero-scrim--mobile {
    display: block;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 24%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.1) 68%, transparent 88%);
  }
  .mp-hero-photo .saas-hero-inner {
    justify-content: flex-start;
    padding: 0 0 48px;
  }
  .mp-hero-photo .mp-hero-badge {
    margin-bottom: 16px;
  }
  .mp-hero-photo .mp-hero-copy {
    max-width: none;
    padding: 0 4px;
  }
  .mp-hero-photo h1 {
    font-size: clamp(32px, 8.5vw, 42px);
  }
  .mp-hero-photo .mp-hero-tagline {
    font-size: 16px;
    max-width: 28ch;
  }
  .mp-hero-photo .mp-hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .mp-hero-photo .mlx-btn-lg {
    width: 100%;
    min-width: 0;
  }
}

/* Premium hero (legacy) */
.mp-hero-premium .saas-hero-inner { gap: 0; padding-bottom: 0; }
.mp-hero-premium .mp-hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.mp-hero-foot {
  margin: 22px 0 0;
  font-size: 14px;
}
.mp-hero-foot a {
  color: #64748b;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.mp-hero-foot a:hover { color: #4b4efc; }

.saas-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.saas-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(75, 78, 252, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(27, 107, 186, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse 40% 35% at 8% 18%, rgba(240, 88, 78, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, #f4f7fc 0%, #fafbfd 42%, #ffffff 100%);
}
.saas-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.saas-hero-orb--a {
  width: 420px;
  height: 420px;
  left: 50%;
  top: -120px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(75, 78, 252, 0.22) 0%, transparent 68%);
}
.saas-hero-orb--b {
  width: 280px;
  height: 280px;
  right: 12%;
  top: 20%;
  background: radial-gradient(circle, rgba(27, 107, 186, 0.16) 0%, transparent 70%);
}
.saas-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(12, 18, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 34, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 20%, transparent 75%);
}
.saas-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-bottom: 0;
}
.saas-hero .mp-hero-copy { max-width: 780px; }
.saas-hero-meta {
  margin-top: 20px;
  font-size: 14px;
  color: var(--mlx-text-muted);
}
.saas-hero-meta a { color: var(--mlx-indigo); font-weight: 600; text-decoration: none; }

.saas-hero-visual {
  position: relative;
  width: 100%;
  max-width: 920px;
  min-height: 320px;
  margin: 0 auto;
}
.saas-hero-glow {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(27, 107, 186, 0.15) 0%, transparent 70%);
  filter: blur(20px);
}
.saas-hero-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px rgba(24, 25, 27, 0.1), 0 4px 12px rgba(24, 25, 27, 0.04);
  text-align: left;
  min-width: 200px;
}
.saas-hero-float strong { display: block; font-size: 14px; margin: 8px 0 10px; }
.saas-hero-float p, .saas-hero-float li { font-size: 12px; color: var(--mlx-text-muted); }
.saas-hero-float-a { left: 8%; top: 12%; transform: rotate(-2deg); width: 42%; }
.saas-hero-float-b { right: 6%; top: 8%; transform: rotate(1.5deg); width: 36%; }
.saas-hero-float-c { left: 28%; bottom: 8%; transform: rotate(-0.5deg); width: 38%; }
.saas-hero-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

.saas-chip {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--mlx-paper-dim);
  color: var(--mlx-text-muted);
}
.saas-chip.indigo { background: var(--mlx-indigo-light); color: var(--mlx-indigo); }
.saas-chip.amber { background: #FEF0EF; color: var(--mlx-amber); }
.saas-bar {
  height: 6px;
  background: var(--mlx-paper-muted);
  border-radius: 3px;
  overflow: hidden;
}
.saas-bar span { display: block; height: 100%; background: var(--mlx-indigo); border-radius: 3px; }
.saas-mini-list { list-style: none; margin: 0; padding: 0; }
.saas-mini-list li { padding: 3px 0; font-size: 12px; color: var(--mlx-text-muted); }

.saas-trust-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(12, 18, 34, 0.06);
  border-bottom: 1px solid rgba(12, 18, 34, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}
.saas-trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b95a8;
}
.saas-trust-inner span:not(:last-child)::after {
  content: "·";
  margin: 0 16px;
  color: #d1d8e3;
  font-weight: 400;
}

.saas-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0 auto 16px;
  position: relative;
}
.saas-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.9;
}
.saas-icon.indigo { background: var(--mlx-indigo-light); color: var(--mlx-indigo); }
.saas-icon.blue { background: #E8F2FC; color: #1B6BBA; }
.saas-icon.coral { background: #FEF0EF; color: #F0483E; }
.saas-icon.violet { background: #F3EFFE; color: #6B4FBB; }
.zh-featured-card .saas-icon { margin: 0 0 16px; }
.zh-value-card .saas-icon { margin: 0 auto 20px; }

.zh-featured-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .zh-featured-grid { grid-template-columns: repeat(2, 1fr); } }

.saas-product { padding: 88px 0; }
.saas-product-alt { background: var(--mlx-paper-dim); }
.saas-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.saas-product-grid.reverse { direction: rtl; }
.saas-product-grid.reverse > * { direction: ltr; }
.saas-product-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mlx-indigo);
  margin-bottom: 12px;
}
.saas-product-copy h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 700;
}
.saas-product-copy > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--mlx-text-muted);
  margin-bottom: 20px;
}
.saas-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.saas-bullets li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--mlx-text-muted);
  border-bottom: 1px solid var(--mlx-line);
}
.saas-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22A06B;
  font-weight: 700;
}
.saas-inline-note {
  font-size: 14px;
  color: var(--mlx-text-muted);
  padding: 14px 16px;
  background: var(--mlx-paper-dim);
  border-radius: var(--zh-radius);
  border-left: 3px solid var(--mlx-indigo);
  margin-bottom: 20px;
}

.saas-frame {
  background: #fff;
  border: 1px solid rgba(24, 25, 27, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(24, 25, 27, 0.1), 0 2px 8px rgba(24, 25, 27, 0.04);
  overflow: hidden;
}
.saas-frame .mp-preview-badge { padding: 10px 16px 0; margin: 0; }
.saas-frame-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #FAFBFC;
  border-bottom: 1px solid var(--mlx-line);
}
.saas-dots { display: flex; gap: 5px; }
.saas-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  font-style: normal;
}
.saas-frame-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--mlx-text-muted);
  padding-right: 40px;
}
.saas-frame-body { padding: 20px; }

.saas-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.saas-stat-row.three { grid-template-columns: repeat(3, 1fr); }
.saas-stat-row.four { grid-template-columns: repeat(4, 1fr); }
.saas-stat-row > div {
  padding: 12px;
  background: var(--mlx-paper-dim);
  border-radius: 10px;
  text-align: center;
}
.saas-stat-row > div.warn { background: #FEF6EE; }
.saas-stat-n {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.saas-stat-l {
  display: block;
  font-size: 10px;
  color: var(--mlx-text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.saas-checklist, .saas-rows, .saas-match-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}
.saas-checklist li, .saas-rows li {
  padding: 10px 0;
  border-bottom: 1px solid var(--mlx-line);
  font-size: 13px;
  color: var(--mlx-text-muted);
}
.saas-rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.saas-rows li strong { display: block; font-size: 13px; color: var(--mlx-ink); }
.saas-rows li small { font-size: 11px; color: var(--mlx-text-muted); }
.saas-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--mlx-paper-dim);
  color: var(--mlx-text-muted);
  white-space: nowrap;
}
.saas-tag.blue { background: var(--mlx-indigo-light); color: var(--mlx-indigo); }
.saas-tag.warn { background: #FEF6EE; color: #C45A11; }
.saas-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--mlx-paper-dim);
  border-radius: 8px;
}
.saas-pipeline em { font-style: normal; color: #C45A11; }
.saas-footnote, .saas-privacy {
  font-size: 11px;
  color: var(--mlx-text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.saas-match-lines li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 12px;
  border-bottom: 1px solid var(--mlx-line);
}
.saas-match-lines .ok { color: #22A06B; font-weight: 600; }
.saas-match-lines .gap { color: #C45A11; font-weight: 600; }
.saas-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--mlx-indigo);
  margin-bottom: 14px;
  padding: 10px;
  background: var(--mlx-indigo-light);
  border-radius: 8px;
}

.saas-journey-wrap .mp-section-head { margin: 0 auto 32px; text-align: center; max-width: 720px; }
.saas-journey { text-align: center; }
.saas-journey .mp-preview-badge { margin-bottom: 20px; }
.saas-journey-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.saas-journey-steps li {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.saas-int-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.saas-int-grid .mp-preview-badge { grid-column: 1 / -1; margin-bottom: 4px; }
.saas-int-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
}
.saas-int-card strong { display: block; font-size: 14px; margin-bottom: 4px; }
.saas-int-card span { font-size: 12px; color: var(--mlx-text-muted); line-height: 1.4; display: block; }

.saas-role-panels { margin-top: 8px; }
.saas-role-card {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: var(--zh-radius-lg);
  padding: 32px;
  box-shadow: var(--zh-shadow-sm);
}
.saas-role-card h3 { font-size: 20px; margin-bottom: 16px; }
.saas-role-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.saas-role-card li {
  padding: 12px 16px;
  background: var(--mlx-paper-dim);
  border-radius: var(--zh-radius);
  font-size: 14px;
  color: var(--mlx-text-muted);
}

.mlx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--zh-radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}
.mlx-btn-lg { padding: 15px 28px; font-size: 16px; }

@media (max-width: 768px) {
  .saas-hero { padding: 48px 0 0; }
  .saas-hero-visual { min-height: 280px; }
  .saas-hero-float { position: relative; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; transform: none !important; width: 100% !important; margin-bottom: 12px; }
  .saas-hero-visual { display: flex; flex-direction: column; padding-bottom: 24px; }
  .saas-hero-badge { position: static; transform: none; margin-top: 8px; }
  .saas-int-grid { grid-template-columns: 1fr; }
  .saas-stat-row.four { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════════
   MLX TOPBAR — Enterprise marketing header (v22)
   ══════════════════════════════════════════════════════════ */

body.mlx-marketing .ml-site-header,
body.mlx-marketing .mp-header { display: none !important; }

.mkt-site { background: #fff; }

/* Marketing header styles live in marketing-header.css */

/* Legacy mkt-btn for product page aside */
.mkt-btn-block { width: 100%; margin-bottom: 12px; }

@media (max-width: 1023px) {
  .mkt-page-grid { grid-template-columns: 1fr; }
  .mkt-aside-card { position: static; }
  .mkt-steps { grid-template-columns: 1fr; }
  .mkt-solution-grid { grid-template-columns: 1fr; }
  .mkt-cap-grid { grid-template-columns: 1fr; }
  .mkt-final-cta-inner { flex-direction: column; }
}

/* Product pages */
.mkt-page-hero {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
  border-bottom: 1px solid var(--mlx-line);
}
.mkt-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mlx-indigo);
  margin-bottom: 12px;
}
.mkt-page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 16px;
}
.mkt-lead {
  font-size: 18px;
  line-height: 1.65;
  color: #6B7280;
  max-width: 640px;
  margin-bottom: 28px;
}
.mkt-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.mkt-page-body { padding: 56px 0 80px; }
.mkt-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.mkt-page-main h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.mkt-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.mkt-feature-list li {
  padding: 14px 0 14px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: #4B5563;
  border-bottom: 1px solid #F3F4F6;
}
.mkt-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22A06B;
  font-weight: 700;
}
.mkt-truth-note {
  font-size: 11px;
  color: #9CA3AF;
}
.mkt-aside-card {
  background: #F8FAFC;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 96px;
}
.mkt-aside-card h3 { font-size: 18px; margin-bottom: 8px; }
.mkt-aside-card p { font-size: 14px; color: #6B7280; margin-bottom: 20px; line-height: 1.5; }
.mkt-btn-block { width: 100%; margin-bottom: 12px; }
.mkt-back-link {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--mlx-indigo);
  text-decoration: none;
  font-weight: 500;
}

.zh-auth-audience-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding: 4px;
  background: #F3F4F6;
  border-radius: 10px;
}
.zh-auth-audience-tab {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  text-decoration: none;
}
.zh-auth-audience-tab.active {
  background: #fff;
  color: var(--mlx-ink);
  box-shadow: 0 1px 3px rgba(24, 25, 27, 0.08);
}

.zh-company-license {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--mlx-line);
}
.zh-company-license-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--zh-shadow-sm);
}
.zh-company-license h2 {
  font-size: 28px;
  margin: 8px 0 12px;
}
.zh-company-license p,
.zh-company-license li {
  color: #6B7280;
  line-height: 1.6;
}
.zh-company-license ul {
  margin: 16px 0 0;
  padding-left: 1.2rem;
}
.zh-company-license-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zh-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--zh-radius);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--mlx-indigo);
  color: var(--mlx-indigo);
  background: #fff;
}
.mp-cta-sub {
  margin-top: 12px;
  font-size: 14px;
}
.mp-cta-sub a { color: var(--mlx-indigo); font-weight: 600; }

@media (max-width: 768px) {
  .zh-company-license-inner { grid-template-columns: 1fr; }
}

/* Hub, product, resources — premium solution pages */
.mkt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 16px;
}
.mkt-breadcrumb a { color: var(--mlx-indigo); text-decoration: none; font-weight: 500; }
.mkt-breadcrumb a:hover { text-decoration: underline; }

.mkt-section { padding: 56px 0; }
.mkt-section-alt { background: #F8FAFC; }
.mkt-section-title {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.mkt-section-head {
  max-width: 640px;
  margin-bottom: 32px;
}
.mkt-section-head p { color: #6B7280; line-height: 1.6; }

.mkt-how-strip { background: linear-gradient(180deg, #fff 0%, #F8FAFC 100%); border-bottom: 1px solid var(--mlx-line); }
.mkt-how-compact { padding-top: 40px; padding-bottom: 40px; }
.mkt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mkt-step-card {
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--zh-shadow-sm);
}
.mkt-step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mlx-indigo-light);
  color: var(--mlx-indigo);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mkt-step-card h3 { font-size: 17px; margin-bottom: 8px; }
.mkt-step-card p { font-size: 14px; line-height: 1.55; color: #6B7280; }

.mkt-cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mkt-cap-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
}
.mkt-cap-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E6F4EA;
  color: #137333;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}
.mkt-cap-card p { margin: 0; font-size: 15px; line-height: 1.5; color: #374151; }

.mkt-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mkt-solution-card {
  display: block;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.mkt-solution-card:hover {
  border-color: var(--mlx-indigo);
  box-shadow: 0 12px 32px rgba(27, 107, 186, 0.12);
  transform: translateY(-2px);
}
.mkt-solution-card h3 { font-size: 18px; margin-bottom: 8px; }
.mkt-solution-card p { font-size: 14px; line-height: 1.5; color: #6B7280; margin-bottom: 16px; }
.mkt-card-link { font-size: 13px; font-weight: 600; color: var(--mlx-indigo); }

.mkt-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mkt-related-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 12px;
  text-decoration: none;
}
.mkt-related-card strong { display: block; margin-bottom: 6px; color: var(--mlx-ink); }
.mkt-related-card span { font-size: 13px; line-height: 1.45; color: #6B7280; }

.mkt-final-cta {
  background: linear-gradient(160deg, #1B6BBA 0%, #131A25 100%);
  color: #fff;
}
.mkt-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mkt-final-cta h2 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.mkt-final-cta p { color: rgba(255,255,255,0.8); max-width: 520px; line-height: 1.55; }
.mkt-final-cta .mlx-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.mkt-final-cta .mlx-btn-ghost:hover { background: rgba(255,255,255,0.1); }

.mkt-resources-layout { display: grid; gap: 48px; }
.mkt-resources-block h2 { font-size: 22px; margin-bottom: 8px; }
.mkt-resources-block > p { color: #6B7280; margin-bottom: 16px; }
.mkt-resources-links { display: flex; flex-wrap: wrap; gap: 12px; }
.mkt-resources-links a {
  padding: 10px 16px;
  background: #F8FAFC;
  border: 1px solid var(--mlx-line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  color: var(--mlx-indigo);
  font-size: 14px;
}
.mkt-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mkt-guide-card {
  display: block;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--mlx-line);
  border-radius: 10px;
  text-decoration: none;
}
.mkt-guide-card strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--mlx-ink); }
.mkt-guide-card span { font-size: 12px; color: var(--mlx-indigo); font-weight: 600; }
.mkt-resources-cta {
  padding: 32px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid var(--mlx-line);
}

@media (max-width: 900px) {
  .mkt-solution-grid,
  .mkt-related-grid,
  .mkt-guide-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .mkt-guide-grid { grid-template-columns: 1fr; }
}
