:root {
  --mxl-radius-lg: 28px;
  --mxl-shadow-soft: 0 26px 60px -30px rgba(13, 42, 78, 0.65);
  --mxl-shadow-card: 0 12px 32px -24px rgba(13, 66, 120, 0.55);
  --mxl-border-rgb: 14, 72, 129;
  --mxl-code-font: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  --mxl-body-font: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mxl-surface: rgba(255, 255, 255, 0.92);
  --mxl-surface-subtle: rgba(255, 255, 255, 0.75);
  --mxl-hero-gradient: radial-gradient(circle at 12% 20%, rgba(13, 110, 253, 0.25), transparent 60%),
    radial-gradient(circle at 82% 12%, rgba(41, 196, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #0d47a1 0%, #4dabf5 60%, #7ad0ff 100%);
  --mxl-card-border: rgba(var(--mxl-border-rgb), 0.12);
  --mxl-text-muted: #31415f;
  --mxl-pill-bg: rgba(13, 110, 253, 0.12);
  --mxl-section-bg: rgba(18, 100, 163, 0.06);
  --mxl-topbar-bg: rgba(6, 21, 40, 0.38);
  --mxl-topbar-border: rgba(255, 255, 255, 0.14);
  --mxl-gradient-text: linear-gradient(90deg, #ffffff 0%, #cfefff 40%, #9ee1ff 100%);
  --mxl-landing-bg: linear-gradient(180deg, #eef4fb 0%, #f6f9ff 48%, #ffffff 100%);
  --mxl-landing-fade: #f6f9ff;
}

body {
  font-family: var(--mxl-body-font);
}

body[data-theme="light"],
body[data-theme="auto"][data-default-mode="light"] {
  --mxl-surface: rgba(255, 255, 255, 0.92);
  --mxl-surface-subtle: rgba(255, 255, 255, 0.75);
  --mxl-hero-gradient: radial-gradient(circle at 12% 20%, rgba(13, 110, 253, 0.25), transparent 60%),
    radial-gradient(circle at 82% 12%, rgba(41, 196, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #0d47a1 0%, #4dabf5 60%, #7ad0ff 100%);
  --mxl-card-border: rgba(var(--mxl-border-rgb), 0.12);
  --mxl-text-muted: #31415f;
  --mxl-pill-bg: rgba(13, 110, 253, 0.12);
  --mxl-section-bg: rgba(18, 100, 163, 0.06);
  --mxl-landing-bg: linear-gradient(180deg, #eef4fb 0%, #f6f9ff 48%, #ffffff 100%);
  --mxl-landing-fade: #f6f9ff;
}

body[data-theme="dark"],
body[data-theme="auto"][data-default-mode="dark"] {
  --mxl-surface: rgba(15, 24, 40, 0.94);
  --mxl-surface-subtle: rgba(15, 24, 40, 0.75);
  --mxl-hero-gradient: radial-gradient(circle at 18% 18%, rgba(102, 199, 255, 0.25), transparent 65%),
    radial-gradient(circle at 70% 12%, rgba(108, 201, 255, 0.3), transparent 55%),
    linear-gradient(135deg, #061024 0%, #112c4f 55%, #0c4f7f 100%);
  --mxl-card-border: rgba(132, 198, 255, 0.08);
  --mxl-text-muted: #b3c7df;
  --mxl-pill-bg: rgba(102, 199, 255, 0.18);
  --mxl-section-bg: rgba(102, 199, 255, 0.08);
  --mxl-landing-bg: linear-gradient(180deg, #071224 0%, #0c1d33 55%, #0f223b 100%);
  --mxl-landing-fade: #0c1d33;
}

/* --- Landing page chrome (index only) --- */
.mxl-skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0d2a4d;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
  z-index: 1000;
}

.mxl-skip-link:focus {
  transform: translateY(0);
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.mxl-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0.9rem clamp(1.2rem, 4vw, 4rem);
  box-sizing: border-box;
  z-index: 900;
  background: var(--mxl-topbar-bg);
  border-bottom: 1px solid var(--mxl-topbar-border);
  backdrop-filter: blur(14px);
}

.mxl-topbar__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.8rem);
}

.mxl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mxl-brand:visited {
  color: #fff;
}

.mxl-brand__name {
  color: #fff;
}

.mxl-brand__mark {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.1rem;
}

.mxl-brand__mark img {
  width: 2.1rem;
  height: 2.1rem;
  display: block;
}

.mxl-brand__name {
  font-size: 1.02rem;
}

.mxl-topbar__nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.mxl-topbar__link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.mxl-topbar__link:visited {
  color: rgba(255, 255, 255, 0.82);
}

.mxl-topbar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.mxl-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mxl-topbar__cta {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.mxl-topbar__cta:visited {
  color: rgba(255, 255, 255, 0.9);
}

.mxl-topbar__cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mxl-gradient-text {
  background: var(--mxl-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --- Hero block on the landing page --- */
.mxl-hero {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: calc(clamp(2.4rem, 5vw, 4.2rem) + 4.8rem) clamp(2rem, 6vw, 6rem)
    clamp(3.4rem, 5vw, 4.4rem);
  min-height: 100vh;
  border-radius: 0;
  background: var(--mxl-hero-gradient);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mxl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 58%, var(--mxl-landing-fade) 100%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.mxl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.mxl-hero > * {
  position: relative;
  z-index: 2;
}

.mxl-hero__grid {
  width: min(1240px, 94vw);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.6rem, 5vw, 6rem);
  align-items: center;
}

.mxl-hero__copy {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.mxl-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.86);
}

.mxl-hero__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

.mxl-hero__title {
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  line-height: 1.08;
  margin: 0;
  font-weight: 700;
}

.mxl-hero__lead {
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.mxl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.6rem;
  justify-content: flex-start;
}

.mxl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.mxl-button--sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
}

.mxl-button--primary {
  background: rgba(255, 255, 255, 0.92);
  color: #0d2a4d;
  box-shadow: 0 12px 24px -14px rgba(5, 22, 51, 0.65);
}

.mxl-button--primary:visited {
  color: #0d2a4d;
}

.mxl-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(5, 22, 51, 0.7);
}

.mxl-button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mxl-button--ghost:visited {
  color: #fff;
}

.mxl-button--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.mxl-button--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 20px -18px rgba(5, 22, 51, 0.65);
}

.mxl-button--secondary:visited {
  color: #fff;
}

.mxl-button--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 24px -18px rgba(5, 22, 51, 0.7);
}

.mxl-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
  padding: 1.1rem 1.3rem;
  border-radius: 24px;
  background: rgba(6, 21, 40, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 720px;
  margin: 0;
}

.mxl-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.mxl-glass-card {
  position: relative;
  width: min(430px, 92vw);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(14, 38, 72, 0.46), rgba(6, 21, 40, 0.3) 55%, rgba(12, 44, 82, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--mxl-shadow-soft);
  overflow: hidden;
}

.mxl-glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), transparent 40%);
  opacity: 0.65;
  pointer-events: none;
}

.mxl-glass-card > * {
  position: relative;
  z-index: 2;
}

.mxl-glass-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.mxl-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.mxl-chip--ok {
  background: linear-gradient(130deg, rgba(120, 214, 255, 0.45), rgba(255, 255, 255, 0.14));
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 18px -14px rgba(4, 20, 45, 0.8);
}

.mxl-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.6rem;
  align-items: center;
  margin: 1.1rem 0;
}

.mxl-node {
  padding: 0.7rem 0.9rem;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
}

.mxl-node--center {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 22px -18px rgba(5, 22, 51, 0.75);
}

.mxl-arrow {
  opacity: 0.7;
  font-weight: 900;
}

.mxl-mini {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mxl-mini__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.mxl-mini__label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.mxl-mini__value {
  font-weight: 700;
  font-size: 0.9rem;
}

.mxl-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.55;
  pointer-events: none;
}

.mxl-glow--a {
  background: rgba(41, 196, 255, 0.55);
  top: -120px;
  left: -90px;
}

.mxl-glow--b {
  background: rgba(255, 255, 255, 0.22);
  bottom: -160px;
  right: -140px;
}

.mxl-scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.mxl-scroll:visited {
  color: rgba(255, 255, 255, 0.82);
}

.mxl-scroll:hover {
  color: #fff;
}

.mxl-scroll__line {
  width: 2px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
}

/* Responsive embedded video container */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin: 1rem 0;
  border-radius: 14px;
  box-shadow: 0 16px 32px -22px rgba(0, 0, 0, 0.45);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  text-align: center;
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.video-fallback a {
  font-weight: 600;
  text-decoration: none;
}

.mxl-hero__stats dt {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}

.mxl-hero__stats dd {
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 720px) {
  .mxl-topbar {
    padding: 0.85rem 1.2rem;
  }

  .mxl-topbar__nav {
    display: none;
  }

  .mxl-hero {
    padding: calc(2.8rem + 4.6rem) 1.8rem 3.8rem;
    min-height: auto;
  }

  .mxl-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .mxl-hero__copy {
    text-align: center;
    align-items: center;
  }

  .mxl-hero__actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .mxl-hero__stats {
    max-width: 100%;
  }

  .mxl-hero__visual {
    min-height: auto;
    width: 100%;
  }

  .mxl-glass-card {
    width: 100%;
    max-width: 100%;
    padding: 1.05rem 1.1rem;
  }

  .mxl-loop--hero .mxl-loop__block {
    padding: 0.6rem 0.75rem;
  }

  .mxl-loop--hero .mxl-loop__meta {
    font-size: 0.72rem;
  }

  body.mxl-landing h1.mxl-hero__title {
    font-size: clamp(2.1rem, 6.5vw, 3.1rem) !important;
  }
}

@media (max-width: 540px) {
  .mxl-hero {
    padding: calc(2.6rem + 4.6rem) 1.4rem 3.8rem;
  }

  .mxl-brand__name {
    display: none;
  }

  .mxl-pill--light {
    display: none;
  }

  .mxl-topbar__actions {
    gap: 0.65rem;
  }

  .mxl-scroll__text {
    display: none;
  }
}

/* --- Landing sections (index only) --- */
.mxl-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.mxl-section {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: clamp(3.4rem, 6vw, 5.2rem) 0;
  background: transparent;
}

.mxl-section--alt {
  background: var(--mxl-section-bg);
}

.mxl-section__head {
  margin: 0 auto 2.2rem auto;
  text-align: left;
}

.mxl-section__head h2 {
  margin: 0 0 0.6rem 0;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  padding-left: 0;
  text-indent: 0;
}

.mxl-section__head p {
  margin: 0;
  max-width: 82ch;
  padding-left: 0;
  text-indent: 0;
}

body.mxl-landing .mxl-section a:not(.mxl-button),
body.mxl-landing .video-fallback a,
body.mxl-landing .mxl-small a {
  color: var(--color-brand-primary);
}

body.mxl-landing .mxl-section a:not(.mxl-button):visited,
body.mxl-landing .video-fallback a:visited,
body.mxl-landing .mxl-small a:visited {
  color: var(--color-brand-primary);
}

body.mxl-landing .mxl-section .mxl-button {
  border-color: var(--mxl-card-border);
  backdrop-filter: none;
}

body.mxl-landing .mxl-section .mxl-button--primary {
  background: var(--color-brand-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px -18px rgba(13, 66, 120, 0.55);
}

body.mxl-landing .mxl-section .mxl-button--primary:visited {
  color: #fff;
}

body.mxl-landing .mxl-section .mxl-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -22px rgba(13, 66, 120, 0.6);
}

body.mxl-landing .mxl-section .mxl-button--secondary {
  background: var(--mxl-surface);
  color: var(--color-foreground-primary);
  box-shadow: var(--mxl-shadow-card);
}

body.mxl-landing .mxl-section .mxl-button--secondary:visited {
  color: var(--color-foreground-primary);
}

body.mxl-landing .mxl-section .mxl-button--secondary:hover {
  background: var(--mxl-surface-subtle);
}

body.mxl-landing .mxl-section .mxl-button--ghost {
  background: transparent;
  color: var(--color-foreground-primary);
}

body.mxl-landing .mxl-section .mxl-button--ghost:visited {
  color: var(--color-foreground-primary);
}

body.mxl-landing .mxl-section .mxl-button--ghost:hover {
  background: rgba(var(--mxl-border-rgb), 0.06);
}

.mxl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.mxl-card {
  background: var(--mxl-surface);
  border: 1px solid var(--mxl-card-border);
  border-radius: 22px;
  padding: 1.4rem 1.4rem;
  box-shadow: var(--mxl-shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mxl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -28px rgba(13, 66, 120, 0.55);
}

.mxl-card h3 {
  margin: 0 0 0.55rem 0;
  font-size: 1.15rem;
}

.mxl-card p {
  margin: 0 0 1rem 0;
}

.mxl-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mxl-split {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.6rem, 4vw, 3.6rem);
}

.mxl-split--reverse {
  flex-direction: row-reverse;
}

.mxl-split__copy {
  flex: 1 1 0;
  min-width: 0;
}

.mxl-split__panel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mxl-split__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.mxl-list {
  margin: 1.1rem 0 0 0;
  padding-left: 1.4rem;
}

.mxl-list li {
  margin: 0.55rem 0;
}

.mxl-small {
  font-size: 0.95rem;
  margin-top: 1rem;
  color: var(--mxl-text-muted);
}

body.mxl-landing .mxl-code-card {
  background: var(--mxl-surface);
  border: 1px solid var(--mxl-card-border);
  border-radius: 22px;
  box-shadow: var(--mxl-shadow-card);
  overflow: hidden;
}

.mxl-code-card__title {
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--mxl-card-border);
  background: rgba(var(--mxl-border-rgb), 0.04);
}

body.mxl-landing .mxl-code-card__code {
  margin: 0;
  padding: 1.1rem 1.2rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-family: var(--mxl-code-font);
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  color: var(--color-foreground-primary);
}

body.mxl-landing .mxl-code-card__code code {
  background: transparent;
  border: 0;
  padding: 0;
  font-family: inherit;
}

body.mxl-landing .mxl-loop-card {
  background: linear-gradient(160deg, rgba(var(--mxl-border-rgb), 0.06), rgba(var(--mxl-border-rgb), 0.02));
  border-color: rgba(var(--mxl-border-rgb), 0.18);
  position: relative;
}

body.mxl-landing .mxl-loop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
}

body.mxl-landing .mxl-loop-card > * {
  position: relative;
  z-index: 1;
}

.mxl-loop-card__title {
  background: rgba(var(--mxl-border-rgb), 0.08);
}

.mxl-loop {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mxl-loop__block {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(var(--mxl-border-rgb), 0.18);
  background: var(--mxl-surface);
  box-shadow: 0 10px 20px -18px rgba(13, 66, 120, 0.35);
}

.mxl-loop__block--core {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.12), var(--mxl-surface));
  border-color: rgba(var(--mxl-border-rgb), 0.32);
}

.mxl-loop__name {
  font-weight: 800;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.mxl-loop__meta {
  font-size: 0.85rem;
  color: var(--mxl-text-muted);
}

.mxl-loop__connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}

.mxl-loop__connector::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.6rem;
  bottom: -0.6rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(var(--mxl-border-rgb), 0.45), transparent);
  transform: translateX(-50%);
}

.mxl-loop__connector span {
  position: relative;
  z-index: 1;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(var(--mxl-border-rgb), 0.08);
  border: 1px solid rgba(var(--mxl-border-rgb), 0.2);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--mxl-text-muted);
}

.mxl-loop--hero {
  padding: 0.4rem 0 0.8rem;
  gap: 0.65rem;
}

.mxl-loop--hero .mxl-loop__block {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 24px -18px rgba(5, 22, 51, 0.65);
}

.mxl-loop--hero .mxl-loop__block--core {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}

.mxl-loop--hero .mxl-loop__name {
  color: rgba(255, 255, 255, 0.96);
}

.mxl-loop--hero .mxl-loop__meta {
  color: rgba(255, 255, 255, 0.74);
}

.mxl-loop--hero .mxl-loop__connector::before {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.mxl-loop--hero .mxl-loop__connector span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.82);
}

.mxl-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.mxl-step {
  background: var(--mxl-surface);
  border: 1px solid var(--mxl-card-border);
  border-radius: 22px;
  padding: 1.35rem 1.35rem;
  box-shadow: var(--mxl-shadow-card);
}

.mxl-step__num {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: rgba(var(--mxl-border-rgb), 0.12);
  color: var(--color-brand-primary);
}

.mxl-step h3 {
  margin: 1rem 0 0.55rem 0;
  font-size: 1.1rem;
}

.mxl-step p {
  margin: 0;
}

.mxl-cta-card {
  background: var(--mxl-surface);
  border: 1px solid var(--mxl-card-border);
  border-radius: 28px;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--mxl-shadow-soft);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.6rem;
}

.mxl-cta-card__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.mxl-cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 240px;
}

.mxl-ol {
  margin: 0;
  padding-left: 1.4rem;
}

.mxl-ol li {
  margin: 0.65rem 0;
}

.mxl-landing-footer {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  padding: 2.8rem 0;
  background: rgba(var(--mxl-border-rgb), 0.05);
  border-top: 1px solid var(--mxl-card-border);
}

.mxl-landing-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mxl-landing-footer__title {
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.mxl-landing-footer__text {
  max-width: 90ch;
  color: var(--mxl-text-muted);
}

.mxl-landing-footer__text a {
  color: var(--color-foreground-primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--mxl-border-rgb), 0.25);
}

.mxl-landing-footer__text a:visited {
  color: var(--color-foreground-primary);
}

.mxl-landing-footer__text a:hover {
  color: var(--color-brand-primary);
  border-bottom-color: var(--color-brand-primary);
}

.mxl-landing-footer__links {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.mxl-landing-footer__links a {
  color: var(--color-foreground-primary);
  font-weight: 800;
  text-decoration: none;
  padding: 0.35rem 0.55rem;
  border-radius: 12px;
}

.mxl-landing-footer__links a:visited {
  color: var(--color-foreground-primary);
}

.mxl-landing-footer__links a:hover {
  background: rgba(var(--mxl-border-rgb), 0.06);
}

@media (max-width: 900px) {
  .mxl-split,
  .mxl-split--reverse {
    flex-direction: column;
  }

  .mxl-cta-card {
    flex-direction: column;
  }

  .mxl-cta-card__actions {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* --- Card surfaces and typography tweaks --- */
.content h1,
.content h2,
.content h3 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.content h1 {
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.0rem);
}

.content h2 {
  font-size: clamp(1.2rem, 1rem + 1.1vw, 1.6rem);
}

.content h3 {
  font-size: clamp(0.9rem, 0.95rem + 0.8vw, 1.3rem);
}

.content h4 {
  font-size: clamp(0.75rem, 0.9rem + 0.4vw, 1.0rem);
  font-weight: 600;
}

.content p {
  font-size: 1.02rem;
  color: var(--mxl-text-muted);
}

.content .admonition,
.content .note,
.content .tip,
.content .warning,
.content .important {
  border-radius: 18px;
  border-left: 6px solid var(--color-brand-primary);
  box-shadow: var(--mxl-shadow-card);
  overflow: hidden;
  background: var(--mxl-surface);
}

.content .admonition > p:first-of-type,
.content .admonition-title {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.content .highlight,
.content pre {
  border-radius: 18px;
  background: var(--mxl-surface);
  border: 1px solid var(--mxl-card-border);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), var(--mxl-shadow-card);
  font-family: var(--mxl-code-font);
  font-size: 0.95rem;
}

.content code.literal {
  font-family: var(--mxl-code-font);
  padding: 0.15rem 0.35rem;
  border-radius: 8px;
  background: var(--mxl-surface-subtle);
  border: 1px solid rgba(var(--mxl-border-rgb), 0.1);
}

body.mxl-landing .mxl-command {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 10px;
  background: rgba(var(--mxl-border-rgb), 0.08);
  border: 1px solid rgba(var(--mxl-border-rgb), 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  font-family: var(--mxl-code-font);
  font-size: 0.95rem;
  color: var(--color-foreground-primary);
  white-space: nowrap;
}

.content table.docutils {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--mxl-card-border);
  box-shadow: var(--mxl-shadow-card);
}

.content table.docutils thead {
  background: rgba(18, 100, 163, 0.08);
}

.content table.docutils td,
.content table.docutils th {
  padding: 0.75rem 1rem;
}

.content blockquote {
  border-left: 4px solid var(--color-brand-primary);
  background: var(--mxl-surface);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--mxl-shadow-card);
  color: var(--mxl-text-muted);
}

/* --- Sidebar tweaks --- */
.sidebar {
  background: var(--color-sidebar-background);
}

.sidebar-brand img {
  max-height: 88px;
  width: auto;
}

.sidebar .sidebar-brand-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.sidebar nav a.current {
  background: rgba(18, 100, 163, 0.12);
  border-radius: 12px;
}

/* --- Inline badges and lists --- */
.mxl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--mxl-pill-bg);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mxl-pill--light {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

.content ul {
  padding-left: 1.3rem;
}

.content ul > li::marker {
  color: var(--color-brand-primary);
}

/* --- Footer polish --- */
.footer {
  border-top: 1px solid var(--mxl-card-border);
  padding-top: 2rem;
  margin-top: 3rem;
}

/* --- Landing page layout overrides --- */
body.mxl-landing {
  overflow-x: hidden;
  background: var(--mxl-landing-bg);
  color: var(--color-foreground-primary);
}

body.mxl-landing .page,
body.mxl-landing .main {
  background: transparent;
}

body.mxl-landing .sidebar-drawer,
body.mxl-landing .sidebar-toggle,
body.mxl-landing .sidebar-overlay,
body.mxl-landing .toc-overlay,
body.mxl-landing .mobile-header,
body.mxl-landing .content-icon-container,
body.mxl-landing .back-to-top,
body.mxl-landing .related-pages,
body.mxl-landing .footer,
body.mxl-landing .theme-toggle-container,
body.mxl-landing .skip-to-content {
  display: none !important;
}

body.mxl-landing .page {
  margin: 0;
  max-width: none;
  width: 100%;
}

body.mxl-landing .main {
  margin: 0;
  max-width: none;
  width: 100%;
  margin-left: 0;
}

body.mxl-landing main {
  padding-top: 0;
}

body.mxl-landing .main > .content {
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
}

body.mxl-landing .main > .content > .article-container,
body.mxl-landing .main > .content > .article-container > article {
  padding: 0;
  margin: 0;
  max-width: none;
  width: 100%;
}

body.mxl-landing h1.mxl-hero__title {
  font-size: clamp(2.0rem, 4.0vw, 3.0rem) !important;
}

/* --- Simplified landing page (index only) --- */
body.mxl-landing.mxl-landing-simple {
  --mxl-simple-bg: #090f1d;
  --mxl-simple-card: rgba(14, 24, 40, 0.72);
  --mxl-simple-border: rgba(140, 208, 255, 0.18);
  --mxl-simple-text: #e9f4ff;
  --mxl-simple-muted: #bdd4ea;
  --mxl-simple-accent: #6ad6ff;
  --mxl-simple-accent-strong: #23b2f1;
  --mxl-simple-card-bg: linear-gradient(160deg, rgba(14, 28, 48, 0.72), rgba(10, 20, 36, 0.55) 56%, rgba(14, 32, 56, 0.48));
  --mxl-simple-card-border: rgba(140, 208, 255, 0.12);
  background:
    radial-gradient(ellipse 80% 50% at 16% 6%, rgba(35, 178, 241, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 84% 10%, rgba(138, 197, 255, 0.14), transparent 52%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(20, 80, 160, 0.08), transparent 60%),
    linear-gradient(180deg, #050a16 0%, #0b1324 54%, #0f1a2f 100%);
  color: var(--mxl-simple-text);
}

body.mxl-landing.mxl-landing-simple .main > .content {
  align-items: flex-start;
  justify-content: center;
  padding: 0;
}

body.mxl-landing.mxl-landing-simple .main > .content > .article-container,
body.mxl-landing.mxl-landing-simple .main > .content > .article-container > article {
  display: flex;
  justify-content: center;
}

.mxl-simple-shell {
  width: min(1100px, 94vw);
  min-height: 100vh;
  padding: 1.4rem 0 0;
  display: flex;
  flex-direction: column;
}

.mxl-simple-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.6rem 0 0.8rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 19, 36, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(140, 208, 255, 0.06);
  margin: 0 calc(-3vw);
  padding-left: 3vw;
  padding-right: 3vw;
}

.mxl-simple-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--mxl-simple-text);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.mxl-simple-brand:visited {
  color: var(--mxl-simple-text);
}

.mxl-simple-brand:hover {
  color: #fff;
}

.mxl-simple-brand img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.15rem;
}

.mxl-simple-nav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
}

.mxl-simple-nav a {
  text-decoration: none;
  color: var(--mxl-simple-muted);
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.mxl-simple-nav a:visited {
  color: var(--mxl-simple-muted);
}

.mxl-simple-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.mxl-simple-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}

.mxl-hero-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── Hero ── */
.mxl-simple-hero {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 4vw, 3.6rem) clamp(2.4rem, 5vw, 3.6rem);
}

.mxl-simple-kicker {
  margin: 0 0 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--mxl-simple-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.mxl-kicker-symbol {
  display: inline-block;
  width: 1.1em;
  text-align: center;
  font-size: 1.05em;
  opacity: 0.9;
}

body.mxl-landing.mxl-landing-simple .mxl-simple-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.12;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mxl-typewriter-wrap {
  display: inline;
  color: var(--mxl-simple-accent);
}

.mxl-typewriter {
  /* Content set by JS */
}

.mxl-typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--mxl-simple-accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: mxl-blink 0.72s steps(2, start) infinite;
}

@keyframes mxl-blink {
  to { opacity: 0; }
}

.mxl-simple-lead {
  margin: 1.4rem auto 0;
  max-width: 58ch;
  color: var(--mxl-simple-muted);
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  line-height: 1.6;
}

.mxl-simple-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mxl-simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 9.2rem;
  padding: 0.78rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mxl-simple-btn:visited {
  color: #fff;
}

.mxl-simple-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px -12px rgba(106, 214, 255, 0.15);
}

.mxl-simple-btn--primary {
  color: #06101e;
  font-weight: 700;
  background: linear-gradient(135deg, #6ad6ff 0%, #23b2f1 100%);
  border-color: transparent;
  box-shadow: 0 4px 18px -6px rgba(35, 178, 241, 0.4);
}

.mxl-simple-btn--primary:visited {
  color: #06101e;
}

.mxl-simple-btn--primary:hover {
  background: linear-gradient(135deg, #88e2ff, #42c4f7);
  border-color: transparent;
  box-shadow: 0 8px 28px -8px rgba(35, 178, 241, 0.5);
}

.mxl-simple-btn--primary svg {
  transition: transform 0.2s ease;
}

.mxl-simple-btn--primary:hover svg {
  transform: translateX(3px);
}

/* ── Install command block ── */
.mxl-install-block {
  margin: 0 auto;
  width: min(480px, 100%);
  padding: 2.4rem 0 0;
  text-align: center;
}

.mxl-install-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(189, 212, 234, 0.55);
  margin-bottom: 0.6rem;
}

.mxl-install-command {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.65rem 0.65rem 1.2rem;
  border-radius: 14px;
  background: rgba(14, 24, 40, 0.6);
  border: 1px solid rgba(140, 208, 255, 0.14);
  font-family: var(--mxl-code-font);
  font-size: 0.92rem;
  color: var(--mxl-simple-accent);
}

.mxl-install-command code {
  flex: 1;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  color: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mxl-install-copy {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--mxl-simple-muted);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  font-family: var(--mxl-body-font);
}

.mxl-install-copy:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* ── Feature grid ── */
.mxl-feature-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(3.6rem, 7vw, 5.6rem);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(140, 208, 255, 0.08);
  border: 1px solid var(--mxl-simple-card-border);
}

.mxl-feature-card {
  padding: 1.8rem 1.6rem;
  background: rgba(8, 16, 30, 0.85);
  transition: background 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mxl-feature-card:hover {
  background: rgba(14, 28, 48, 0.92);
}

.mxl-feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(106, 214, 255, 0.1);
  border: 1px solid rgba(106, 214, 255, 0.18);
  color: var(--mxl-simple-accent);
  margin-bottom: 0.4rem;
}

.mxl-feature-icon svg {
  width: 18px;
  height: 18px;
}

.mxl-feature-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.mxl-feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--mxl-simple-muted);
}

/* ── How it works ── */
.mxl-how-section {
  width: 100%;
  margin-top: clamp(3.6rem, 7vw, 5.6rem);
  text-align: center;
}

.mxl-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 2.4rem;
  letter-spacing: -0.02em;
}

.mxl-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.mxl-how-step {
  flex: 1;
  max-width: 280px;
  padding: 1.8rem 1.4rem;
  text-align: center;
}

.mxl-how-num {
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  color: var(--mxl-simple-accent);
  background: rgba(106, 214, 255, 0.1);
  border: 1px solid rgba(106, 214, 255, 0.22);
}

.mxl-how-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.mxl-how-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--mxl-simple-muted);
}

.mxl-how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.2rem;
  color: rgba(140, 208, 255, 0.3);
}

.mxl-how-connector svg {
  width: 20px;
  height: 20px;
}

/* ── Landing footer ── */
.mxl-landing-foot {
  width: 100%;
  margin-top: clamp(3.6rem, 7vw, 5.6rem);
  padding: 2rem 0;
  border-top: 1px solid rgba(140, 208, 255, 0.08);
}

.mxl-landing-foot__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mxl-landing-foot__brand {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(189, 212, 234, 0.5);
}

.mxl-landing-foot__links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.mxl-landing-foot__links a {
  text-decoration: none;
  color: rgba(189, 212, 234, 0.5);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

.mxl-landing-foot__links a:visited {
  color: rgba(189, 212, 234, 0.5);
}

.mxl-landing-foot__links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .mxl-simple-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .mxl-simple-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .mxl-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 20px;
  }

  .mxl-how-steps {
    flex-direction: column;
    align-items: center;
  }

  .mxl-how-connector {
    padding-top: 0;
    transform: rotate(90deg);
  }
}

@media (max-width: 540px) {
  .mxl-feature-grid {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .mxl-simple-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body.mxl-landing.mxl-landing-simple .mxl-simple-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .mxl-simple-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mxl-landing-foot__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
