:root {
  --mq-bg: #f6f9ff;
  --mq-band: #eef5ff;
  --mq-card: #ffffff;
  --mq-line: #dfe8f7;
  --mq-text: #172033;
  --mq-muted: #637083;
  --mq-heading: #061329;
  --mq-blue: #2563eb;
  --mq-blue-2: #1d7ff9;
  --mq-blue-soft: #eaf2ff;
  --mq-green: #16a34a;
  --mq-shadow: 0 22px 54px rgba(37, 99, 235, 0.13);
  --mq-soft-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  --mq-max: 1160px;
  --mq-radius: 16px;
  --mq-image-workspace: url("./asset/image.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--mq-bg);
  color: var(--mq-text);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", "Noto Sans KR", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

body::before,
#particles-canvas {
  display: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.mq-container {
  width: min(100% - 48px, var(--mq-max));
  margin: 0 auto;
}

.mq-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(191, 219, 254, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mq-header.scrolled,
.mq-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(191, 219, 254, 0.95);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mq-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mq-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mq-heading);
}

.mq-logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.mq-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
}

.mq-logo-text {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.mq-logo-text strong {
  font-size: 15px;
  font-weight: 900;
}

.mq-logo-text small {
  color: var(--mq-muted);
  font-size: 10px;
  font-weight: 800;
}

.mq-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #526174;
  font-size: 14px;
  font-weight: 750;
}

.mq-nav-menu a {
  color: inherit;
  padding: 4px 0;
}

.mq-nav-menu a:hover,
.mq-nav-menu a.active {
  color: var(--mq-blue);
}

.drawer-link.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--mq-blue);
}

.mq-nav-menu a::after {
  display: none;
}

.mq-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mq-nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 17px;
  background: var(--mq-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.mq-page {
  overflow: hidden;
}

.mq-hero {
  min-height: 760px;
  padding: 84px 0 74px;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--mq-line);
}

.mq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: 0;
}

.mq-hero-copy {
  min-width: 0;
  max-width: 860px;
  text-align: center;
}

.mq-eyebrow,
.mq-section-label {
  margin: 0 0 14px;
  color: var(--mq-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mq-hero h1 {
  margin: 0 auto 22px;
  min-height: 0;
  color: var(--mq-heading);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}

.mq-hero h1 em {
  color: var(--mq-blue);
  font-style: normal;
}

.mq-typing-title {
  display: grid;
  justify-items: center;
}

.mq-type-line {
  width: max-content;
  max-width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: mqTypeReveal 1s steps(9, end) forwards;
}

.mq-type-line-one {
  animation-delay: 0.1s;
}

.mq-type-line-two {
  position: relative;
  animation-duration: 1.25s;
  animation-delay: 1.15s;
}

.mq-type-line-two::after {
  content: "";
  width: 3px;
  height: 0.86em;
  display: inline-block;
  margin-left: 5px;
  border-radius: 999px;
  background: var(--mq-blue);
  vertical-align: -0.07em;
  opacity: 0;
  animation: mqCursorBlink 0.82s step-end 2.35s infinite;
}

@keyframes mqTypeReveal {
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes mqCursorBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.mq-hero-desc {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--mq-muted);
  font-size: 17px;
  line-height: 1.8;
}

.mq-hero-actions,
.mq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mq-hero-actions {
  justify-content: center;
}

.mq-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  color: var(--mq-heading);
  font-family: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.mq-btn-primary {
  background: var(--mq-blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.24);
}

.mq-btn-secondary {
  background: #fff;
  color: var(--mq-blue);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.mq-btn-light {
  background: #fff;
  color: var(--mq-blue);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.15);
}

.mq-btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.mq-hero-choice-actions {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 0 auto;
  align-items: stretch;
}

.mq-hero-choice-card {
  min-width: 0;
  min-height: 132px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 18px;
  text-align: left;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.mq-hero-choice-card:hover {
  transform: translateY(-4px);
}

.mq-hero-choice-card-self {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(191, 219, 254, 0.96);
  color: #0f172a;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.mq-hero-choice-card-self:hover {
  background: #f8fbff;
  border-color: #93c5fd;
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.13);
}

.mq-hero-choice-card-request {
  background: linear-gradient(135deg, #2563eb 0%, #0f6bf2 100%);
  border: 1px solid rgba(37, 99, 235, 0.9);
  color: #ffffff;
  box-shadow: 0 24px 56px rgba(37, 99, 235, 0.28);
}

.mq-hero-choice-card-request:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.36);
}

.mq-hero-choice-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  flex: 0 0 auto;
}

.mq-hero-choice-card-self .mq-hero-choice-icon {
  background: #eff6ff;
  color: #2563eb;
}

.mq-hero-choice-card-request .mq-hero-choice-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.mq-hero-choice-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-hero-choice-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.mq-hero-choice-copy strong {
  color: inherit;
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
}

.mq-hero-choice-copy em,
.mq-hero-choice-copy small {
  font-style: normal;
  line-height: 1.45;
  word-break: keep-all;
}

.mq-hero-choice-copy em {
  color: #475569;
  font-size: 14.5px;
  font-weight: 800;
}

.mq-hero-choice-copy small {
  color: #64748b;
  font-size: 13px;
  font-weight: 760;
}

.mq-hero-choice-card-request .mq-hero-choice-copy em,
.mq-hero-choice-card-request .mq-hero-choice-copy small {
  color: rgba(255, 255, 255, 0.9);
}

.mq-hero-choice-arrow {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: currentColor;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  transition: transform 0.22s ease;
}

.mq-hero-choice-card:hover .mq-hero-choice-arrow {
  transform: translateX(4px);
}

.mq-hero-choice-card-self .mq-hero-choice-arrow {
  background: #eff6ff;
  color: #2563eb;
}

.mq-hero-choice-card-request .mq-hero-choice-arrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.mq-hero-choice-note {
  margin: 16px auto 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 760;
  text-align: center;
  word-break: keep-all;
}

.mq-hero-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.mq-hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #53627a;
  background: #fff;
  border: 1px solid var(--mq-line);
  font-size: 12.5px;
  font-weight: 800;
}

.mq-hero-trust {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
}

.mq-hero-trust article {
  display: grid;
  gap: 8px;
  padding: 20px 18px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.045);
  text-align: left;
}

.mq-hero-trust strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mq-heading);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.mq-trust-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 14px;
  line-height: 1;
}

.mq-hero-trust span {
  color: var(--mq-muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.mq-hero-visual {
  position: relative;
  min-height: 430px;
}

.mq-dashboard-card {
  border-radius: var(--mq-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 232, 247, 0.95);
  box-shadow: var(--mq-shadow);
}

.mq-main-chart {
  width: min(100%, 460px);
  margin-left: auto;
  padding: 26px;
}

.mq-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  color: var(--mq-muted);
  font-size: 13px;
  font-weight: 850;
}

.mq-dashboard-top strong {
  color: var(--mq-green);
}

.mq-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.mq-metrics div {
  padding: 14px 12px;
  border-radius: 12px;
  background: #f3f7ff;
}

.mq-metrics b {
  display: block;
  color: var(--mq-blue);
  font-size: 24px;
  line-height: 1;
}

.mq-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--mq-muted);
  font-size: 12px;
  font-weight: 800;
}

.mq-chart-line {
  height: 120px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 9px;
  padding: 18px 0 0;
  border-top: 1px solid var(--mq-line);
}

.mq-chart-line span {
  display: block;
  min-height: 28px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #8bb7ff, #2563eb);
}

.mq-chart-line span:nth-child(1) { height: 34px; }
.mq-chart-line span:nth-child(2) { height: 54px; }
.mq-chart-line span:nth-child(3) { height: 42px; }
.mq-chart-line span:nth-child(4) { height: 72px; }
.mq-chart-line span:nth-child(5) { height: 62px; }
.mq-chart-line span:nth-child(6) { height: 92px; }

.mq-alert-card {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: min(82%, 340px);
  padding: 20px;
}

.mq-alert-title {
  margin-bottom: 14px;
  color: var(--mq-heading);
  font-size: 14px;
  font-weight: 900;
}

.mq-alert-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mq-alert-card li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  color: #344154;
  font-size: 12.5px;
  font-weight: 800;
}

.mq-alert-card i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mq-blue);
}

.mq-alert-card li:nth-child(2) i { background: #f59e0b; }
.mq-alert-card li:nth-child(3) i { background: var(--mq-green); }

.mq-alert-card em {
  color: #97a3b4;
  font-style: normal;
  font-size: 11px;
}

.mq-floating-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mq-line);
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--mq-soft-shadow);
}

.mq-chip-one {
  top: 46px;
  left: 22px;
}

.mq-chip-two {
  top: 150px;
  right: 46px;
}

.mq-section {
  padding: 92px 0;
  background: #fff;
  border-bottom: 1px solid var(--mq-line);
}

.mq-section:nth-of-type(even) {
  background: var(--mq-bg);
}

.mq-section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.mq-section-head h2,
.mq-section-copy h2,
.mq-system-copy h2,
.mq-faq-side h2 {
  margin: 0 0 14px;
  color: var(--mq-heading);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 950;
}

.mq-section-head p,
.mq-section-copy p,
.mq-system-copy p,
.mq-faq-side p {
  margin: 0;
  color: var(--mq-muted);
  font-size: 16px;
  line-height: 1.8;
}

.mq-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: 48px;
}

.mq-photo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 18px;
  background-image: var(--mq-image-workspace);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--mq-line);
  box-shadow: var(--mq-shadow);
}

.mq-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.08) 46%, rgba(255,255,255,0.02) 100%);
}

.mq-photo-overlay {
  position: absolute;
  inset: 26px;
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 14px;
}

.mq-photo-overlay span {
  width: min(210px, 70%);
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--mq-line);
  color: var(--mq-heading);
  font-weight: 900;
  box-shadow: var(--mq-soft-shadow);
}

.mq-photo-overlay span:nth-child(2) {
  justify-self: start;
}

.mq-problem-panel {
  margin-top: -22px;
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: var(--mq-soft-shadow);
}

.mq-problem-panel h3 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--mq-heading);
  font-size: 22px;
  font-weight: 950;
}

.mq-problem-grid,
.mq-feature-grid,
.mq-target-grid,
.mq-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mq-problem-grid article,
.mq-feature-grid article,
.mq-target-grid article,
.mq-process-grid article {
  min-width: 0;
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.mq-problem-grid strong,
.mq-target-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mq-heading);
  font-size: 15px;
  font-weight: 950;
}

.mq-problem-grid p,
.mq-target-grid span,
.mq-process-grid p,
.mq-feature-grid p {
  margin: 0;
  color: var(--mq-muted);
  font-size: 14px;
  line-height: 1.7;
}

.mq-flow-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.mq-flow-step i {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.09);
  color: var(--mq-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.mq-rule-example {
  position: relative;
  max-width: 760px;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 34px auto;
  padding: 26px 28px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.96)),
    #fff;
  background-size: 180% 180%, auto;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
  text-align: center;
  translate: 0 0;
  scale: 1;
  will-change: translate, scale, box-shadow;
  animation:
    mqRuleExampleFloat 4.8s ease-in-out infinite,
    mqRuleExampleGlow 5.6s ease-in-out infinite;
}

.mq-rule-example::before,
.mq-rule-example::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 28px;
  background: rgba(37, 99, 235, 0.24);
  transform: translateX(-50%);
}

.mq-rule-example::before {
  top: -28px;
}

.mq-rule-example::after {
  bottom: -28px;
}

.mq-rule-shine {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 14%, rgba(255, 255, 255, 0.84) 43%, transparent 68%);
  opacity: 0.72;
  transform: translateX(-80%);
  animation: mqRuleShineSweep 5.8s ease-in-out infinite;
}

.mq-rule-example > span,
.mq-rule-example strong,
.mq-rule-bridge {
  position: relative;
  z-index: 1;
}

.mq-rule-example > span {
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 950;
}

.mq-rule-example strong {
  color: var(--mq-heading);
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.35;
  font-weight: 950;
}

.mq-rule-bridge {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mq-rule-bridge small {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  color: #315fbd;
  border: 1px solid rgba(37, 99, 235, 0.16);
  font-size: 12px;
  font-weight: 900;
  animation: mqRuleBadgeFloat 4.8s ease-in-out infinite;
}

.mq-rule-bridge small:nth-child(2) {
  animation-delay: 1.15s;
}

@keyframes mqRuleExampleFloat {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }

  50% {
    translate: 0 -9px;
    scale: 1.006;
  }
}

@keyframes mqRuleExampleGlow {
  0%,
  100% {
    background-position: 0% 50%, center;
    box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08);
    border-color: rgba(37, 99, 235, 0.14);
  }

  50% {
    background-position: 100% 50%, center;
    box-shadow: 0 30px 76px rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.34);
  }
}

@keyframes mqRuleShineSweep {
  0%,
  22%,
  100% {
    transform: translateX(-80%);
    opacity: 0;
  }

  45% {
    opacity: 0.58;
  }

  68% {
    transform: translateX(80%);
    opacity: 0;
  }
}

@keyframes mqRuleBadgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.mq-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.mq-flow::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(37, 99, 235, 0.2);
}

.mq-flow-step {
  position: relative;
  z-index: 1;
  min-height: 156px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  padding: 18px;
  text-align: left;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mq-line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.mq-flow-step:not(:last-child)::after {
  display: none;
}

.mq-flow-step b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--mq-blue-soft);
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 950;
}

.mq-flow-step strong {
  color: var(--mq-heading);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.mq-flow-step span {
  color: var(--mq-muted);
  font-size: 12.5px;
  line-height: 1.58;
}

.mq-flow-note {
  margin: 34px auto 0;
  max-width: 820px;
  display: grid;
  gap: 4px;
  padding: 20px 24px;
  border-radius: 12px;
  color: #245cc7;
  background: #eef5ff;
  text-align: center;
  font-size: 15px;
}

.mq-flow-note strong {
  color: var(--mq-heading);
  font-size: 17px;
  font-weight: 950;
}

.mq-flow-note span {
  color: #245cc7;
  font-weight: 850;
}

.mq-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mq-feature-grid article {
  min-height: 180px;
}

.mq-feature-grid i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 11px;
  background: var(--mq-blue-soft);
  color: var(--mq-blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.mq-feature-grid h3,
.mq-process-grid h3 {
  margin: 0 0 8px;
  color: var(--mq-heading);
  font-size: 17px;
  font-weight: 950;
}

.mq-feature-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.mq-module-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(430px, 1.26fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: 24px;
}

.mq-module-copy h2 {
  margin: 0 0 18px;
  color: var(--mq-heading);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.22;
  font-weight: 950;
}

.mq-module-copy h2 span {
  color: var(--mq-blue);
}

.mq-module-copy p {
  margin: 0;
  color: var(--mq-muted);
  font-size: 16px;
  line-height: 1.86;
}

.mq-module-callout {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: var(--mq-soft-shadow);
}

.mq-module-callout b {
  color: var(--mq-heading);
  font-size: 15px;
  font-weight: 950;
}

.mq-module-callout span {
  color: var(--mq-muted);
  font-size: 14px;
  line-height: 1.72;
}

.mq-module-map {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 4px 0;
}

.mq-module-root,
.mq-module-complete {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  text-align: center;
  font-weight: 950;
}

.mq-module-root {
  width: min(100%, 430px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--mq-line);
  color: var(--mq-heading);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.mq-module-root::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -22px;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(37, 99, 235, 0.58);
  font-size: 15px;
  line-height: 1;
}

.mq-module-root span {
  color: var(--mq-muted);
  font-size: 13px;
}

.mq-module-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 22px;
  padding: 4px 0 0;
}

.mq-module-grid::before {
  content: "";
  position: absolute;
  inset: -11px 8.33% 1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(16.666% - 0.5px), rgba(37,99,235,0.16) calc(16.666% - 0.5px), rgba(37,99,235,0.16) calc(16.666% + 0.5px), transparent calc(16.666% + 0.5px)),
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(37,99,235,0.16) calc(50% - 0.5px), rgba(37,99,235,0.16) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(83.333% - 0.5px), rgba(37,99,235,0.16) calc(83.333% - 0.5px), rgba(37,99,235,0.16) calc(83.333% + 0.5px), transparent calc(83.333% + 0.5px));
  background-size: 100% 7px;
  opacity: 0.9;
}

.mq-module-card {
  position: relative;
  z-index: 1;
  grid-column: span 2;
  min-height: 126px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--mq-line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

.mq-module-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  transform: translateY(-50%);
  color: rgba(37, 99, 235, 0.62);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.mq-module-card::before {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -23px;
  z-index: 2;
  transform: translateX(-50%);
  color: rgba(37, 99, 235, 0.48);
  font-size: 14px;
  line-height: 1;
}

.mq-module-card:nth-child(3)::after,
.mq-module-card:nth-child(6)::after {
  display: none;
}

.mq-module-card i {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mq-blue-soft);
  color: var(--mq-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.mq-module-card strong {
  color: var(--mq-heading);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 950;
}

.mq-module-card p {
  margin: 0;
  color: var(--mq-muted);
  font-size: 13.5px;
  line-height: 1.62;
}

.mq-module-wide {
  grid-column: span 3;
}

.mq-module-card:nth-child(8)::after {
  display: none;
}

.mq-module-complete {
  width: min(100%, 520px);
  margin: 0 auto;
  background: linear-gradient(135deg, #2563eb, #0f6fff);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}

.mq-module-complete::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -17px;
  width: 1px;
  height: 17px;
  transform: translateX(-50%);
  background: rgba(37, 99, 235, 0.22);
}

.mq-module-footnote {
  margin: -6px 0 0;
  color: var(--mq-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.mq-module-examples {
  display: grid;
  gap: 12px;
}

.mq-module-examples h3 {
  margin: 0;
  color: var(--mq-heading);
  font-size: 24px;
  font-weight: 950;
}

.mq-module-examples > p {
  margin: -4px 0 8px;
  color: var(--mq-muted);
  font-size: 14px;
  line-height: 1.65;
}

.mq-module-examples article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  align-items: center;
  gap: 7px 12px;
  min-height: 104px;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.mq-example-photo {
  grid-row: 1 / span 3;
  width: 70px;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mq-blue-soft);
  border: 1px solid rgba(223, 232, 247, 0.92);
}

.mq-example-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.mq-module-examples article:nth-of-type(1) .mq-example-photo img {
  object-position: 50% 28%;
}

.mq-module-examples article:nth-of-type(2) .mq-example-photo img {
  object-position: 52% 30%;
}

.mq-module-examples article:nth-of-type(3) .mq-example-photo img {
  object-position: 64% 42%;
}

.mq-module-examples article:nth-of-type(4) .mq-example-photo img {
  object-position: 50% 32%;
}

.mq-module-examples b {
  color: var(--mq-heading);
  font-size: 15px;
  font-weight: 950;
}

.mq-module-examples span {
  color: var(--mq-muted);
  font-size: 13px;
  line-height: 1.55;
}

.mq-module-examples em {
  color: var(--mq-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
}

.mq-module-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  padding: 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--mq-line);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.mq-module-benefits article {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 0 12px;
}

.mq-module-benefits article:not(:last-child) {
  border-right: 1px solid var(--mq-line);
}

.mq-module-benefits b {
  color: var(--mq-heading);
  font-size: 14px;
  font-weight: 950;
}

.mq-module-benefits span {
  color: var(--mq-muted);
  font-size: 13px;
  line-height: 1.55;
}

.mq-system-section {
  background: var(--mq-bg);
}

.mq-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: center;
  gap: 52px;
}

.mq-inline-callout {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--mq-line);
  color: var(--mq-blue);
  font-size: 14px;
  font-weight: 850;
}

.mq-system-board {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  padding: 0;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: var(--mq-shadow);
}

.mq-board-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04);
}

.mq-system-board::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 24%, transparent 66%, rgba(6,19,41,0.28) 100%);
}

.mq-board-top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-width: min(320px, calc(100% - 36px));
  padding: 10px 14px;
  margin-bottom: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(223, 232, 247, 0.9);
  backdrop-filter: blur(14px);
  color: var(--mq-muted);
  font-size: 13px;
  font-weight: 900;
}

.mq-board-top strong {
  color: var(--mq-blue);
}

.mq-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mq-board-grid div {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--mq-line);
  color: var(--mq-heading);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.mq-board-cta {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0 18px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.94);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
  backdrop-filter: blur(12px);
}

.mq-program-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4fb 100%);
}

.mq-program-section .mq-container {
  width: min(100% - 56px, 1180px);
}

.mq-program-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}

.mq-program-copy h2 {
  margin-bottom: 20px;
}

.mq-program-copy {
  max-width: 760px;
  margin: 0 auto;
}

.mq-program-copy p {
  margin: 0 auto;
}

.mq-program-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.mq-program-callout {
  max-width: 560px;
  margin-top: 22px;
  margin-right: auto;
  margin-left: auto;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 219, 254, 0.82);
  color: var(--mq-heading);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.mq-program-preview {
  display: none;
}

.mq-program-preview svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-desktop-window {
  overflow: hidden;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid rgba(176, 199, 235, 0.86);
  box-shadow: 0 34px 86px rgba(15, 23, 42, 0.18);
}

.mq-desktop-titlebar {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 227, 239, 0.92);
  color: #384a66;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11.5px;
}

.mq-desktop-titlebar strong {
  min-width: 0;
  overflow: hidden;
  color: #31415b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mq-window-controls {
  display: inline-flex;
  gap: 6px;
}

.mq-window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mq-window-controls span:nth-child(1) {
  background: #ef4444;
}

.mq-window-controls span:nth-child(2) {
  background: #f59e0b;
}

.mq-window-controls span:nth-child(3) {
  background: #22c55e;
}

.mq-window-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475671;
  font-size: 11px;
  white-space: nowrap;
}

.mq-window-status span + span::before {
  content: "|";
  margin-right: 10px;
  color: #94a3b8;
}

.mq-desktop-body {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  min-height: 560px;
}

.mq-desktop-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px 16px 18px;
  background: #eef4fb;
  border-right: 1px solid rgba(176, 199, 235, 0.72);
}

.mq-sidebar-brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.mq-sidebar-brand img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.mq-sidebar-brand strong {
  display: block;
  color: var(--mq-heading);
  font-size: 16px;
  line-height: 1.15;
  font-weight: 950;
}

.mq-sidebar-brand span {
  display: block;
  margin-top: 2px;
  color: #516075;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
}

.mq-sidebar-strategy {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(191, 219, 254, 0.9);
}

.mq-sidebar-strategy span {
  color: #64748b;
  font-size: 11px;
  font-weight: 750;
}

.mq-sidebar-strategy strong {
  color: #10203b;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 950;
}

.mq-sidebar-menu {
  display: grid;
  gap: 6px;
}

.mq-sidebar-menu span {
  min-height: 36px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 12px;
  color: #45546b;
  font-size: 12px;
  font-weight: 800;
}

.mq-sidebar-menu span:nth-child(2) {
  background: #dceaff;
  color: var(--mq-blue);
  font-weight: 950;
}

.mq-sidebar-menu svg {
  width: 16px;
  height: 16px;
}

.mq-sidebar-status-card {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(239, 246, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.92);
}

.mq-sidebar-status-card span {
  color: #64748b;
  font-size: 11px;
  font-weight: 800;
}

.mq-sidebar-status-card strong {
  color: #10203b;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 950;
}

.mq-sidebar-status-card b {
  color: #059669;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 950;
}

.mq-sidebar-status-card small {
  color: #1d4ed8;
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 850;
}

.mq-desktop-main {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  background: #fbfdff;
}

.mq-preview-header {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.mq-preview-header > div {
  min-width: 0;
}

.mq-preview-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mq-blue);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.mq-preview-kicker svg {
  width: 15px;
  height: 15px;
}

.mq-preview-header h3 {
  margin: 8px 0 4px;
  color: var(--mq-heading);
  font-size: clamp(25px, 2.8vw, 31px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: 0;
}

.mq-preview-header p {
  max-width: 560px;
  margin: 0;
  color: #4d5c73;
  font-size: 13.5px;
  line-height: 1.6;
}

.mq-preview-running {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #dcfce7;
  color: #078143;
  font-size: 12px;
  font-weight: 950;
}

.mq-preview-metrics {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.mq-preview-metric {
  min-width: 0;
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.88);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.028);
}

.mq-preview-metric span {
  color: #526176;
  font-size: 11px;
  font-weight: 800;
}

.mq-preview-metric strong {
  color: #145edb;
  font-size: 22px;
  line-height: 1.05;
  font-weight: 950;
}

.mq-preview-metric:nth-child(4) strong,
.mq-preview-metric:nth-child(5) strong {
  color: #07905a;
}

.mq-preview-metric i {
  color: #64748b;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.mq-preview-module-flow {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.88);
}

.mq-preview-flow-card {
  min-width: 0;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(191, 219, 254, 0.88);
}

.mq-preview-flow-card h4 {
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.mq-preview-flow-card .mq-preview-module-flow {
  padding: 0;
  border: 0;
  background: transparent;
}

.mq-preview-module-flow span {
  flex: 1 1 0;
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  gap: 5px 8px;
  padding: 10px 11px;
  border-radius: 13px;
  background: #f7fbff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 950;
}

.mq-preview-module-flow span em {
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1d4ed8;
  font-size: 11px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
}

.mq-preview-module-flow span strong {
  min-width: 0;
  color: #0f172a;
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 950;
  white-space: nowrap;
}

.mq-preview-module-flow span small {
  min-width: 0;
  color: #64748b;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 780;
  word-break: keep-all;
}

.mq-preview-module-flow b {
  flex: 0 0 auto;
  color: #64748b;
  font-size: 18px;
  line-height: 1;
}

.mq-preview-condition-flow {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(191, 219, 254, 0.82);
}

.mq-preview-condition-label {
  flex: 0 0 auto;
  color: #1d4ed8;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.mq-preview-condition-chips {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.mq-preview-condition-chips b {
  color: #64748b;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.mq-preview-condition-chip {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
}

.mq-preview-condition-chip-alert {
  background: #fff7ed;
  border-color: #fdba74;
  color: #ea580c;
}

.mq-preview-condition-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #059669;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.mq-preview-condition-status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.mq-preview-workspace {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: 14px;
}

.mq-preview-card {
  min-width: 0;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.036);
}

.mq-preview-chart-card {
  grid-column: auto;
  overflow: hidden;
}

.mq-preview-chart-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.mq-signal-card {
  grid-column: auto;
}

.mq-preview-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.mq-preview-card-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mq-heading);
  font-size: 14px;
  font-weight: 950;
}

.mq-preview-card-head svg {
  width: 16px;
  height: 16px;
  color: var(--mq-blue);
}

.mq-preview-card-head i {
  color: #64748b;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.mq-program-preview .mq-mini-chart {
  width: 100%;
  height: auto;
  display: block;
  color: #bfdbfe;
}

.mq-mini-chart path:first-child,
.mq-mini-chart path:nth-child(2) {
  stroke: #d8e7fb;
  stroke-width: 1.4;
}

.mq-chart-grid {
  stroke: #e8f1ff;
  stroke-width: 1;
}

.mq-candles path {
  stroke: #0ea5e9;
  stroke-width: 2;
}

.mq-candles rect {
  fill: rgba(37, 99, 235, 0.2);
  stroke: #2563eb;
  stroke-width: 1;
}

.mq-candles rect:nth-of-type(even) {
  fill: rgba(239, 68, 68, 0.18);
  stroke: #ef4444;
}

.mq-chart-line {
  fill: none;
  stroke: #2563eb;
  stroke-width: 3;
}

.mq-signal-point {
  fill: #2563eb;
  stroke: #fff;
  stroke-width: 3;
}

.mq-mini-chart text {
  fill: #2563eb;
  font-size: 14px;
  font-weight: 900;
  stroke: none;
}

.mq-condition-rows {
  display: grid;
  gap: 0;
  margin: 0;
}

.mq-condition-rows div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 7px 8px;
  border-radius: 8px;
}

.mq-condition-rows div:nth-child(odd) {
  background: #f7fbff;
}

.mq-condition-rows dt {
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
}

.mq-condition-rows dd {
  margin: 0;
  color: #10203b;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.mq-signal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mq-signal-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #eef4fb;
}

.mq-signal-list li:last-child {
  border-bottom: 0;
}

.mq-signal-list b {
  color: var(--mq-heading);
  font-size: 12px;
  font-weight: 950;
}

.mq-signal-list span {
  min-width: 0;
  overflow: hidden;
  color: #536176;
  font-size: 11.5px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mq-signal-list i {
  color: #64748b;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.mq-signal-list .is-good {
  color: #059669;
}

.mq-signal-list .is-check {
  color: var(--mq-blue);
}

.mq-signal-list .is-stable {
  color: #475569;
}

.mq-record-card {
  background: #f8fbff;
}

.mq-record-card .mq-preview-card-head span {
  color: #0f172a;
}

.mq-record-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mq-record-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(219, 234, 254, 0.92);
}

.mq-record-list b {
  color: #2563eb;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.mq-record-list span {
  min-width: 0;
  overflow: hidden;
  color: #334155;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mq-console-card {
  background: #172235;
  border-color: #26364f;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.mq-console-card .mq-preview-card-head span {
  color: #c7d2fe;
}

.mq-console-card pre {
  overflow: hidden;
  margin: 0;
  color: #dbeafe;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10.5px;
  line-height: 1.62;
  white-space: pre;
}

.mq-console-card code {
  font: inherit;
}

.mq-program-steps {
  margin-top: 42px;
}

.mq-program-steps h3 {
  margin: 0 0 18px;
  color: var(--mq-heading);
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 950;
}

.mq-program-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mq-program-step-grid article {
  min-width: 0;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(191, 219, 254, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

.mq-program-step-grid b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 950;
}

.mq-program-step-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mq-heading);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 950;
}

.mq-program-step-grid p {
  margin: 0;
  color: #536176;
  font-size: 14px;
  line-height: 1.72;
}

.mq-sample-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 32px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mq-sample-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mq-sample-modal-open {
  overflow: hidden;
}

.mq-sample-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 41, 0.56);
  backdrop-filter: blur(14px);
}

.mq-sample-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1280px);
  max-height: min(92vh, 920px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background: #f8fbff;
  border: 1px solid rgba(191, 219, 254, 0.88);
  box-shadow: 0 36px 92px rgba(0, 0, 0, 0.34);
  transform: translateY(12px) scale(0.985);
  transition: transform 180ms ease;
}

.mq-sample-modal.is-open .mq-sample-modal-panel {
  transform: translateY(0) scale(1);
}

.mq-sample-modal-head {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 239, 0.92);
}

.mq-sample-modal-head p {
  margin: 0 0 3px;
  color: var(--mq-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.mq-sample-modal-head h2 {
  margin: 0;
  color: var(--mq-heading);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 950;
}

.mq-sample-modal-close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 50%;
  background: #fff;
  color: #334155;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mq-sample-modal-close:hover {
  background: #eef5ff;
  color: var(--mq-blue);
  transform: translateY(-1px);
}

.mq-sample-modal-image,
.mq-sample-modal-preview {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: 18px;
}

.mq-sample-modal-preview .mq-desktop-window {
  width: min(100%, 1180px);
  margin: 0 auto;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.mq-sample-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(191, 219, 254, 0.78);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

@media (max-width: 1180px) {
  .mq-program-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mq-program-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .mq-program-actions {
    justify-content: center;
  }

  .mq-program-callout {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .mq-program-preview {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .mq-desktop-titlebar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .mq-window-status {
    display: none;
  }

  .mq-desktop-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mq-desktop-sidebar {
    display: none;
  }

  .mq-desktop-main {
    padding: 20px;
  }

  .mq-preview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mq-preview-metric:nth-child(n+4) {
    display: none;
  }

  .mq-preview-workspace {
    grid-template-columns: 1fr;
  }

  .mq-console-card {
    display: none;
  }

  .mq-preview-chart-card {
    display: block;
  }

  .mq-condition-card,
  .mq-signal-card {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .mq-sample-modal {
    padding: 14px;
  }

  .mq-sample-modal-panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 20px;
  }

  .mq-sample-modal-head {
    padding: 14px 14px 12px;
  }

  .mq-sample-modal-head h2 {
    font-size: 17px;
  }

  .mq-sample-modal-close {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .mq-sample-modal-image,
  .mq-sample-modal-preview {
    padding: 10px;
  }

  .mq-sample-modal-image img {
    border-radius: 14px;
  }

  .mq-program-section .mq-container {
    width: min(100% - 32px, 1320px);
  }

  .mq-program-copy h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .mq-program-copy p br {
    display: none;
  }

  .mq-program-actions {
    flex-direction: column;
  }

  .mq-program-actions .mq-btn {
    width: 100%;
  }

  .mq-program-callout {
    padding: 16px;
    font-size: 14px;
  }

  .mq-desktop-window {
    border-radius: 18px;
  }

  .mq-desktop-titlebar {
    min-height: 42px;
    gap: 10px;
    padding: 0 12px;
  }

  .mq-window-controls span {
    width: 8px;
    height: 8px;
  }

  .mq-desktop-titlebar strong {
    font-size: 10.5px;
  }

  .mq-desktop-main {
    gap: 14px;
    padding: 16px;
  }

  .mq-preview-header {
    display: grid;
    gap: 10px;
  }

  .mq-preview-header h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .mq-preview-header p {
    font-size: 13px;
  }

  .mq-preview-running {
    width: fit-content;
    min-height: 30px;
    padding: 0 14px;
  }

  .mq-preview-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mq-preview-metric {
    padding: 12px 10px;
  }

  .mq-preview-metric span {
    font-size: 10.5px;
  }

  .mq-preview-metric strong {
    font-size: 21px;
  }

  .mq-preview-metric i {
    font-size: 10.5px;
  }

  .mq-preview-module-flow {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 8px;
    overflow: visible;
    padding: 12px;
  }

  .mq-preview-flow-card .mq-preview-module-flow {
    padding: 0;
  }

  .mq-preview-module-flow span {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 10px;
    font-size: 12px;
  }

  .mq-preview-module-flow span strong {
    white-space: normal;
  }

  .mq-preview-module-flow b {
    justify-self: center;
    font-size: 16px;
    transform: rotate(90deg);
  }

  .mq-preview-condition-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .mq-preview-condition-label {
    font-size: 12px;
  }

  .mq-preview-condition-chips {
    gap: 6px;
  }

  .mq-preview-condition-chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11.5px;
  }

  .mq-preview-condition-status {
    font-size: 11.5px;
  }

  .mq-preview-desktop-only {
    display: none !important;
  }

  .mq-preview-card {
    padding: 14px;
    border-radius: 14px;
  }

  .mq-preview-card-head {
    margin-bottom: 10px;
  }

  .mq-preview-card-head span {
    font-size: 13.5px;
  }

  .mq-preview-chart-image {
    border-radius: 10px;
  }

  .mq-condition-rows div {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 8px;
  }

  .mq-condition-rows div:nth-child(n+5) {
    display: none;
  }

  .mq-condition-rows dt,
  .mq-signal-list span,
  .mq-signal-list i {
    font-size: 10.8px;
  }

  .mq-condition-rows dd,
  .mq-signal-list b {
    font-size: 11.5px;
  }

  .mq-signal-list li {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 7px;
  }

  .mq-signal-list i {
    grid-column: 2;
  }

  .mq-signal-list li:nth-child(n+4) {
    display: none;
  }

  .mq-program-steps {
    margin-top: 32px;
  }

  .mq-program-steps h3 {
    font-size: 21px;
  }

  .mq-program-step-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mq-program-step-grid article {
    padding: 20px;
    border-radius: 18px;
  }
}

.mq-target-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mq-founder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  padding: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%);
  border: 1px solid rgba(219, 227, 239, 0.9);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.08);
}

.mq-founder-photo {
  margin: 0;
  width: min(100%, 240px);
  max-width: 100%;
  justify-self: center;
  overflow: hidden;
  text-align: center;
}

.mq-founder-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.13;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 18%;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.mq-founder-photo figcaption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--mq-heading);
}

.mq-founder-photo figcaption strong {
  font-size: 16px;
  font-weight: 950;
}

.mq-founder-photo figcaption span {
  color: var(--mq-muted);
  font-size: 13px;
  font-weight: 850;
}

.mq-founder-copy h3 {
  margin: 0 0 12px;
  color: var(--mq-heading);
  font-size: 30px;
  font-weight: 950;
}

.mq-founder-copy p {
  margin: 0 0 18px;
  color: var(--mq-muted);
  line-height: 1.8;
  font-size: 15px;
  font-weight: 750;
}

.mq-founder-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mq-founder-copy li,
.mq-safety-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mq-blue-soft);
  color: var(--mq-blue);
  font-size: 12.5px;
  font-weight: 900;
}

.mq-safety-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mq-safety-strip span {
  justify-content: flex-start;
  gap: 8px;
  min-height: 60px;
  border-radius: 14px;
  padding: 12px 16px;
  background: #f8fbff;
  border: 1px solid var(--mq-line);
  color: var(--mq-heading);
  text-align: left;
}

.mq-safety-strip span::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--mq-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.mq-process-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mq-process-grid article {
  min-height: 172px;
}

.mq-process-grid b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--mq-blue);
  color: #fff;
  font-size: 13px;
}

.mq-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 42px;
  align-items: start;
}

.mq-faq-side {
  position: sticky;
  top: 96px;
}

.mq-faq-list {
  display: grid;
  gap: 12px;
}

.mq-faq-list .faq-item {
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: none;
}

.mq-faq-list .faq-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--mq-heading);
  font-size: 16px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.mq-faq-list .faq-content {
  display: none;
  padding: 0 20px 20px;
}

.mq-faq-list .faq-item.active .faq-content {
  display: block;
}

.mq-faq-list .faq-content p {
  margin: 0;
  color: var(--mq-muted);
  font-size: 14.5px;
}

.mq-final-cta {
  padding: 92px 0;
  background: #fff;
}

.mq-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.mq-cta-box {
  position: sticky;
  top: 96px;
  padding: 38px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(29, 127, 249, 0.94)),
    linear-gradient(120deg, #1e40af, #2563eb);
  color: #fff;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.28);
}

.mq-cta-box .mq-section-label {
  color: rgba(255, 255, 255, 0.82);
}

.mq-cta-box h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
}

.mq-cta-box p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.mq-consult-card {
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--mq-line);
  box-shadow: var(--mq-shadow);
  scroll-margin-top: 92px;
}

.mq-consult-card h3 {
  margin: 0 0 20px;
  color: var(--mq-heading);
  font-size: 28px;
  line-height: 1.25;
}

.consult-intro-note {
  margin: -8px 0 22px;
  color: var(--mq-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.mq-consult-card .form-field input,
.mq-consult-card .form-field select,
.mq-consult-card .form-field textarea {
  border-radius: 10px;
  box-shadow: none;
}

.mq-consult-card .contact-method label {
  border-radius: 10px;
}

.mq-footer {
  padding: 40px 0 34px;
  background: #f8fbff;
  border-top: 1px solid var(--mq-line);
}

.mq-footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
}

.mq-footer-logo {
  margin-bottom: 12px;
}

.mq-footer p {
  max-width: 520px;
  margin: 0;
  color: var(--mq-muted);
  font-size: 13px;
  line-height: 1.7;
}

.mq-footer-links {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.mq-footer-links a {
  color: var(--mq-muted);
  font-size: 13px;
  font-weight: 850;
}

.mq-footer-links a:hover {
  color: var(--mq-blue);
}

.mq-footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--mq-line);
  color: var(--mq-muted);
  font-size: 12.5px;
}

/* Visual refinement */
body {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 44%, #ffffff 100%);
  color: #243044;
  text-rendering: optimizeLegibility;
}

.mq-container {
  width: min(100% - 56px, 1180px);
}

.mq-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(191, 219, 254, 0.8);
}

.mq-nav {
  min-height: 68px;
}

.mq-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(31, 111, 235, 0.12);
}

.mq-logo-text strong {
  font-size: 16px;
  letter-spacing: 0;
}

.mq-logo-text small {
  font-size: 11px;
  color: #56657a;
}

.mq-nav-menu {
  gap: 30px;
  color: #5f6f84;
  font-size: 14px;
  font-weight: 800;
}

.mq-nav-menu a {
  transition: color 0.18s ease;
}

.mq-nav-cta,
.mq-btn {
  border-radius: 8px;
}

.mq-nav-cta {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.mq-hero {
  min-height: 720px;
  padding: 92px 0 86px;
  background-image:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
  background-position: center;
}

.mq-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 0;
}

.mq-hero-copy {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.mq-eyebrow,
.mq-section-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d5fd0;
  font-size: 12px;
  font-weight: 900;
}

.mq-section-head .mq-section-label {
  margin-left: auto;
  margin-right: auto;
}

.mq-hero-copy .mq-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.mq-hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
  font-size: clamp(54px, 5.4vw, 82px);
  line-height: 1.07;
  color: #07111f;
}

.mq-hero-desc {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #435169;
  font-size: 18px;
  line-height: 1.78;
}

.mq-hero-copy .mq-hero-desc {
  margin-bottom: 8px;
}

.mq-hero-copy .mq-hero-desc-sub {
  margin-bottom: 28px;
}

.mq-mobile-break {
  display: inline;
}

.mq-mobile-break::before {
  content: " ";
}

.mq-hero-trust article {
  border-radius: 10px;
}

.mq-btn {
  min-height: 50px;
  padding: 0 22px;
  font-size: 14.5px;
}

.mq-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d7ff9);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.mq-btn-secondary {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
}

.mq-hero-points {
  gap: 9px;
}

.mq-hero-points span {
  min-height: 36px;
  border-radius: 999px;
  color: #40506a;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mq-dashboard-card {
  border-radius: 10px;
  border-color: rgba(219, 227, 239, 0.86);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
  backdrop-filter: blur(16px);
}

.mq-main-chart {
  width: min(100%, 485px);
  padding: 28px;
}

.mq-metrics div,
.mq-floating-chip,
.mq-alert-card {
  border-radius: 8px;
}

.mq-section {
  padding: 104px 0;
  border-bottom-color: rgba(219, 227, 239, 0.76);
}

.mq-section:nth-of-type(even) {
  background: #f6f9ff;
}

.mq-feature-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.mq-section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.mq-section-head h2,
.mq-section-copy h2,
.mq-system-copy h2,
.mq-faq-side h2 {
  color: #07111f;
  font-size: clamp(32px, 3.7vw, 46px);
  line-height: 1.2;
}

.mq-section-head p,
.mq-section-copy p,
.mq-system-copy p,
.mq-faq-side p {
  max-width: 680px;
  color: #4b5a70;
  font-size: 16.5px;
  line-height: 1.86;
}

.mq-section-head p {
  margin-left: auto;
  margin-right: auto;
}

.mq-section-head .mq-section-label,
.mq-section-copy .mq-section-label,
.mq-system-copy .mq-section-label,
.mq-faq-side .mq-section-label,
.mq-founder-copy .mq-section-label,
.mq-consult-card .mq-section-label {
  max-width: none;
  margin: 0 0 14px;
  color: #1d5fd0;
  font-size: 12px;
  line-height: 1;
}

.mq-section-head .mq-section-label {
  margin-left: auto;
  margin-right: auto;
}

.mq-split,
.mq-system-grid,
.mq-contact-grid {
  gap: 60px;
}

.mq-photo-card {
  min-height: 440px;
  border-radius: 10px;
  border-color: rgba(219, 227, 239, 0.9);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.mq-photo-overlay span {
  min-height: 58px;
  border-radius: 8px;
  color: #132036;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.mq-problem-panel {
  margin-top: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mq-problem-panel h3 {
  margin-bottom: 22px;
  font-size: 24px;
}

.mq-problem-grid,
.mq-feature-grid,
.mq-target-grid,
.mq-process-grid {
  gap: 16px;
}

.mq-problem-grid article,
.mq-feature-grid article,
.mq-target-grid article,
.mq-process-grid article,
.mq-faq-list .faq-item,
.mq-consult-card {
  border-radius: 8px;
  border-color: rgba(219, 227, 239, 0.92);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.mq-problem-grid article,
.mq-feature-grid article,
.mq-target-grid article,
.mq-process-grid article {
  padding: 24px;
}

.mq-problem-grid strong,
.mq-target-grid strong,
.mq-feature-grid h3,
.mq-process-grid h3 {
  color: #111c2f;
}

.mq-problem-grid p,
.mq-target-grid span,
.mq-process-grid p,
.mq-feature-grid p,
.mq-faq-list .faq-content p {
  color: #4f5f75;
  font-size: 14.5px;
  line-height: 1.78;
}

.mq-flow {
  gap: 12px;
}

.mq-flow-step {
  min-height: 156px;
  border-radius: 10px;
  border-color: rgba(219, 227, 239, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
}

.mq-flow-step b,
.mq-feature-grid i,
.mq-process-grid b {
  border-radius: 9px;
}

.mq-flow-step span {
  color: #536176;
}

.mq-flow-note {
  border-radius: 12px;
  background: #eef5ff;
  color: #245cc7;
}

.mq-feature-grid article {
  min-height: 188px;
}

.mq-inline-callout {
  border-radius: 8px;
  color: #245cc7;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.mq-system-board {
  border-radius: 10px;
  box-shadow: 0 30px 74px rgba(15, 23, 42, 0.14);
}

.mq-board-top {
  border-radius: 8px;
}

.mq-board-cta {
  border-radius: 8px;
}

.mq-founder-panel {
  border-radius: 18px;
  border-color: rgba(219, 227, 239, 0.92);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.mq-founder-copy p {
  color: #4f5f75;
}

.mq-safety-strip span {
  border-radius: 14px;
  background: #f8fbff;
}

.mq-faq-list .faq-trigger {
  min-height: 66px;
  font-size: 16px;
}

.mq-final-cta {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.mq-cta-box {
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(29, 79, 190, 0.94)),
    linear-gradient(120deg, #07111f, #2563eb);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.mq-cta-box h2 {
  line-height: 1.2;
}

.mq-consult-card {
  background: rgba(255, 255, 255, 0.94);
}

.mq-consult-card .form-field input,
.mq-consult-card .form-field select,
.mq-consult-card .form-field textarea {
  border-radius: 8px;
  border-color: rgba(210, 221, 237, 0.95);
  color: #172033;
  font-size: 14.5px;
  line-height: 1.55;
}

.mq-consult-card .form-field span,
.mq-consult-card legend {
  color: #243044;
  font-weight: 900;
}

.mq-consult-card .contact-method label {
  border-radius: 8px;
}

.watchlist-picker {
  gap: 10px;
}

.multi-combo {
  position: relative;
}

.multi-combo-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(210, 221, 237, 0.95);
  border-radius: 8px;
  background: #fff;
  color: #172033;
  font: inherit;
  font-size: 14.5px;
  line-height: 1.55;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.multi-combo-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #334155;
  border-bottom: 2px solid #334155;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.multi-combo-trigger [data-combo-label] {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #172033;
  font-size: 14.5px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-combo-trigger:hover,
.multi-combo-trigger:focus,
.multi-combo.is-open .multi-combo-trigger {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.multi-combo.is-open .multi-combo-trigger::after {
  transform: translateY(-25%) rotate(225deg);
}

.multi-combo-panel {
  margin-top: 8px;
  max-height: 316px;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(210, 221, 237, 0.95);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.multi-combo-panel[hidden] {
  display: none;
}

.watchlist-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.watchlist-choice-grid button,
.watchlist-selected button,
.watchlist-custom-row button {
  min-height: 38px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 8px;
  background: #f4f8ff;
  color: #30415c;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.watchlist-choice-grid button {
  padding: 0 13px;
  text-align: left;
}

.watchlist-choice-grid button:hover,
.watchlist-choice-grid button.is-active {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.36);
  color: var(--mq-blue);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

.watchlist-custom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 8px;
}

.watchlist-custom-row[hidden] {
  display: none;
}

.watchlist-custom-row button {
  padding: 0 15px;
  background: var(--mq-blue);
  color: #fff;
  border-color: var(--mq-blue);
}

.watchlist-selected {
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--mq-muted);
  font-size: 13px;
  font-weight: 750;
}

.watchlist-selected button {
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--mq-blue);
}

.condition-summary {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(20, 184, 166, 0.08));
  color: #1d2a3f;
}

.condition-summary span {
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 900;
}

.condition-summary p {
  margin: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.65;
  word-break: keep-all;
}

.mq-diagnosis-disclaimer {
  padding: 14px 16px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 10px;
  background: #f8fbff;
  color: #56667d;
  line-height: 1.7;
}

.mq-footer {
  background: #f7faff;
}

.mq-footer-inner {
  gap: 34px;
}

.mq-footer-links {
  gap: 10px 18px;
}

.mq-footer-links a {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .mq-hero-grid,
  .mq-split,
  .mq-system-grid,
  .mq-contact-grid {
    grid-template-columns: 1fr;
  }

  .mq-hero {
    min-height: 0;
    background-position: center, center bottom, center;
  }

  .mq-hero-visual {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

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

  .mq-flow::before,
  .mq-rule-example::before,
  .mq-rule-example::after {
    display: none;
  }

  .mq-flow-step:not(:last-child)::after {
    display: none;
  }

  .mq-feature-grid,
  .mq-target-grid,
  .mq-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-module-showcase {
    grid-template-columns: 1fr;
  }

  .mq-module-copy {
    max-width: 760px;
  }

  .mq-module-examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-module-examples h3,
  .mq-module-examples > p {
    grid-column: 1 / -1;
  }

  .mq-module-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-module-benefits article:nth-child(2) {
    border-right: 0;
  }

  .mq-cta-box,
  .mq-faq-side {
    position: static;
  }
}

@media (max-width: 900px) {
  .mq-nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mq-faq-grid,
  .mq-footer-inner {
    grid-template-columns: 1fr;
  }

  .mq-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 88px;
  }

  .mq-container {
    width: min(100% - 32px, var(--mq-max));
  }

  .mq-nav {
    min-height: 64px;
  }

  .mq-nav-cta {
    display: none;
  }

  .mq-hero,
  .mq-section,
  .mq-final-cta {
    padding: 68px 0;
  }

  .mq-hero-grid {
    gap: 36px;
  }

  .mq-hero h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .mq-hero-desc,
  .mq-section-head p,
  .mq-section-copy p,
  .mq-system-copy p {
    font-size: 15px;
  }

  .mq-hero-desc .mq-mobile-break {
    display: block;
  }

  .mq-hero-desc .mq-mobile-break::before {
    content: "";
  }

  .mq-hero-actions,
  .mq-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mq-hero-trust {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .mq-hero-trust article {
    text-align: left;
  }

  .mq-btn {
    width: 100%;
  }

  .mq-hero-visual {
    min-height: 430px;
  }

  .mq-main-chart {
    width: 100%;
    padding: 20px;
  }

  .mq-alert-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .mq-floating-chip {
    display: none;
  }

  .mq-metrics,
  .mq-problem-grid,
  .mq-feature-grid,
  .mq-target-grid,
  .mq-process-grid,
  .mq-safety-strip,
  .mq-board-grid,
  .mq-module-grid,
  .mq-module-examples,
  .mq-module-benefits,
  .mq-flow,
  .mq-founder-panel {
    grid-template-columns: 1fr;
  }

  .mq-module-copy h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .mq-module-callout,
  .mq-module-benefits {
    padding: 18px;
    border-radius: 8px;
  }

  .mq-module-card {
    grid-column: auto;
    min-height: 0;
  }

  .mq-module-root,
  .mq-module-complete {
    width: 100%;
  }

  .mq-module-card::after,
  .mq-module-card::before,
  .mq-module-root::after,
  .mq-module-complete::before,
  .mq-module-grid::before {
    display: none;
  }

  .mq-module-benefits article {
    padding: 0;
    border-right: 0 !important;
  }

  .mq-photo-card {
    min-height: 300px;
  }

  .mq-founder-panel {
    gap: 22px;
    padding: 22px;
  }

  .mq-founder-photo {
    width: min(100%, 240px);
    justify-self: center;
  }

  .mq-safety-strip {
    grid-template-columns: 1fr;
  }

  .mq-photo-overlay {
    inset: 18px;
    justify-items: stretch;
  }

  .mq-photo-overlay span {
    width: 100%;
  }

  .mq-founder-panel,
  .mq-consult-card,
  .mq-cta-box,
  .mq-problem-panel {
    padding: 22px;
    border-radius: 8px;
  }

  .mq-system-board {
    padding: 0;
    border-radius: 8px;
  }

  .mq-board-top {
    top: 12px;
    left: 12px;
    min-width: calc(100% - 24px);
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .mq-board-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 44px;
    font-size: 13px;
  }

  .mq-founder-photo {
    max-width: 220px;
  }
}

/* Problem section workspace refresh */
.mq-problem {
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.mq-problem .mq-split {
  align-items: center;
}

.mq-photo-wrap {
  position: relative;
  margin: 0;
}

.mq-problem .mq-photo-card {
  position: relative;
  height: clamp(380px, 34vw, 460px);
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #f8fbff;
  border: 1px solid rgba(219, 227, 239, 0.92);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.11);
}

.mq-problem .mq-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mq-problem .mq-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(246, 249, 255, 0.22) 100%);
}

.mq-problem .mq-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.mq-problem .mq-photo-overlay span {
  position: absolute;
  width: auto;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #1e293b;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  transition: scale 180ms ease, background 180ms ease, box-shadow 180ms ease;
  pointer-events: auto;
}

.mq-problem .mq-photo-overlay span:nth-child(1) {
  top: 76px;
  right: auto;
  left: clamp(168px, 29%, 250px);
}

.mq-problem .mq-photo-overlay span:nth-child(2) {
  top: 52%;
  left: clamp(46px, 8%, 78px);
  justify-self: auto;
}

.mq-problem .mq-photo-overlay span:nth-child(3) {
  top: 61%;
  right: auto;
  bottom: auto;
  left: clamp(240px, 38%, 320px);
}

@media (hover: hover) {
  .mq-problem .mq-photo-overlay span:hover {
    scale: 1.02;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  }

  .mq-problem-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, 0.26);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-slow {
  animation: floatSlow 5s ease-in-out infinite;
}

.float-delay-1 {
  animation-delay: 0s;
}

.float-delay-2 {
  animation-delay: 1.2s;
}

.float-delay-3 {
  animation-delay: 2.4s;
}

.mq-problem-panel {
  margin-top: 46px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mq-problem-panel h3 {
  margin: 0 0 24px;
  text-align: center;
  color: #07111f;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 950;
}

.mq-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mq-problem-grid article {
  min-width: 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 219, 254, 0.82);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mq-problem-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.mq-problem-top b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: #1d5fd0;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.mq-problem-top i {
  font-style: normal;
  font-size: 30px;
  line-height: 1;
}

.mq-problem-grid strong {
  display: block;
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 950;
}

.mq-problem-grid p {
  margin: 0;
  color: #526175;
  font-size: 14.5px;
  line-height: 1.82;
}

@media (min-width: 901px) {
  .mq-problem .mq-split {
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
    gap: 64px;
  }
}

@media (max-width: 900px) {
  .mq-problem .mq-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mq-problem .mq-section-copy p br {
    display: none;
  }

  .mq-problem .mq-photo-card {
    width: 100%;
    height: clamp(220px, 62vw, 260px);
    border-radius: 24px;
  }

  .mq-problem .mq-photo-overlay {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    pointer-events: auto;
  }

  .mq-problem .mq-photo-overlay span {
    position: static;
    width: auto;
    padding: 9px 13px;
    font-size: 13.5px;
    animation: none;
  }

  .mq-problem-panel {
    margin-top: 36px;
    padding: 0;
    border-radius: 0;
  }

  .mq-problem-panel h3 {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .mq-problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mq-problem-grid article {
    padding: 22px;
    border-radius: 20px;
  }
}

/* Simplified system flow */
.mq-flow-section .mq-section-head {
  margin-bottom: 36px;
}

.mq-flow-section svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-rule-example,
.mq-rule-table {
  max-width: 760px;
  border-radius: 24px;
}

.mq-rule-example {
  margin: 0 auto;
  padding: 30px 32px;
  gap: 16px;
}

.mq-rule-example::before,
.mq-rule-example::after {
  display: none;
}

.mq-rule-card-head {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transform: translateX(-21px);
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 950;
}

.mq-rule-icon,
.mq-step-icon,
.mq-flow-note-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--mq-blue);
}

.mq-rule-icon {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.mq-rule-example strong {
  max-width: 680px;
}

.mq-rule-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 14px auto;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--mq-blue);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.mq-rule-arrow svg {
  width: 20px;
  height: 20px;
}

.mq-rule-table {
  max-width: 760px;
  margin: 0 auto 42px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.82);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.mq-rule-table ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mq-rule-table li {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #f7faff;
  border: 1px solid rgba(219, 227, 239, 0.92);
}

.mq-rule-table li b {
  color: var(--mq-blue);
  font-size: 12px;
  font-weight: 950;
}

.mq-rule-table li span {
  color: var(--mq-heading);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 850;
}

.mq-integrated-flow {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px 16px;
  max-width: 1120px;
}

.mq-flow::before {
  display: none;
}

.mq-flow-step {
  grid-column: span 2;
  min-height: 214px;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(191, 219, 254, 0.76);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.mq-flow-step:nth-child(5) {
  grid-column: 2 / span 2;
}

.mq-flow-step-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.mq-flow-step b {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
}

.mq-flow-step .mq-step-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #1d5fd0;
  font-size: 22px;
}

.mq-flow-step strong {
  font-size: 18px;
  line-height: 1.35;
}

.mq-flow-step i {
  min-height: 30px;
  padding: 0 12px;
  background: #edf4ff;
  font-size: 12px;
}

.mq-flow-step .mq-step-desc {
  color: #536176;
  font-size: 14px;
  line-height: 1.72;
}

.mq-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #edf4ff;
  color: rgba(37, 99, 235, 0.78);
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
  transform: translateY(-50%);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.mq-flow-step:nth-child(4)::after {
  content: "↓";
  top: auto;
  right: 50%;
  bottom: -24px;
  transform: translateX(50%);
}

.mq-flow-note {
  max-width: 760px;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #eef5ff;
}

.mq-flow-note .mq-flow-note-icon {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.mq-flow-note strong,
.mq-flow-note span {
  text-align: left;
}

@media (max-width: 1080px) {
  .mq-integrated-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-flow-step,
  .mq-flow-step:nth-child(5) {
    grid-column: auto;
  }

  .mq-flow-step:not(:last-child)::after,
  .mq-flow-step:nth-child(4)::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -24px;
    display: grid;
    transform: translateX(50%);
  }
}

@media (max-width: 720px) {
  .mq-rule-example,
  .mq-rule-table {
    max-width: 100%;
    padding: 22px;
    border-radius: 20px;
  }

  .mq-rule-table ul,
  .mq-integrated-flow {
    grid-template-columns: 1fr;
  }

  .mq-integrated-flow {
    gap: 34px;
  }

  .mq-flow-step {
    width: 100%;
    min-height: 0;
    padding: 22px;
  }

  .mq-flow-step:not(:last-child)::after {
    bottom: -31px;
  }

  .mq-flow-note {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .mq-flow-note strong,
  .mq-flow-note span {
    text-align: center;
  }
}

/* Compact timeline flow */
.mq-rule-example {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.46));
  border: 1px solid rgba(191, 219, 254, 0.76);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  animation: none;
  translate: 0 0;
  scale: 1;
  gap: 20px;
}

.mq-rule-shine {
  display: none;
}

.mq-rule-example strong {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.45;
}

.mq-rule-sentence {
  position: relative;
  display: inline-block;
  transform-origin: center;
  will-change: transform, text-shadow, color;
  animation: mqRuleSentenceEmphasis 3.8s ease-in-out infinite;
}

.mq-rule-sentence-main,
.mq-rule-sentence-sub {
  display: block;
}

.mq-rule-sentence-sub {
  margin-top: 6px;
  color: #35465f;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 850;
}

.mq-rule-sentence::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -10px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.24), transparent);
  opacity: 0.42;
  transform: scaleX(0.54);
  transform-origin: center;
  animation: mqRuleSentenceUnderline 3.8s ease-in-out infinite;
}

.mq-rule-phrase {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.mq-rule-phrase-line,
.mq-rule-phrase-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mq-rule-phrase-sub {
  margin: 0;
  color: #35465f;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  font-weight: 850;
}

.mq-rule-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  background: #eff6ff;
  color: #1d4ed8;
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.1;
  font-weight: 950;
  white-space: nowrap;
}

.mq-rule-pill-result {
  border-color: #fdba74;
  background: #fff7ed;
  color: #ea580c;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.12);
}

.mq-rule-pill-soft {
  min-height: 32px;
  padding: 0 13px;
  font-size: clamp(13px, 1.25vw, 15px);
  background: #f8fbff;
}

.mq-rule-pill-loss {
  border-color: rgba(248, 113, 113, 0.36);
  background: #fff1f2;
  color: #dc2626;
}

.mq-rule-pill-close {
  border-color: rgba(251, 146, 60, 0.38);
  background: #fff7ed;
  color: #ea580c;
}

.mq-rule-operator {
  color: #7b8aa3;
  font-size: 15px;
  font-weight: 950;
}

@keyframes mqRuleSentenceEmphasis {
  0%,
  100% {
    color: var(--mq-heading);
    transform: translateY(0) scale(1);
    text-shadow: 0 0 0 rgba(37, 99, 235, 0);
  }

  42% {
    color: #0b2a6f;
    transform: translateY(-5px) scale(1.018);
    text-shadow: 0 14px 28px rgba(37, 99, 235, 0.18);
  }

  62% {
    color: var(--mq-heading);
    transform: translateY(1px) scale(0.998);
    text-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
  }
}

@keyframes mqRuleSentenceUnderline {
  0%,
  100% {
    opacity: 0.24;
    transform: scaleX(0.44);
  }

  42% {
    opacity: 0.72;
    transform: scaleX(1);
  }

  62% {
    opacity: 0.34;
    transform: scaleX(0.68);
  }
}

.mq-rule-arrow {
  width: 34px;
  height: 34px;
  margin: 12px auto;
  box-shadow: none;
}

.mq-rule-arrow-to-timeline {
  margin: 18px auto 30px;
}

.mq-condition-flow {
  width: 100%;
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0 auto;
  padding-top: 2px;
  text-align: center;
}

.mq-condition-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mq-blue);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.mq-condition-image {
  position: relative;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

.mq-condition-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mq-chart-breakout-bubble {
  position: absolute;
  z-index: 3;
  top: 19.2%;
  left: 51.4%;
  min-height: clamp(18px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(9px, 2vw, 18px);
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.24);
  font-size: clamp(8px, 1.1vw, 12px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  will-change: transform, box-shadow;
  animation: mqChartBreakoutBubbleGrow 2.6s ease-in-out infinite;
}

.mq-chart-breakout-focus {
  position: absolute;
  z-index: 2;
  top: 32.6%;
  left: 51.4%;
  width: clamp(18px, 2.4vw, 28px);
  height: clamp(18px, 2.4vw, 28px);
  border-radius: 999px;
  border: 2px solid rgba(37, 99, 235, 0.58);
  background: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 0 rgba(37, 99, 235, 0);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.62);
  transform-origin: center;
  animation: mqChartBreakoutFocus 2.9s ease-out 0.35s infinite;
}

.mq-chart-tip-light {
  position: absolute;
  z-index: 2;
  top: 89.6%;
  left: 17.8%;
  width: clamp(20px, 3vw, 34px);
  height: clamp(20px, 3vw, 34px);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 52%, rgba(253, 224, 71, 0.92) 0 20%, rgba(250, 204, 21, 0.5) 21% 42%, rgba(250, 204, 21, 0) 70%);
  filter: blur(0.2px);
  mix-blend-mode: multiply;
  opacity: 0.18;
  animation: mqChartTipLightBlink 1.45s ease-in-out infinite;
}

.mq-chart-tip-light::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.35), rgba(250, 204, 21, 0) 68%);
  opacity: 0;
  animation: mqChartTipLightGlow 1.45s ease-in-out infinite;
}

.mq-chart-mobile-caption {
  display: none;
}

@keyframes mqChartBreakoutBubbleGrow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.28);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.26);
    box-shadow:
      0 22px 48px rgba(15, 23, 42, 0.38),
      0 0 0 8px rgba(15, 23, 42, 0.08);
  }
}

@keyframes mqChartBreakoutFocus {
  0% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(0.62);
  }

  68% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.25);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.25);
  }
}

@keyframes mqChartTipLightBlink {
  0%,
  100% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(0.92);
  }

  42%,
  62% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes mqChartTipLightGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.mq-condition-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mq-rule-condition-rows {
  width: 100%;
  display: grid;
  gap: 12px;
}

.mq-condition-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.mq-condition-row-after {
  padding-top: 2px;
}

.mq-condition-stage {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: #52637a;
  font-size: 12.5px;
  font-weight: 950;
}

.mq-condition-chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.86);
  color: #1d4ed8;
  font-size: 13.5px;
  font-weight: 850;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.028);
}

.mq-condition-chip svg {
  width: 17px;
  height: 17px;
}

.mq-condition-chip-alert {
  color: #0f766e;
}

.mq-condition-chip-trade {
  color: #4338ca;
}

.mq-condition-chip-check {
  color: #245cc7;
}

.mq-condition-chip-profit {
  color: #15803d;
}

.mq-condition-chip-risk,
.mq-condition-chip-exit {
  color: #b42318;
}

.mq-chip-plus,
.mq-chip-arrow,
.mq-chip-divider {
  display: inline-grid;
  place-items: center;
  color: #7f8da4;
  font-weight: 950;
}

.mq-chip-divider {
  color: #9aa7ba;
}

.mq-chip-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--mq-blue);
}

.mq-chip-arrow svg {
  width: 16px;
  height: 16px;
}

.mq-simple-rule-flow {
  width: min(100%, 720px);
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.mq-simple-rule-row {
  min-height: 54px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(248, 251, 255, 0.74);
  border: 1px solid rgba(219, 227, 239, 0.82);
}

.mq-simple-stage {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef5ff;
  color: #516075;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.mq-simple-rule-chip,
.mq-simple-result {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 950;
  white-space: nowrap;
}

.mq-simple-rule-chip {
  flex-direction: column;
  gap: 2px;
  min-width: 220px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.84);
  color: #15366e;
  line-height: 1.25;
}

.mq-simple-rule-chip small {
  color: #7b8aa3;
  font-size: 11.5px;
  font-weight: 850;
}

.mq-simple-result {
  padding: 0 16px;
  background: #f0f7ff;
  border: 1px solid rgba(191, 219, 254, 0.9);
  color: var(--mq-blue);
}

.mq-simple-result-exit {
  background: #fff5f5;
  border-color: rgba(254, 202, 202, 0.86);
  color: #b42318;
}

.mq-simple-arrow {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(37, 99, 235, 0.64);
}

.mq-simple-arrow svg {
  width: 15px;
  height: 15px;
}

.mq-timeline-flow {
  position: relative;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.mq-timeline-flow::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 7%;
  right: 7%;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.24), transparent);
}

.mq-timeline-node,
.mq-timeline-node:nth-child(5) {
  position: relative;
  z-index: 1;
  grid-column: auto;
  min-height: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 6px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.mq-timeline-node:not(:last-child)::after,
.mq-timeline-node:nth-child(4)::after {
  content: "→";
  position: absolute;
  top: 38px;
  right: -9px;
  bottom: auto;
  z-index: 3;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f6f9ff;
  color: rgba(37, 99, 235, 0.7);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  transform: none;
  box-shadow: none;
}

.mq-timeline-node:last-child::after {
  display: none;
}

.mq-timeline-dot {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(191, 219, 254, 0.86);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.mq-timeline-dot b {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mq-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.mq-timeline-dot .mq-step-icon {
  width: 44px;
  height: 44px;
  background: #eef5ff;
  color: var(--mq-blue);
  font-size: 22px;
}

.mq-timeline-copy {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.mq-timeline-node strong {
  color: var(--mq-heading);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.mq-timeline-node i {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--mq-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.mq-flow-note {
  max-width: 620px;
  margin-top: 36px;
  padding: 18px 22px;
  border-radius: 20px;
}

.mq-flow-note .mq-flow-note-icon {
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.mq-flow-note-single {
  position: relative;
  grid-template-columns: 1fr;
  justify-items: center;
  padding-right: 68px;
  padding-left: 68px;
  text-align: center;
}

.mq-flow-note-single .mq-flow-note-icon {
  position: absolute;
  top: 50%;
  left: 28px;
  grid-row: auto;
  transform: translateY(-50%);
}

.mq-flow-note-single strong {
  align-self: center;
  justify-self: center;
  color: var(--mq-heading);
  text-align: center;
  white-space: normal;
}

.mq-flow-note-single .mq-flow-note-highlight {
  color: var(--mq-blue);
  font: inherit;
  text-align: inherit;
}

@media (max-width: 720px) {
  .mq-rule-example {
    padding: 22px 18px;
  }

  .mq-rule-example strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .mq-rule-sentence-sub {
    margin-top: 4px;
    font-size: clamp(15px, 4.6vw, 18px);
  }

  .mq-rule-phrase {
    gap: 10px;
  }

  .mq-rule-phrase-line,
  .mq-rule-phrase-sub {
    gap: 7px;
  }

  .mq-rule-pill {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mq-rule-pill-soft {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12.5px;
  }

  .mq-rule-phrase-sub {
    font-size: 14px;
  }

  .mq-condition-image {
    width: 100%;
    border-radius: 14px;
  }

  .mq-condition-chips {
    gap: 8px;
  }

  .mq-rule-condition-rows {
    gap: 14px;
  }

  .mq-condition-row {
    gap: 8px;
  }

  .mq-condition-stage {
    width: 100%;
    justify-content: center;
  }

  .mq-condition-chip {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mq-chip-arrow {
    transform: none;
  }

  .mq-simple-rule-flow {
    width: 100%;
  }

  .mq-simple-rule-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 7px;
    padding: 12px;
  }

  .mq-simple-stage,
  .mq-simple-rule-chip,
  .mq-simple-result {
    width: 100%;
    white-space: normal;
  }

  .mq-simple-arrow {
    display: none;
  }

  .mq-simple-result {
    min-height: 36px;
  }

  .mq-timeline-flow {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2px 0 0;
  }

  .mq-timeline-flow::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.08));
  }

  .mq-timeline-node,
  .mq-timeline-node:nth-child(5) {
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 14px;
    padding: 0 0 26px;
    text-align: left;
  }

  .mq-timeline-node:not(:last-child)::after,
  .mq-timeline-node:nth-child(4)::after {
    content: "↓";
    top: auto;
    left: 18px;
    right: auto;
    bottom: 2px;
    width: 20px;
    height: 20px;
    background: #f6f9ff;
    transform: none;
  }

  .mq-timeline-dot {
    width: 56px;
    height: 56px;
  }

  .mq-timeline-dot b {
    width: 24px;
    height: 24px;
    top: -6px;
    left: -6px;
    font-size: 11px;
  }

  .mq-timeline-dot .mq-step-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .mq-timeline-copy {
    justify-items: start;
    gap: 6px;
  }

  .mq-timeline-node strong {
    font-size: 16px;
  }

  .mq-flow-note {
    margin-top: 26px;
    padding: 18px;
  }

  .mq-flow-note-single {
    padding-right: 48px;
    padding-left: 48px;
  }

  .mq-flow-note-single .mq-flow-note-icon {
    left: 16px;
  }

  .mq-flow-note-single strong {
    font-size: clamp(13px, 3.45vw, 16px);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .mq-eyebrow,
  .mq-section-label,
  .mq-section-head .mq-section-label,
  .mq-section-copy .mq-section-label,
  .mq-system-copy .mq-section-label,
  .mq-consult-card .mq-section-label,
  .mq-faq-side .mq-section-label {
    font-size: 13.5px;
  }

  .mq-hero-desc,
  .mq-section-head p,
  .mq-section-copy p,
  .mq-system-copy p,
  .mq-faq-side p,
  .mq-program-copy p,
  .consult-intro-note {
    font-size: 16px;
    line-height: 1.78;
  }

  .mq-hero-trust strong,
  .mq-problem-grid strong,
  .mq-program-step-grid strong,
  .mq-target-grid strong,
  .mq-process-grid h3,
  .mq-safety-strip span {
    font-size: 16px;
  }

  .mq-hero-trust span,
  .mq-problem-grid p,
  .mq-program-step-grid p,
  .mq-target-grid span,
  .mq-process-grid p,
  .mq-founder-copy p,
  .mq-program-callout,
  .mq-flow-note-single strong {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .mq-btn,
  .mq-program-actions .mq-btn {
    min-height: 52px;
    font-size: 15.5px;
  }

  .mq-faq-list .faq-trigger {
    min-height: 68px;
    font-size: 17px;
  }

  .mq-faq-list .faq-content p {
    font-size: 15.5px;
    line-height: 1.78;
  }

  .mq-consult-card h3 {
    font-size: clamp(26px, 7.6vw, 32px);
  }

  .mq-consult-card .form-field span,
  .mq-consult-card legend,
  .condition-summary span,
  .watchlist-selected,
  .form-note {
    font-size: 14.5px;
  }

  .mq-consult-card .form-field input,
  .mq-consult-card .form-field select,
  .mq-consult-card .form-field textarea,
  .multi-combo-trigger,
  .watchlist-choice-grid button,
  .contact-method label {
    font-size: 16px;
  }

  .condition-summary p {
    font-size: 16px;
  }

  .mq-rule-card-head,
  .mq-condition-label {
    font-size: 15px;
  }

  .mq-rule-pill {
    min-height: 42px;
    padding: 0 16px;
    font-size: 15.5px;
  }

  .mq-rule-pill-soft,
  .mq-rule-phrase-sub {
    font-size: 15px;
  }

  .mq-rule-pill-soft {
    min-height: 36px;
    padding: 0 14px;
  }

  .mq-rule-phrase {
    gap: 14px;
  }

  .mq-rule-phrase-line,
  .mq-rule-phrase-sub {
    gap: 9px;
  }

  .mq-condition-flow {
    gap: 14px;
  }

  .mq-condition-image {
    width: min(100% + 18px, 100vw - 24px);
    max-width: none;
    margin-right: -9px;
    margin-left: -9px;
  }

  .mq-chart-mobile-caption {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 20px);
    min-height: 42px;
    margin: 8px auto 10px;
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(239, 246, 255, 0.96);
    border: 1px solid rgba(191, 219, 254, 0.9);
    color: #0f172a;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-size: clamp(13.5px, 3.45vw, 15.5px);
    line-height: 1.45;
    font-weight: 850;
    text-align: center;
  }

  .mq-timeline-node strong {
    font-size: 17px;
  }

  .mq-timeline-node i {
    min-height: 30px;
    font-size: 13px;
  }

  .mq-timeline-dot b {
    font-size: 12px;
  }

  .mq-chart-breakout-bubble {
    font-size: clamp(8.5px, 2.2vw, 12px);
  }

  .drawer-link,
  .quick-contact-bar a {
    font-size: 15px;
  }

  .mq-problem .mq-photo-overlay span,
  .mq-photo-overlay span {
    font-size: 14.5px;
  }

  .mq-footer p,
  .mq-footer-links a,
  .mq-footer-bottom {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .mq-logo-text strong {
    font-size: 16px;
  }

  .mq-logo-text small {
    font-size: 11px;
  }
}

/* Homepage readability scale */
:root {
  --mq-max: 1320px;
}

body {
  font-size: 17px;
}

.mq-container {
  width: min(100% - 56px, var(--mq-max));
}

.mq-nav {
  min-height: 82px;
}

.mq-logo-mark {
  width: 42px;
  height: 42px;
}

.mq-logo-text strong {
  font-size: 18px;
}

.mq-logo-text small {
  font-size: 12px;
}

.mq-nav-menu {
  gap: 34px;
  font-size: 16px;
}

.mq-nav-cta {
  min-height: 46px;
  padding: 0 22px;
  font-size: 15px;
}

.mq-hero {
  min-height: 840px;
  padding: 112px 0 96px;
}

.mq-hero-copy {
  max-width: 1040px;
}

.mq-eyebrow,
.mq-section-label,
.mq-section-head .mq-section-label,
.mq-section-copy .mq-section-label,
.mq-system-copy .mq-section-label,
.mq-faq-side .mq-section-label,
.mq-founder-copy .mq-section-label,
.mq-consult-card .mq-section-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 15px;
}

.mq-hero h1 {
  max-width: 980px;
  font-size: clamp(64px, 6vw, 94px);
}

.mq-hero-desc {
  max-width: 860px;
  font-size: 21px;
}

.mq-btn {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 17px;
}

.mq-hero-actions,
.mq-cta-actions,
.mq-program-actions {
  gap: 16px;
}

.mq-hero-trust {
  max-width: 1060px;
  gap: 18px;
  margin: 42px auto 0;
}

.mq-hero-trust article {
  padding: 22px;
  border-radius: 16px;
}

.mq-hero-trust strong {
  font-size: 18px;
}

.mq-hero-trust span {
  font-size: 16px;
}

.mq-section,
.mq-final-cta {
  padding: 112px 0;
}

.mq-section-head {
  max-width: 960px;
  margin-bottom: 52px;
}

.mq-section-head h2,
.mq-section-copy h2,
.mq-system-copy h2,
.mq-faq-side h2,
.mq-cta-box h2 {
  font-size: clamp(44px, 4.7vw, 62px);
  line-height: 1.14;
}

.mq-section-head p,
.mq-section-copy p,
.mq-system-copy p,
.mq-faq-side p,
.mq-program-copy p,
.mq-cta-box p,
.consult-intro-note {
  font-size: 20px;
  line-height: 1.82;
}

.mq-split {
  gap: 64px;
}

.mq-problem .mq-photo-card,
.mq-photo-card {
  min-height: 520px;
  border-radius: 30px;
}

.mq-problem .mq-photo-overlay span,
.mq-photo-overlay span {
  min-height: 48px;
  padding: 12px 18px;
  font-size: 17px;
}

.mq-problem-panel,
.mq-founder-panel,
.mq-consult-card,
.mq-cta-box {
  border-radius: 24px;
}

.mq-problem-panel {
  padding: 38px;
}

.mq-problem-panel h3,
.mq-program-steps h3 {
  font-size: 32px;
}

.mq-problem-grid,
.mq-feature-grid,
.mq-target-grid,
.mq-process-grid,
.mq-program-step-grid {
  gap: 20px;
}

.mq-problem-grid article,
.mq-feature-grid article,
.mq-target-grid article,
.mq-process-grid article,
.mq-program-step-grid article {
  padding: 32px;
  border-radius: 22px;
}

.mq-problem-grid strong,
.mq-target-grid strong,
.mq-feature-grid strong,
.mq-process-grid h3,
.mq-program-step-grid strong {
  font-size: 21px;
}

.mq-problem-grid p,
.mq-target-grid span,
.mq-process-grid p,
.mq-feature-grid p,
.mq-program-step-grid p {
  font-size: 17px;
  line-height: 1.76;
}

.mq-problem-top b,
.mq-flow-step b,
.mq-process-grid b,
.mq-program-step-grid b {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.mq-program-section .mq-container {
  width: min(100% - 56px, var(--mq-max));
}

.mq-program-grid {
  grid-template-columns: minmax(0, 980px);
}

.mq-program-copy {
  max-width: 980px;
}

.mq-program-callout {
  max-width: 760px;
  padding: 26px 28px;
  font-size: 18px;
}

.mq-program-step-grid b {
  margin-bottom: 18px;
}

.mq-target-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mq-founder-panel {
  gap: 42px;
  padding: 42px;
}

.mq-founder-copy h3 {
  font-size: 38px;
}

.mq-founder-copy p {
  font-size: 18px;
}

.mq-founder-photo {
  width: min(100%, 330px);
  max-width: 100%;
  overflow: hidden;
}

.mq-founder-photo figcaption strong {
  font-size: 20px;
}

.mq-founder-photo figcaption span {
  font-size: 16px;
}

.mq-safety-strip {
  gap: 16px;
}

.mq-safety-strip span {
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 16px;
}

.mq-process-grid article {
  min-height: 218px;
}

.mq-faq-grid {
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
}

.mq-faq-list {
  gap: 16px;
}

.mq-faq-list .faq-item {
  border-radius: 20px;
}

.mq-faq-list .faq-trigger {
  min-height: 78px;
  padding: 0 28px;
  font-size: 21px;
}

.mq-faq-list .faq-content {
  padding: 0 28px 28px;
}

.mq-faq-list .faq-content p {
  font-size: 18px;
  line-height: 1.82;
}

.mq-contact-grid {
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: 40px;
}

.mq-cta-box,
.mq-consult-card {
  padding: 48px;
}

.mq-consult-card h3 {
  font-size: 36px;
}

.mq-consult-card .form-field span,
.mq-consult-card legend,
.condition-summary span,
.watchlist-selected,
.form-note {
  font-size: 16px;
}

.mq-consult-card .form-field input,
.mq-consult-card .form-field select,
.mq-consult-card .form-field textarea,
.multi-combo-trigger,
.watchlist-choice-grid button,
.contact-method label {
  min-height: 54px;
  font-size: 18px;
}

.condition-summary {
  padding: 22px 24px;
  border-radius: 14px;
}

.condition-summary p {
  font-size: 18px;
}

.mq-diagnosis-disclaimer {
  padding: 18px 20px;
  font-size: 16px;
}

.mq-footer {
  padding: 56px 0 44px;
}

.mq-footer p,
.mq-footer-links a,
.mq-footer-bottom {
  font-size: 16px;
}

@media (max-width: 1080px) {
  .mq-target-grid,
  .mq-process-grid,
  .mq-program-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-contact-grid,
  .mq-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .mq-container,
  .mq-program-section .mq-container {
    width: min(100% - 24px, var(--mq-max));
  }

  .mq-hero,
  .mq-section,
  .mq-final-cta {
    padding: 82px 0;
  }

  .mq-hero h1 {
    font-size: clamp(42px, 11vw, 56px);
  }

  .mq-section-head h2,
  .mq-section-copy h2,
  .mq-system-copy h2,
  .mq-faq-side h2,
  .mq-cta-box h2 {
    font-size: clamp(36px, 9.8vw, 48px);
  }

  .mq-hero-desc,
  .mq-section-head p,
  .mq-section-copy p,
  .mq-system-copy p,
  .mq-faq-side p,
  .mq-program-copy p,
  .mq-cta-box p,
  .consult-intro-note {
    font-size: 17.5px;
  }

  .mq-btn {
    min-height: 56px;
    font-size: 16.5px;
  }

  .mq-problem-grid,
  .mq-feature-grid,
  .mq-target-grid,
  .mq-process-grid,
  .mq-program-step-grid,
  .mq-safety-strip {
    grid-template-columns: 1fr;
  }

  .mq-problem-grid article,
  .mq-feature-grid article,
  .mq-target-grid article,
  .mq-process-grid article,
  .mq-program-step-grid article,
  .mq-founder-panel,
  .mq-consult-card,
  .mq-cta-box,
  .mq-problem-panel {
    padding: 26px;
  }

  .mq-problem-grid strong,
  .mq-target-grid strong,
  .mq-feature-grid strong,
  .mq-process-grid h3,
  .mq-program-step-grid strong {
    font-size: 22px;
  }

  .mq-problem-grid p,
  .mq-target-grid span,
  .mq-process-grid p,
  .mq-feature-grid p,
  .mq-program-step-grid p,
  .mq-founder-copy p {
    font-size: 16.5px;
  }

  .mq-faq-list .faq-trigger {
    min-height: 74px;
    padding: 0 22px;
    font-size: 18px;
  }

  .mq-faq-list .faq-content p {
    font-size: 16.5px;
  }

  .mq-consult-card h3 {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .mq-consult-card .form-field input,
  .mq-consult-card .form-field select,
  .mq-consult-card .form-field textarea,
  .multi-combo-trigger,
  .watchlist-choice-grid button,
  .contact-method label {
    font-size: 17px;
  }
}

.mq-flow-section .mq-container {
  width: min(100% - 48px, 1320px);
}

.mq-hero-trust {
  width: min(100%, 1220px);
  max-width: 1220px;
  gap: 24px;
  margin-top: 54px;
}

.mq-hero-trust article {
  min-height: 152px;
  gap: 16px;
  padding: 34px 32px;
  border-radius: 22px;
}

.mq-hero-trust strong {
  gap: 12px;
  font-size: 23px;
}

.mq-trust-icon {
  width: 36px;
  height: 36px;
  font-size: 20px;
}

.mq-hero-trust span {
  font-size: 18px;
  line-height: 1.72;
}

@media (max-width: 720px) {
  .mq-hero-trust {
    gap: 16px;
    margin-top: 36px;
  }

  .mq-hero-trust article {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .mq-hero-trust strong {
    font-size: 21px;
  }

  .mq-trust-icon {
    width: 34px;
    height: 34px;
    font-size: 19px;
  }

  .mq-hero-trust span {
    font-size: 17px;
  }
}

/* Problem section subtle system interactions */
.hero-gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  white-space: nowrap;
  transform-origin: center;
  animation: heroTextPulse 3.2s ease-in-out infinite;
}

.mq-underline-draw::after {
  display: none;
  content: none;
}

.mq-problem .mq-photo-card {
  --mq-scan-distance: clamp(170px, 21vw, 245px);
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 0;
}

.mq-problem .mq-photo-wrap {
  position: relative;
}

.mq-problem .mq-photo-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 8%;
  width: 55%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.84) 48%, transparent 100%);
  box-shadow:
    0 0 18px rgba(37, 99, 235, 0.34),
    0 0 34px rgba(96, 165, 250, 0.22);
  opacity: 0;
  pointer-events: none;
  animation: mqMonitorScan 5.4s ease-in-out infinite;
}

.mq-monitor-toast {
  position: absolute;
  z-index: 4;
  top: 30%;
  left: clamp(210px, 32%, 270px);
  width: min(190px, 28%);
  height: 46px;
  pointer-events: none;
}

.mq-monitor-toast span {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(191, 219, 254, 0.7);
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(8px);
  animation: mqMonitorToast 10.8s ease-in-out infinite;
}

.mq-monitor-toast span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.mq-monitor-toast span:nth-child(2) {
  animation-delay: 2.7s;
}

.mq-monitor-toast span:nth-child(3) {
  animation-delay: 5.4s;
}

.mq-monitor-toast span:nth-child(4) {
  animation-delay: 8.1s;
}

.mq-problem-grid article {
  --problem-title-delay: 0s;
  outline: none;
}

.mq-problem-grid article:nth-child(2) {
  --problem-title-delay: 2s;
}

.mq-problem-grid article:nth-child(3) {
  --problem-title-delay: 4s;
}

.mq-problem-grid article:focus-visible {
  border-color: rgba(37, 99, 235, 0.52);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 18px 42px rgba(15, 23, 42, 0.08);
}

.mq-problem-grid strong {
  display: grid;
  min-height: 2.95em;
}

.mq-problem-title-current,
.mq-problem-title-solution {
  grid-area: 1 / 1;
  transition: opacity 220ms ease, transform 220ms ease, color 220ms ease;
}

.mq-problem-title-current {
  animation: mqProblemTitleCurrent 6s ease-in-out var(--problem-title-delay) infinite;
}

.mq-problem-title-solution {
  color: #2563eb;
  opacity: 0;
  transform: translateY(7px);
  animation: mqProblemTitleSolution 6s ease-in-out var(--problem-title-delay) infinite;
}

.mq-problem-grid article:focus-visible .mq-problem-title-current {
  animation: none;
  opacity: 0;
  transform: translateY(-7px);
}

.mq-problem-grid article:focus-visible .mq-problem-title-solution {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .mq-problem-grid article:hover .mq-problem-title-current {
    animation: none;
    opacity: 0;
    transform: translateY(-7px);
  }

  .mq-problem-grid article:hover .mq-problem-title-solution {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mqProblemTitleCurrent {
  0%,
  27% {
    opacity: 0;
    transform: translateY(-7px);
  }

  34%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mqProblemTitleSolution {
  0%,
  27% {
    opacity: 1;
    transform: translateY(0);
  }

  34%,
  100% {
    opacity: 0;
    transform: translateY(7px);
  }
}

@keyframes heroTextPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(37, 99, 235, 0));
  }

  50% {
    transform: scale(1.025);
    filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.16));
  }
}

@keyframes mqMonitorScan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  14% {
    opacity: 0.72;
  }

  68% {
    opacity: 0.48;
  }

  100% {
    opacity: 0;
    transform: translateY(var(--mq-scan-distance));
  }
}

@keyframes mqMonitorScanMobile {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  14% {
    opacity: 0.58;
  }

  68% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(var(--mq-scan-distance));
  }
}

@keyframes mqMonitorToast {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }

  5%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mqMonitorToastMobile {
  0%,
  24%,
  100% {
    opacity: 0;
    transform: translate(-50%, 7px);
  }

  5%,
  18% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 900px) {
  .mq-problem .mq-photo-card {
    --mq-scan-distance: clamp(96px, 38vw, 158px);
    position: relative;
  }

  .mq-problem .mq-photo-card::after {
    display: block;
    top: 30%;
    left: 6%;
    width: 62%;
    height: 2px;
    z-index: 4;
    background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.78) 50%, transparent 100%);
    box-shadow:
      0 0 16px rgba(37, 99, 235, 0.32),
      0 0 28px rgba(96, 165, 250, 0.2);
    animation: mqMonitorScanMobile 5.8s ease-in-out infinite;
  }

  .mq-monitor-toast {
    display: block;
    top: 43%;
    right: auto;
    left: 42%;
    width: min(62%, 154px);
    height: 32px;
    z-index: 6;
    transform: translate(-50%, -50%);
  }

  .mq-monitor-toast span {
    right: auto;
    left: 50%;
    min-height: 30px;
    padding: 0 10px;
    gap: 6px;
    border-radius: 999px;
    font-size: 11.5px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
    animation-name: mqMonitorToastMobile;
  }

  .mq-monitor-toast span::before {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  }

  .mq-problem-grid strong {
    min-height: 0;
  }
}

.mq-flow-section .mq-section-head {
  max-width: 920px;
  margin-bottom: 48px;
}

.mq-flow-section .mq-section-head .mq-section-label {
  min-height: 34px;
  padding: 0 14px;
  font-size: 15px;
}

.mq-flow-section .mq-section-head h2 {
  font-size: clamp(46px, 4.9vw, 64px);
  line-height: 1.14;
}

.mq-flow-section .mq-section-head p {
  font-size: 21px;
  line-height: 1.78;
}

.mq-flow-section .mq-rule-example {
  max-width: 1100px;
  padding: 48px 58px;
  gap: 30px;
  border-radius: 34px;
}

.mq-flow-section .mq-rule-card-head {
  gap: 12px;
  transform: translateX(-27px);
  font-size: 18px;
}

.mq-flow-section .mq-rule-icon {
  width: 46px;
  height: 46px;
  font-size: 24px;
}

.mq-flow-section .mq-rule-phrase {
  max-width: 960px;
  gap: 18px;
}

.mq-flow-section .mq-rule-phrase-line,
.mq-flow-section .mq-rule-phrase-sub {
  gap: 14px;
}

.mq-flow-section .mq-rule-pill {
  min-height: 52px;
  padding: 0 24px;
  font-size: 22px;
}

.mq-flow-section .mq-rule-pill-soft {
  min-height: 44px;
  padding: 0 18px;
  font-size: 20px;
}

.mq-flow-section .mq-rule-phrase-sub {
  font-size: 21px;
}

.mq-flow-section .mq-rule-operator {
  font-size: 23px;
}

.mq-flow-section .mq-condition-flow {
  max-width: 980px;
  gap: 20px;
}

.mq-flow-section .mq-condition-label {
  font-size: 18px;
}

.mq-flow-section .mq-condition-image {
  width: min(100%, 980px);
  border-radius: 24px;
}

.mq-flow-section .mq-chart-breakout-bubble {
  min-height: clamp(28px, 2.6vw, 38px);
  padding: 0 clamp(16px, 2.2vw, 28px);
  font-size: clamp(14px, 1.25vw, 18px);
}

.mq-flow-section .mq-rule-arrow {
  width: 52px;
  height: 52px;
  margin: 24px auto 42px;
}

.mq-flow-section .mq-rule-arrow svg {
  width: 26px;
  height: 26px;
}

.mq-flow-section .mq-timeline-flow {
  max-width: 1280px;
  padding-top: 18px;
}

.mq-flow-section .mq-timeline-flow::before {
  top: 63px;
}

.mq-flow-section .mq-timeline-node {
  gap: 16px;
}

.mq-flow-section .mq-timeline-node:not(:last-child)::after,
.mq-flow-section .mq-timeline-node:nth-child(4)::after {
  top: 49px;
  right: -13px;
  width: 32px;
  height: 32px;
  font-size: 20px;
}

.mq-flow-section .mq-timeline-dot {
  width: 96px;
  height: 96px;
}

.mq-flow-section .mq-timeline-dot b {
  width: 36px;
  height: 36px;
  font-size: 17px;
}

.mq-flow-section .mq-timeline-dot .mq-step-icon {
  width: 58px;
  height: 58px;
  font-size: 30px;
}

.mq-flow-section .mq-timeline-copy {
  gap: 10px;
}

.mq-flow-section .mq-timeline-node strong {
  font-size: 22px;
}

.mq-flow-section .mq-timeline-node i {
  min-height: 36px;
  padding: 0 15px;
  font-size: 17px;
}

.mq-flow-section .mq-flow-note {
  max-width: 860px;
  margin-top: 52px;
  padding: 26px 34px;
}

.mq-flow-section .mq-flow-note .mq-flow-note-icon {
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.mq-flow-section .mq-flow-note-single strong {
  font-size: 22px;
}

@media (max-width: 720px) {
  .mq-flow-section .mq-container {
    width: min(100% - 24px, var(--mq-max));
  }

  .mq-flow-section .mq-section-head {
    margin-bottom: 34px;
  }

  .mq-flow-section .mq-section-head .mq-section-label {
    min-height: 32px;
    font-size: 14.5px;
  }

  .mq-flow-section .mq-section-head h2 {
    font-size: clamp(36px, 10.4vw, 48px);
  }

  .mq-flow-section .mq-section-head p {
    font-size: 17.5px;
  }

  .mq-flow-section .mq-rule-example {
    padding: 30px 16px;
    gap: 24px;
    border-radius: 26px;
  }

  .mq-flow-section .mq-rule-card-head {
    transform: none;
    font-size: 16px;
  }

  .mq-flow-section .mq-rule-icon {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .mq-flow-section .mq-rule-phrase {
    gap: 18px;
  }

  .mq-flow-section .mq-rule-phrase-line,
  .mq-flow-section .mq-rule-phrase-sub {
    gap: 10px;
  }

  .mq-flow-section .mq-rule-pill {
    min-height: 46px;
    padding: 0 18px;
    font-size: 17.5px;
  }

  .mq-flow-section .mq-rule-pill-soft {
    min-height: 40px;
    padding: 0 15px;
    font-size: 16px;
  }

  .mq-flow-section .mq-rule-phrase-sub {
    font-size: 16.5px;
  }

  .mq-flow-section .mq-rule-operator {
    font-size: 18px;
  }

  .mq-flow-section .mq-condition-label {
    font-size: 16px;
  }

  .mq-flow-section .mq-condition-image {
    width: min(100% + 44px, 100vw - 8px);
    margin-right: -22px;
    margin-left: -22px;
    border-radius: 18px;
  }

  .mq-flow-section .mq-chart-breakout-bubble {
    font-size: clamp(10px, 3.3vw, 14px);
  }

  .mq-flow-section .mq-rule-arrow {
    width: 46px;
    height: 46px;
    margin: 22px auto 36px;
  }

  .mq-flow-section .mq-timeline-node,
  .mq-flow-section .mq-timeline-node:nth-child(5) {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 32px;
  }

  .mq-flow-section .mq-timeline-flow::before {
    left: 36px;
  }

  .mq-flow-section .mq-timeline-node:not(:last-child)::after,
  .mq-flow-section .mq-timeline-node:nth-child(4)::after {
    left: 25px;
    bottom: 4px;
  }

  .mq-flow-section .mq-timeline-dot {
    width: 72px;
    height: 72px;
  }

  .mq-flow-section .mq-timeline-dot b {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .mq-flow-section .mq-timeline-dot .mq-step-icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .mq-flow-section .mq-timeline-node strong {
    font-size: 20px;
  }

  .mq-flow-section .mq-timeline-node i {
    min-height: 34px;
    font-size: 15px;
  }

  .mq-flow-section .mq-flow-note {
    margin-top: 36px;
    padding: 22px 20px;
  }

  .mq-flow-section .mq-flow-note-single {
    padding-right: 20px;
    padding-left: 58px;
    text-align: left;
  }

  .mq-flow-section .mq-flow-note-single strong {
    font-size: 18px;
    text-align: left;
  }
}

/* System flow contrast and step colors */
.mq-flow-section .mq-section-head p,
.mq-flow-section .mq-rule-phrase-sub {
  color: #475569;
}

.mq-flow-section .mq-timeline-node {
  --step-color: #1e40af;
  --step-soft: rgba(30, 64, 175, 0.11);
  --step-border: rgba(30, 64, 175, 0.28);
  --step-shadow: rgba(30, 64, 175, 0.13);
  transition: transform 0.25s ease;
}

.mq-flow-section .mq-timeline-node:nth-child(1) {
  --step-color: #1e40af;
  --step-soft: rgba(30, 64, 175, 0.11);
  --step-border: rgba(30, 64, 175, 0.3);
  --step-shadow: rgba(30, 64, 175, 0.14);
}

.mq-flow-section .mq-timeline-node:nth-child(2) {
  --step-color: #2563eb;
  --step-soft: rgba(37, 99, 235, 0.11);
  --step-border: rgba(37, 99, 235, 0.3);
  --step-shadow: rgba(37, 99, 235, 0.14);
}

.mq-flow-section .mq-timeline-node:nth-child(3) {
  --step-color: #f97316;
  --step-soft: rgba(249, 115, 22, 0.12);
  --step-border: rgba(249, 115, 22, 0.34);
  --step-shadow: rgba(249, 115, 22, 0.16);
}

.mq-flow-section .mq-timeline-node:nth-child(4) {
  --step-color: #10b981;
  --step-soft: rgba(16, 185, 129, 0.12);
  --step-border: rgba(16, 185, 129, 0.32);
  --step-shadow: rgba(16, 185, 129, 0.15);
}

.mq-flow-section .mq-timeline-node:nth-child(5) {
  --step-color: #6366f1;
  --step-soft: rgba(99, 102, 241, 0.12);
  --step-border: rgba(99, 102, 241, 0.32);
  --step-shadow: rgba(99, 102, 241, 0.15);
}

.mq-flow-section .mq-timeline-node:nth-child(6) {
  --step-color: #ef4444;
  --step-soft: rgba(239, 68, 68, 0.11);
  --step-border: rgba(239, 68, 68, 0.32);
  --step-shadow: rgba(239, 68, 68, 0.15);
}

.mq-flow-section .mq-timeline-node:nth-child(7) {
  --step-color: #059669;
  --step-soft: rgba(5, 150, 105, 0.12);
  --step-border: rgba(5, 150, 105, 0.32);
  --step-shadow: rgba(5, 150, 105, 0.15);
}

.mq-flow-section .mq-timeline-flow::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.28), transparent);
}

.mq-flow-section .mq-timeline-dot {
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--step-border);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.07),
    0 0 0 5px var(--step-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mq-flow-section .mq-timeline-dot b {
  background: #2563eb;
  color: #fff;
  box-shadow:
    0 9px 20px rgba(37, 99, 235, 0.3),
    0 0 0 4px rgba(37, 99, 235, 0.1);
}

.mq-flow-section .mq-timeline-dot .mq-step-icon {
  background: var(--step-soft);
  border: 1px solid var(--step-border);
  color: var(--step-color);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.mq-flow-section .mq-timeline-node strong {
  color: #0f172a;
  font-weight: 950;
}

.mq-flow-section .mq-timeline-node i {
  background: var(--step-soft);
  border: 1px solid var(--step-border);
  color: var(--step-color);
  font-weight: 950;
}

.mq-flow-section .mq-timeline-node:not(:last-child)::after,
.mq-flow-section .mq-timeline-node:nth-child(4)::after {
  --mq-arrow-shift-x: 4px;
  --mq-arrow-shift-y: 0;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(37, 99, 235, 0.84);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
  animation: mqTimelineArrowSlide 2.8s ease-in-out infinite;
}

@media (hover: hover) {
  .mq-flow-section .mq-timeline-node:hover {
    transform: translateY(-4px);
  }

  .mq-flow-section .mq-timeline-node:hover .mq-timeline-dot {
    border-color: var(--step-color);
    box-shadow:
      0 22px 46px rgba(15, 23, 42, 0.1),
      0 0 0 7px var(--step-soft),
      0 12px 26px var(--step-shadow);
  }
}

.mq-flow-section .mq-flow-note-single {
  background: linear-gradient(90deg, #eaf2ff 0%, #f8fbff 100%);
  border: 1px solid #bfdbfe;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-icon {
  background: #e8f1ff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.mq-flow-section .mq-flow-note-single strong {
  color: #0f172a;
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-highlight {
  color: #2563eb;
  font-weight: 900;
}

@keyframes mqTimelineArrowSlide {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(var(--mq-arrow-shift-x), var(--mq-arrow-shift-y));
  }
}

@media (max-width: 720px) {
  .mq-flow-section .mq-timeline-flow::before {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.26), rgba(37, 99, 235, 0.1));
  }

  .mq-flow-section .mq-timeline-node:not(:last-child)::after,
  .mq-flow-section .mq-timeline-node:nth-child(4)::after {
    --mq-arrow-shift-x: 0;
    --mq-arrow-shift-y: 4px;
    color: rgba(37, 99, 235, 0.86);
  }
}

/* Program intro assembly polish */
.mq-program-section {
  position: relative;
  isolation: isolate;
}

.mq-program-section::before {
  content: "";
  position: absolute;
  inset: 6% max(24px, calc((100% - 1180px) / 2)) 10%;
  z-index: -1;
  border-radius: 36px;
  opacity: 0.2;
  background:
    linear-gradient(rgba(37, 99, 235, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 18% 24%, rgba(249, 115, 22, 0.12), transparent 28%),
    radial-gradient(circle at 82% 46%, rgba(16, 185, 129, 0.11), transparent 28%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 78%);
  pointer-events: none;
}

.mq-program-section .mq-container {
  position: relative;
  z-index: 1;
}

.mq-program-copy p {
  color: #334155;
}

.mq-program-emphasis {
  font-weight: 950;
}

.mq-program-emphasis-blue {
  color: #1d4ed8;
}

.mq-program-emphasis-orange {
  color: #f97316;
}

.mq-program-emphasis-green {
  color: #10b981;
}

.mq-program-actions .mq-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.mq-program-actions .mq-btn-primary {
  animation: mqProgramCtaGlow 3s ease-in-out infinite;
}

.mq-program-actions .mq-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.mq-program-actions .mq-btn-secondary:hover {
  transform: translateY(-3px);
  background: #eef5ff;
  border-color: #bfdbfe;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.1);
}

.mq-program-callout {
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 34px;
  background: linear-gradient(90deg, #eaf2ff 0%, #f8fbff 100%);
  border: 1px solid #bfdbfe;
  color: #0f172a;
  text-align: left;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.mq-program-callout-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #1d4ed8;
  border: 1px solid rgba(37, 99, 235, 0.18);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.1);
}

.mq-program-callout-icon svg,
.mq-program-step-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-program-callout strong {
  color: #0f172a;
  font-size: clamp(20px, 1.85vw, 27px);
  line-height: 1.42;
  font-weight: 950;
}

.mq-program-callout-warn {
  color: #ea580c;
}

.mq-program-callout small {
  display: inline-block;
  margin-top: 8px;
  color: #475569;
  font-size: 0.82em;
  line-height: 1.55;
  font-weight: 850;
}

.mq-assembly-flow {
  position: relative;
  width: min(100%, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 2px auto 30px;
  padding: 20px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 219, 254, 0.72);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
  overflow: hidden;
}

.mq-assembly-chip,
.mq-assembly-modules span {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 950;
}

.mq-assembly-chip {
  padding: 0 24px;
  background: #fff;
  border: 1px solid rgba(191, 219, 254, 0.86);
  color: #0f172a;
}

.mq-assembly-input {
  color: #1e40af;
}

.mq-assembly-output {
  color: #059669;
  border-color: rgba(5, 150, 105, 0.24);
  background: rgba(236, 253, 245, 0.72);
}

.mq-assembly-modules {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.mq-assembly-modules span {
  padding: 0 20px;
  border: 1px solid transparent;
}

.mq-assembly-modules .is-map,
.mq-assembly-modules .is-watch {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
}

.mq-assembly-modules .is-alarm {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.26);
  color: #ea580c;
}

.mq-assembly-modules .is-guard {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
  color: #047857;
}

.mq-assembly-link {
  position: relative;
  flex: 0 1 66px;
  height: 1px;
  min-width: 34px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.48));
  overflow: visible;
}

.mq-assembly-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
  transform: translate(-50%, -50%);
  animation: mqAssemblyDot 2.9s ease-in-out infinite;
}

.mq-assembly-link-late::after {
  animation-delay: 0.7s;
}

.mq-program-step-grid article {
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mq-program-step-grid article b {
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.mq-program-step-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 24px;
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.mq-program-step-grid article:nth-child(2) .mq-program-step-icon {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
  border-color: rgba(249, 115, 22, 0.22);
}

.mq-program-step-grid article:nth-child(3) .mq-program-step-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
  border-color: rgba(16, 185, 129, 0.22);
}

.mq-program-step-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-areas:
    "number title"
    "icon body";
  align-items: center;
  column-gap: 14px;
  row-gap: 16px;
}

.mq-program-step-grid article b {
  grid-area: number;
  margin-bottom: 0;
}

.mq-program-step-icon {
  grid-area: icon;
  margin-bottom: 0;
}

.mq-program-step-grid strong {
  grid-area: title;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.25;
}

.mq-program-step-grid p {
  grid-area: body;
  margin-top: 0;
}

.mq-program-steps .mq-program-step-grid article {
  opacity: 0;
  transform: translateY(18px);
}

.mq-program-steps.visible .mq-program-step-grid article {
  animation: mqProgramCardFadeUp 0.65s ease forwards;
}

.mq-program-steps.visible .mq-program-step-grid article:nth-child(2) {
  animation-delay: 0.12s;
}

.mq-program-steps.visible .mq-program-step-grid article:nth-child(3) {
  animation-delay: 0.24s;
}

@media (hover: hover) {
  .mq-program-step-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.28);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.09);
  }
}

@keyframes mqProgramCtaGlow {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.16);
  }

  50% {
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.28);
  }
}

@keyframes mqAssemblyDot {
  0% {
    left: 0;
    opacity: 0;
  }

  20%,
  78% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes mqProgramCardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .mq-program-section::before {
    inset: 4% 12px 8%;
    background-size: 54px 54px, 54px 54px, 100% 100%, 100% 100%;
  }

  .mq-program-copy p br {
    display: none;
  }

  .mq-program-callout {
    grid-template-columns: 44px auto;
    justify-content: center;
    gap: 14px;
    padding: 22px 18px;
    text-align: left;
  }

  .mq-program-callout-icon {
    width: 44px;
    height: 44px;
  }

  .mq-program-callout strong {
    font-size: 18px;
    line-height: 1.45;
  }

  .mq-assembly-flow {
    flex-direction: column;
    gap: 13px;
    padding: 20px 16px;
  }

  .mq-assembly-link {
    width: 1px;
    height: 34px;
    min-width: 0;
    flex: 0 0 34px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(37, 99, 235, 0.48));
  }

  .mq-assembly-link::after {
    top: 0;
    left: 50%;
    animation-name: mqAssemblyDotVertical;
  }

  .mq-assembly-modules {
    max-width: 100%;
    gap: 7px;
  }

  .mq-assembly-chip,
  .mq-assembly-modules span {
    min-height: 46px;
    font-size: 16px;
  }

  .mq-assembly-chip {
    padding: 0 22px;
  }

  .mq-assembly-modules span {
    padding: 0 14px;
  }
}

@media (max-width: 420px) {
  .mq-assembly-modules {
    gap: 5px;
  }

  .mq-assembly-modules span {
    min-height: 42px;
    padding: 0 10px;
    font-size: 14.5px;
  }
}

@keyframes mqAssemblyDotVertical {
  0% {
    top: 0;
    opacity: 0;
  }

  20%,
  78% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.mq-process-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
}

.mq-process-section .mq-section-head {
  margin-bottom: 48px;
}

.mq-process-group-grid {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.mq-process-group-grid .mq-process-group {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #bfdbfe;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mq-process-group-grid .mq-process-group:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -24px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.1);
  transform: translateY(-50%);
}

@media (hover: hover) {
  .mq-process-group-grid .mq-process-group:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.42);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.09);
  }
}

.mq-process-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(191, 219, 254, 0.72);
}

.mq-process-group-head span {
  color: #0f172a;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.mq-process-group-head em {
  min-width: 68px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.mq-process-step-list {
  display: grid;
  gap: 16px;
}

.mq-process-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(191, 219, 254, 0.62);
}

.mq-process-step b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.mq-process-step h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 950;
}

.mq-process-step p {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.72;
}

.mq-process-step-safe {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.72), #fff 100%);
  border-color: rgba(249, 115, 22, 0.28);
}

.mq-process-step-safe b {
  background: #f97316;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.18);
}

.mq-process-note {
  width: min(100%, 920px);
  margin: 28px auto 0;
  padding: 18px 24px;
  display: grid;
  gap: 6px;
  justify-items: center;
  border-radius: 18px;
  background: linear-gradient(90deg, #eaf2ff 0%, #f8fbff 100%);
  border: 1px solid #bfdbfe;
  text-align: center;
  line-height: 1.7;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.mq-process-note strong {
  color: #0f172a;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 950;
}

.mq-process-note strong span {
  color: #ea580c;
}

.mq-process-note small {
  color: #475569;
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 750;
}

@media (max-width: 1080px) {
  .mq-process-group-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mq-process-group-grid .mq-process-group:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -31px;
    content: "↓";
    transform: translateX(50%);
  }
}

@media (max-width: 720px) {
  .mq-process-section .mq-section-head {
    margin-bottom: 30px;
  }

  .mq-process-group-grid .mq-process-group {
    padding: 22px;
    border-radius: 20px;
  }

  .mq-process-group-head {
    align-items: flex-start;
    padding-bottom: 14px;
  }

  .mq-process-group-head span {
    font-size: 26px;
  }

  .mq-process-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .mq-process-step b {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .mq-process-step h3 {
    font-size: 20px;
  }

  .mq-process-step p {
    font-size: 16.5px;
  }

  .mq-process-note {
    margin-top: 24px;
    padding: 16px 18px;
    justify-items: start;
    text-align: left;
  }

  .mq-process-note strong {
    font-size: 18px;
  }

  .mq-process-note small {
    font-size: 15.5px;
  }
}

.mq-cta-box .mq-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mq-cta-box .mq-cta-actions .mq-btn {
  width: 100%;
  min-width: 0;
  padding-right: 16px;
  padding-left: 16px;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .mq-cta-box .mq-cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-rule-example,
  .mq-rule-shine,
  .mq-rule-bridge small,
  .mq-rule-sentence,
  .mq-chart-breakout-bubble,
  .mq-chart-breakout-focus,
  .mq-chart-tip-light,
  .mq-chart-tip-light::after,
  .mq-rule-sentence::after,
  .mq-problem .mq-photo-card::after,
  .mq-monitor-toast span,
  .hero-gradient-text,
  .mq-flow-section .mq-timeline-node::after,
  .mq-program-actions .mq-btn-primary,
  .mq-assembly-link::after,
  .mq-program-steps.visible .mq-program-step-grid article,
  .mq-problem-title-current,
  .mq-problem-title-solution {
    animation: none;
  }

  .mq-rule-example {
    translate: 0 0;
    scale: 1;
  }

  .mq-rule-sentence {
    transform: none;
    text-shadow: none;
  }

  .mq-chart-breakout-bubble {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
  }

  .mq-chart-breakout-focus {
    display: none;
  }

  .mq-rule-sentence::after {
    opacity: 0.3;
    transform: scaleX(0.6);
  }

  .float-slow {
    animation: none;
  }

  .mq-problem .mq-photo-card::after,
  .mq-monitor-toast {
    display: none;
  }

  .hero-gradient-text {
    transform: none;
    filter: none;
  }

  .mq-problem-title-current,
  .mq-problem-title-solution {
    transition: none;
  }

  .mq-problem-title-current {
    opacity: 1;
    transform: none;
  }

  .mq-problem-title-solution {
    opacity: 0;
    transform: translateY(7px);
  }

  .mq-type-line {
    clip-path: inset(0 0 0 0);
    animation: none;
  }

  .mq-type-line-two::after {
    display: none;
  }

  .mq-flow-section .mq-timeline-node,
  .mq-flow-section .mq-timeline-dot,
  .mq-flow-section .mq-timeline-dot .mq-step-icon {
    transition: none;
  }

  .mq-flow-section .mq-timeline-node:not(:last-child)::after,
  .mq-flow-section .mq-timeline-node:nth-child(4)::after {
    animation: none;
    transform: none;
  }

  .mq-program-actions .mq-btn,
  .mq-program-step-grid article {
    transition: none;
  }

  .mq-program-steps .mq-program-step-grid article {
    opacity: 1;
    transform: none;
  }
}

.contact-method-preference {
  max-width: 430px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-method-preference legend {
  grid-column: 1 / -1;
}

.contact-method-preference label {
  min-width: 0;
}

.contact-method-preference + .form-actions {
  align-items: center;
  justify-content: flex-end;
}

.contact-method-preference + .form-actions .mq-btn {
  min-width: 220px;
}

@media (max-width: 720px) {
  .contact-method-preference {
    max-width: none;
  }

  .contact-method-preference + .form-actions {
    justify-content: stretch;
  }

  .contact-method-preference + .form-actions .mq-btn {
    width: 100%;
  }
}

/* Puzzle-style condition builder */
.mq-flow-section .mq-rule-phrase-line {
  align-items: center;
}

.mq-flow-section .mq-rule-pill {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-color: #93c5fd;
  border-radius: 18px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: mqPuzzlePieceIn 0.54s ease forwards;
}

.mq-flow-section .mq-rule-pill::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: -1;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: inherit;
  border: 1px solid currentColor;
  opacity: 0.32;
  transform: translateY(-50%);
}

.mq-flow-section .mq-rule-phrase-line .mq-rule-pill:nth-of-type(1) {
  animation-delay: 0s;
}

.mq-flow-section .mq-rule-phrase-line .mq-rule-pill:nth-of-type(2) {
  animation-delay: 0.14s;
}

.mq-flow-section .mq-rule-pill-result {
  border-color: #fdba74;
  background: #fff7ed;
  color: #ea580c;
  font-weight: 950;
  animation-name: mqPuzzleResultIn, mqPuzzleResultGlow;
  animation-duration: 0.54s, 2.8s;
  animation-timing-function: ease, ease-in-out;
  animation-delay: 0.3s, 0.96s;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}

.mq-flow-section .mq-rule-pill-result::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border-right: 1px solid rgba(253, 186, 116, 0.72);
  transform: translateY(-50%);
}

.mq-flow-section .mq-rule-pill-result::after {
  display: none;
}

.mq-flow-section .mq-rule-pill-soft {
  border-color: rgba(147, 197, 253, 0.86);
  border-radius: 15px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 900;
  animation-delay: 0.42s;
}

.mq-flow-section .mq-rule-pill-soft::after {
  right: -7px;
  width: 14px;
  height: 14px;
}

.mq-flow-section .mq-rule-pill-loss {
  border-color: rgba(248, 113, 113, 0.46);
  background: #fff1f2;
  color: #dc2626;
  animation-delay: 0.54s;
}

.mq-flow-section .mq-rule-pill-close {
  border-color: rgba(251, 146, 60, 0.5);
  background: #fff7ed;
  color: #ea580c;
  animation-delay: 0.66s;
}

.mq-flow-section .mq-rule-operator {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: #64748b;
  opacity: 0;
  font-size: 18px;
  font-weight: 950;
  transform: translateY(8px) scale(0.94);
  animation: mqPuzzleOperatorIn 0.44s ease forwards;
}

.mq-flow-section .mq-rule-operator-plus {
  border-radius: 999px;
  background:
    linear-gradient(#64748b, #64748b) center / 12px 2px no-repeat,
    linear-gradient(#64748b, #64748b) center / 2px 12px no-repeat;
  color: transparent;
  animation-delay: 0.1s;
}

.mq-flow-section .mq-rule-operator-arrow {
  animation-delay: 0.23s;
}

@keyframes mqPuzzlePieceIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mqPuzzleResultIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mqPuzzleResultGlow {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.1);
  }

  50% {
    box-shadow:
      0 16px 32px rgba(249, 115, 22, 0.18),
      0 0 0 7px rgba(249, 115, 22, 0.08);
  }
}

@keyframes mqPuzzleOperatorIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.94);
  }

  to {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
}

@keyframes mqPuzzleOperatorMobileIn {
  from {
    opacity: 0;
    transform: rotate(90deg) translateX(-8px) scale(0.94);
  }

  to {
    opacity: 0.8;
    transform: rotate(90deg) translateX(0) scale(1);
  }
}

@media (max-width: 720px) {
  .mq-flow-section .mq-rule-phrase-line {
    flex-direction: column;
    gap: 8px;
  }

  .mq-flow-section .mq-rule-operator-plus {
    width: 26px;
    height: 26px;
  }

  .mq-flow-section .mq-rule-operator-arrow {
    transform: rotate(90deg);
    animation-name: mqPuzzleOperatorMobileIn;
  }

  .mq-flow-section .mq-rule-pill {
    width: min(100%, 260px);
  }

  .mq-flow-section .mq-rule-pill::after,
  .mq-flow-section .mq-rule-pill-result::before {
    display: none;
  }

  .mq-flow-section .mq-rule-phrase-sub {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-flow-section .mq-rule-pill,
  .mq-flow-section .mq-rule-pill-result,
  .mq-flow-section .mq-rule-operator {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .mq-flow-section .mq-rule-operator-arrow {
    transform: none;
  }
}

/* Final puzzle-card condition UI */
.mq-flow-section .mq-puzzle-builder {
  max-width: 980px;
  gap: 24px;
}

.mq-flow-section .mq-puzzle-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.mq-flow-section .mq-puzzle-row-main {
  gap: 20px;
}

.mq-flow-section .mq-puzzle-row-sub {
  gap: 14px;
  margin-top: -2px;
}

.mq-flow-section .mq-puzzle-piece {
  position: relative;
  isolation: isolate;
  min-height: 86px;
  min-width: 168px;
  display: inline-grid;
  place-items: center;
  gap: 8px;
  padding: 16px 22px;
  border: 1px solid #93c5fd;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
  color: #1d4ed8;
  box-shadow:
    0 14px 26px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(14px);
  animation: mqPuzzleCardIn 0.56s ease forwards;
}

.mq-flow-section .mq-puzzle-piece::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 999px;
  background: inherit;
  box-shadow: 7px 0 14px rgba(37, 99, 235, 0.06);
  transform: translateY(-50%);
}

.mq-flow-section .mq-puzzle-piece-middle::before,
.mq-flow-section .mq-puzzle-piece-result::before,
.mq-flow-section .mq-puzzle-piece-small::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -14px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(147, 197, 253, 0.78);
  transform: translateY(-50%);
}

.mq-flow-section .mq-puzzle-piece svg {
  width: 29px;
  height: 29px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-flow-section .mq-puzzle-piece strong {
  color: currentColor;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
  white-space: nowrap;
}

.mq-flow-section .mq-puzzle-piece-blue {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
  color: #1d4ed8;
}

.mq-flow-section .mq-puzzle-piece-result {
  border-color: #fdba74;
  background: linear-gradient(180deg, #fffaf5 0%, #fff7ed 100%);
  color: #ea580c;
  font-weight: 950;
  box-shadow:
    0 16px 30px rgba(249, 115, 22, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: mqPuzzleCardIn 0.56s ease 0.3s forwards, mqPuzzleResultPulse 2.7s ease-in-out 1s infinite;
}

.mq-flow-section .mq-puzzle-piece-result::before {
  border-color: rgba(253, 186, 116, 0.86);
}

.mq-flow-section .mq-puzzle-piece-result::after {
  border-color: rgba(253, 186, 116, 0.86);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.mq-flow-section .mq-puzzle-piece-result::marker {
  display: none;
}

.mq-flow-section .mq-puzzle-piece-result {
  --accent-color: #f97316;
}

.mq-flow-section .mq-puzzle-piece-result > strong::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -12px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #f97316;
  border-right: 3px solid #f97316;
  transform: rotate(-18deg);
}

.mq-flow-section .mq-puzzle-piece-result > strong::before {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: #f97316;
  transform: rotate(8deg);
}

.mq-flow-section .mq-puzzle-row-main .mq-puzzle-piece:nth-of-type(1) {
  animation-delay: 0s;
}

.mq-flow-section .mq-puzzle-row-main .mq-puzzle-piece:nth-of-type(2) {
  animation-delay: 0.16s;
}

.mq-flow-section .mq-puzzle-piece-small {
  min-width: 92px;
  min-height: 70px;
  gap: 5px;
  padding: 12px 16px;
  border-radius: 11px;
}

.mq-flow-section .mq-puzzle-piece-small::after {
  right: -12px;
  width: 22px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-small::before {
  left: -11px;
  width: 22px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-small svg {
  width: 24px;
  height: 24px;
}

.mq-flow-section .mq-puzzle-piece-small strong {
  font-size: 17px;
}

.mq-flow-section .mq-puzzle-piece-profit {
  border-color: rgba(147, 197, 253, 0.88);
  background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
  color: #1d4ed8;
  animation-delay: 0.44s;
}

.mq-flow-section .mq-puzzle-piece-loss {
  border-color: rgba(248, 113, 113, 0.48);
  background: linear-gradient(180deg, #fff8f8 0%, #fff1f2 100%);
  color: #dc2626;
  animation-delay: 0.56s;
}

.mq-flow-section .mq-puzzle-piece-loss::before,
.mq-flow-section .mq-puzzle-piece-loss::after {
  border-color: rgba(248, 113, 113, 0.48);
}

.mq-flow-section .mq-puzzle-piece-close {
  border-color: rgba(251, 146, 60, 0.52);
  background: linear-gradient(180deg, #fffaf5 0%, #fff7ed 100%);
  color: #ea580c;
  animation-delay: 0.68s;
}

.mq-flow-section .mq-puzzle-piece-close::before,
.mq-flow-section .mq-puzzle-piece-close::after {
  border-color: rgba(251, 146, 60, 0.52);
}

.mq-flow-section .mq-puzzle-text {
  color: #334155;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.mq-flow-section .mq-puzzle-join {
  flex: 0 0 auto;
  color: #64748b;
  font-weight: 950;
  opacity: 0;
  transform: translateY(10px);
  animation: mqPuzzleJoinIn 0.42s ease forwards;
}

.mq-flow-section .mq-puzzle-join-plus {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  font-size: 17px;
  animation-delay: 0.09s;
}

.mq-flow-section .mq-puzzle-join-arrow {
  width: 28px;
  display: inline-grid;
  place-items: center;
  font-size: 27px;
  animation-delay: 0.24s;
}

.mq-puzzle-safety-note {
  width: min(100%, 900px);
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 4px;
  padding: 20px 28px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: linear-gradient(90deg, #eaf2ff 0%, #f8fbff 100%);
  color: #0f172a;
  text-align: left;
}

.mq-puzzle-safety-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.mq-puzzle-safety-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-puzzle-safety-note strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 950;
}

.mq-puzzle-safety-note em {
  color: #ea580c;
  font-style: normal;
}

.mq-puzzle-safety-warning {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
  font-weight: 950;
}

.mq-puzzle-safety-note p {
  margin: 6px 0 0;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.6;
  font-weight: 750;
}

@keyframes mqPuzzleCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mqPuzzleJoinIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.94);
  }

  to {
    opacity: 0.86;
    transform: translateY(0) scale(1);
  }
}

@keyframes mqPuzzleResultPulse {
  0%,
  100% {
    box-shadow:
      0 16px 30px rgba(249, 115, 22, 0.14),
      0 0 0 0 rgba(249, 115, 22, 0);
  }

  50% {
    box-shadow:
      0 20px 38px rgba(249, 115, 22, 0.2),
      0 0 0 8px rgba(249, 115, 22, 0.07);
  }
}

@media (max-width: 720px) {
  .mq-flow-section .mq-puzzle-row-main {
    flex-direction: column;
    gap: 10px;
  }

  .mq-flow-section .mq-puzzle-piece {
    width: min(100%, 270px);
    min-width: 0;
  }

  .mq-flow-section .mq-puzzle-piece::before,
  .mq-flow-section .mq-puzzle-piece::after,
  .mq-flow-section .mq-puzzle-piece-result > strong::before,
  .mq-flow-section .mq-puzzle-piece-result > strong::after {
    display: none;
  }

  .mq-flow-section .mq-puzzle-join-arrow {
    transform: rotate(90deg);
  }

  .mq-flow-section .mq-puzzle-row-sub {
    justify-content: center;
  }

  .mq-flow-section .mq-puzzle-text {
    width: 100%;
    font-size: 17px;
    text-align: center;
  }

  .mq-puzzle-safety-note {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-flow-section .mq-puzzle-piece,
  .mq-flow-section .mq-puzzle-piece-result,
  .mq-flow-section .mq-puzzle-join {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Final puzzle polish: smaller attached tabs, no floating circles. */
.mq-flow-section .mq-puzzle-row-main {
  gap: 18px;
}

.mq-flow-section .mq-puzzle-row-sub {
  gap: 12px;
}

.mq-flow-section .mq-puzzle-piece {
  --piece-bg: #eff6ff;
  --piece-bg-top: #f8fbff;
  --piece-border: #93c5fd;
  --piece-shadow: rgba(37, 99, 235, 0.12);
  border-color: var(--piece-border);
  background: linear-gradient(180deg, var(--piece-bg-top) 0%, var(--piece-bg) 100%);
  box-shadow:
    0 14px 26px var(--piece-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: visible;
}

.mq-flow-section .mq-puzzle-piece::after {
  right: -8px;
  z-index: 1;
  width: 16px;
  height: 30px;
  border: 1px solid var(--piece-border);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: var(--piece-bg);
  opacity: 1;
  box-shadow: 5px 0 12px rgba(15, 23, 42, 0.05);
}

.mq-flow-section .mq-puzzle-piece-middle::before,
.mq-flow-section .mq-puzzle-piece-result::before,
.mq-flow-section .mq-puzzle-piece-small::before {
  left: -1px;
  z-index: 2;
  width: 12px;
  height: 30px;
  border: 1px solid var(--piece-border);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: #fff;
  box-shadow: none;
}

.mq-flow-section .mq-puzzle-piece > svg,
.mq-flow-section .mq-puzzle-piece > strong {
  position: relative;
  z-index: 3;
}

.mq-flow-section .mq-puzzle-piece-blue {
  --piece-bg: #eff6ff;
  --piece-bg-top: #f8fbff;
  --piece-border: #93c5fd;
  --piece-shadow: rgba(37, 99, 235, 0.12);
}

.mq-flow-section .mq-puzzle-piece-result {
  --piece-bg: #fff7ed;
  --piece-bg-top: #fffaf5;
  --piece-border: #fdba74;
  --piece-shadow: rgba(249, 115, 22, 0.14);
}

.mq-flow-section .mq-puzzle-piece-result::after,
.mq-flow-section .mq-puzzle-piece-close::after {
  display: none;
}

.mq-flow-section .mq-puzzle-piece-profit {
  --piece-bg: #eff6ff;
  --piece-bg-top: #f8fbff;
  --piece-border: #93c5fd;
  --piece-shadow: rgba(37, 99, 235, 0.1);
}

.mq-flow-section .mq-puzzle-piece-loss {
  --piece-bg: #fff1f2;
  --piece-bg-top: #fff8f8;
  --piece-border: rgba(248, 113, 113, 0.5);
  --piece-shadow: rgba(239, 68, 68, 0.1);
}

.mq-flow-section .mq-puzzle-piece-close {
  --piece-bg: #fff7ed;
  --piece-bg-top: #fffaf5;
  --piece-border: rgba(251, 146, 60, 0.56);
  --piece-shadow: rgba(249, 115, 22, 0.1);
}

.mq-flow-section .mq-puzzle-piece-small::before {
  width: 10px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-small::after {
  right: -7px;
  width: 14px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-profit::before {
  display: none;
}

.mq-flow-section .mq-puzzle-join-plus {
  width: 28px;
  height: 28px;
  margin: 0 -1px;
  color: #64748b;
  background: #f8fafc;
  border-color: #cbd5e1;
}

.mq-flow-section .mq-puzzle-join-arrow {
  margin: 0 -2px;
  color: #64748b;
}

.mq-flow-section .mq-puzzle-piece-result > strong::before,
.mq-flow-section .mq-puzzle-piece-result > strong::after {
  right: auto;
  left: calc(100% + 14px);
}

@media (max-width: 720px) {
  .mq-flow-section .mq-puzzle-row-main {
    flex-direction: column;
    gap: 10px;
  }

  .mq-flow-section .mq-puzzle-piece {
    width: min(100%, 270px);
    min-width: 0;
  }

  .mq-flow-section .mq-puzzle-piece::before,
  .mq-flow-section .mq-puzzle-piece::after,
  .mq-flow-section .mq-puzzle-piece-result > strong::before,
  .mq-flow-section .mq-puzzle-piece-result > strong::after {
    display: none;
  }

  .mq-flow-section .mq-puzzle-join-arrow {
    transform: rotate(90deg);
  }
}

/* Clear puzzle assembly: readable blocks with subtle interlocking sockets. */
.mq-flow-section .mq-puzzle-builder {
  max-width: 900px;
  gap: 24px;
}

.mq-flow-section .mq-puzzle-row {
  overflow: visible;
}

.mq-flow-section .mq-puzzle-row-main {
  gap: 16px;
}

.mq-flow-section .mq-puzzle-row-sub {
  gap: 10px;
}

.mq-flow-section .mq-puzzle-piece {
  --piece-bg: #eff6ff;
  --piece-bg-top: #fbfdff;
  --piece-border: #93c5fd;
  --piece-color: #1d4ed8;
  --piece-shadow: rgba(37, 99, 235, 0.13);
  min-width: 150px;
  min-height: 82px;
  padding: 15px 22px;
  border: 1.5px solid var(--piece-border);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--piece-bg-top) 0%, var(--piece-bg) 100%);
  color: var(--piece-color);
  box-shadow:
    0 14px 28px var(--piece-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: visible;
}

.mq-flow-section .mq-puzzle-piece svg,
.mq-flow-section .mq-puzzle-piece strong {
  position: relative;
  z-index: 3;
}

.mq-flow-section .mq-puzzle-piece svg {
  width: 30px;
  height: 30px;
}

.mq-flow-section .mq-puzzle-piece strong {
  font-size: 19px;
  letter-spacing: -0.01em;
}

.mq-flow-section .mq-puzzle-piece::before,
.mq-flow-section .mq-puzzle-piece::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 18px;
  height: 30px;
  border: 1.5px solid var(--piece-border);
  background: linear-gradient(180deg, var(--piece-bg-top) 0%, var(--piece-bg) 100%);
  transform: translateY(-50%);
}

.mq-flow-section .mq-puzzle-piece::after {
  right: -10px;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  box-shadow: 6px 0 12px var(--piece-shadow);
}

.mq-flow-section .mq-puzzle-piece::before {
  left: -1px;
  width: 12px;
  height: 30px;
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: #ffffff;
  box-shadow: none;
}

.mq-flow-section .mq-puzzle-piece-start::before,
.mq-flow-section .mq-puzzle-piece-result::after,
.mq-flow-section .mq-puzzle-piece-profit::before,
.mq-flow-section .mq-puzzle-piece-close::after {
  display: none;
}

.mq-flow-section .mq-puzzle-piece-middle::before,
.mq-flow-section .mq-puzzle-piece-result::before,
.mq-flow-section .mq-puzzle-piece-loss::before,
.mq-flow-section .mq-puzzle-piece-close::before {
  display: block;
}

.mq-flow-section .mq-puzzle-piece-blue,
.mq-flow-section .mq-puzzle-piece-profit {
  --piece-bg: #eff6ff;
  --piece-bg-top: #fbfdff;
  --piece-border: #93c5fd;
  --piece-color: #1d4ed8;
  --piece-shadow: rgba(37, 99, 235, 0.13);
}

.mq-flow-section .mq-puzzle-piece-result {
  --piece-bg: #fff7ed;
  --piece-bg-top: #fffaf5;
  --piece-border: #fdba74;
  --piece-color: #ea580c;
  --piece-shadow: rgba(249, 115, 22, 0.17);
  min-width: 170px;
}

.mq-flow-section .mq-puzzle-piece-loss {
  --piece-bg: #fff1f2;
  --piece-bg-top: #fff8f8;
  --piece-border: rgba(248, 113, 113, 0.62);
  --piece-color: #dc2626;
  --piece-shadow: rgba(239, 68, 68, 0.12);
}

.mq-flow-section .mq-puzzle-piece-close {
  --piece-bg: #fff7ed;
  --piece-bg-top: #fffaf5;
  --piece-border: rgba(251, 146, 60, 0.6);
  --piece-color: #ea580c;
  --piece-shadow: rgba(249, 115, 22, 0.12);
}

.mq-flow-section .mq-puzzle-piece-small {
  min-width: 84px;
  min-height: 66px;
  padding: 11px 16px;
  gap: 5px;
  border-radius: 12px;
}

.mq-flow-section .mq-puzzle-piece-small svg {
  width: 23px;
  height: 23px;
}

.mq-flow-section .mq-puzzle-piece-small strong {
  font-size: 16px;
}

.mq-flow-section .mq-puzzle-piece-small::before {
  width: 9px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-small::after {
  right: -8px;
  width: 14px;
  height: 22px;
}

.mq-flow-section .mq-puzzle-piece-result > strong::before {
  right: -18px;
  left: auto;
  top: -18px;
  width: 3px;
  height: 10px;
  background: #f97316;
}

.mq-flow-section .mq-puzzle-piece-result > strong::after {
  right: -31px;
  left: auto;
  top: -13px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #f97316;
  border-right: 3px solid #f97316;
}

.mq-flow-section .mq-puzzle-join {
  position: relative;
  z-index: 4;
}

.mq-flow-section .mq-puzzle-join-plus {
  width: 26px;
  height: 26px;
  margin: 0 -2px;
  border-color: #cbd5e1;
  background: #ffffff;
  color: #64748b;
  font-size: 16px;
  box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
}

.mq-flow-section .mq-puzzle-join-plus::before,
.mq-flow-section .mq-puzzle-join-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: #cbd5e1;
  transform: translate(-50%, -50%);
}

.mq-flow-section .mq-puzzle-join-arrow {
  width: 24px;
  margin: 0 -2px;
  color: #64748b;
  font-size: 28px;
  opacity: 0.9;
}

.mq-flow-section .mq-puzzle-text {
  color: #334155;
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .mq-flow-section .mq-puzzle-builder {
    gap: 18px;
    max-width: 100%;
  }

  .mq-flow-section .mq-puzzle-row-main {
    flex-direction: column;
    gap: 10px;
  }

  .mq-flow-section .mq-puzzle-piece {
    width: min(100%, 280px);
    min-width: 0;
  }

  .mq-flow-section .mq-puzzle-piece::before,
  .mq-flow-section .mq-puzzle-piece::after,
  .mq-flow-section .mq-puzzle-piece-result > strong::before,
  .mq-flow-section .mq-puzzle-piece-result > strong::after {
    display: none;
  }

  .mq-flow-section .mq-puzzle-join-plus::before,
  .mq-flow-section .mq-puzzle-join-arrow::before {
    width: 2px;
    height: 30px;
  }

  .mq-flow-section .mq-puzzle-join-arrow {
    transform: rotate(90deg);
  }

  .mq-flow-section .mq-puzzle-row-sub {
    gap: 8px;
  }

  .mq-flow-section .mq-puzzle-piece-small {
    width: auto;
    min-width: 78px;
  }
}

/* SVG jigsaw puzzle flow. The silhouette is drawn by SVG paths, not pill circles. */
.mq-flow-section .puzzle-flow {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  display: grid;
  gap: 24px;
  justify-items: center;
}

.mq-flow-section .puzzle-flow__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mq-flow-section .puzzle-flow__row--main {
  gap: 8px;
}

.mq-flow-section .puzzle-flow__row--sub {
  gap: 0;
  margin: 0;
}

.mq-flow-section .puzzle-piece {
  --puzzle-fill: #eff6ff;
  --puzzle-stroke: #93c5fd;
  --puzzle-text: #1d4ed8;
  --puzzle-shadow: rgba(37, 99, 235, 0.15);
  position: relative;
  isolation: isolate;
  width: 206px;
  height: 96px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--puzzle-text);
  opacity: 0;
  transform: translateY(12px);
  animation: puzzlePieceEnter 0.45s ease forwards;
}

.mq-flow-section .puzzle-piece--small {
  width: 124px;
  height: 76px;
}

.mq-flow-section .puzzle-piece__shape {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 14px 20px var(--puzzle-shadow));
}

.mq-flow-section .puzzle-piece__shape path {
  fill: var(--puzzle-fill);
  stroke: var(--puzzle-stroke);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.mq-flow-section .puzzle-piece__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 0 22px;
  transform: translateX(0);
}

.mq-flow-section .puzzle-piece--middle .puzzle-piece__content,
.mq-flow-section .puzzle-piece--end .puzzle-piece__content {
  transform: translateX(10px);
}

.mq-flow-section .puzzle-flow__row--main .puzzle-piece--end .puzzle-piece__content {
  transform: translateX(16px);
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece--middle .puzzle-piece__content,
.mq-flow-section .puzzle-flow__row--sub .puzzle-piece--end .puzzle-piece__content {
  transform: translateX(7px);
}

.mq-flow-section .puzzle-piece__icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-flow-section .puzzle-piece__label {
  color: currentColor;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.mq-flow-section .puzzle-piece__label--buy-alert {
  transform: translateX(8px);
}

.mq-flow-section .puzzle-piece__label--breakout {
  transform: translateX(-5px);
}

.mq-flow-section .puzzle-piece--small .puzzle-piece__content {
  gap: 4px;
  padding: 0 16px;
}

.mq-flow-section .puzzle-piece--small .puzzle-piece__icon {
  width: 23px;
  height: 23px;
}

.mq-flow-section .puzzle-piece--small .puzzle-piece__label {
  font-size: 16px;
}

.mq-flow-section .puzzle-piece--blue {
  --puzzle-fill: #eff6ff;
  --puzzle-stroke: #93c5fd;
  --puzzle-text: #1d4ed8;
  --puzzle-shadow: rgba(37, 99, 235, 0.16);
}

.mq-flow-section .puzzle-piece--orange {
  --puzzle-fill: #fff7ed;
  --puzzle-stroke: #fdba74;
  --puzzle-text: #ea580c;
  --puzzle-shadow: rgba(249, 115, 22, 0.18);
}

.mq-flow-section .puzzle-piece--red {
  --puzzle-fill: #fef2f2;
  --puzzle-stroke: #fca5a5;
  --puzzle-text: #dc2626;
  --puzzle-shadow: rgba(220, 38, 38, 0.12);
}

.mq-flow-section .puzzle-flow__row--main .puzzle-piece--start {
  animation-delay: 0s;
}

.mq-flow-section .puzzle-flow__row--main .puzzle-piece--middle {
  transform: translateX(-18px);
  animation: puzzlePieceSlideIn 0.5s ease 0.14s forwards;
}

.mq-flow-section .puzzle-flow__row--main .puzzle-piece--end {
  transform: translateX(-18px);
  animation: puzzlePieceSlideIn 0.5s ease 0.32s forwards;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece {
  animation-delay: 0.42s;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece--start {
  z-index: 3;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece--middle {
  z-index: 2;
  margin-left: -36px;
  animation-delay: 0.54s;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece--end {
  z-index: 1;
  margin-left: -36px;
  animation-delay: 0.66s;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-piece__shape {
  filter: drop-shadow(0 10px 14px rgba(15, 23, 42, 0.06));
}

.mq-flow-section .puzzle-connector {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  color: #64748b;
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  animation: puzzleConnectorIn 0.38s ease 0.1s forwards;
}

.mq-flow-section .puzzle-connector--plus {
  width: auto;
  height: auto;
  margin: 0 -4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
}

/* Target investor cards: subtle icons and motion */
.mq-target-grid {
  gap: 24px;
}

.mq-target-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mq-target-grid.visible article {
  opacity: 0;
  transform: translateY(18px);
  animation: mqTargetCardFadeUp 0.58s ease forwards;
}

.mq-target-grid.visible article:nth-child(2) {
  animation-delay: 0.1s;
}

.mq-target-grid.visible article:nth-child(3) {
  animation-delay: 0.2s;
}

.mq-target-grid.visible article:nth-child(4) {
  animation-delay: 0.3s;
}

.mq-target-card-head {
  display: contents;
}

.mq-target-card-head strong {
  min-width: 0;
  min-height: 34px;
  display: block;
  margin: 0 0 20px;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.mq-target-icon {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.mq-target-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-target-icon-blue {
  background: #eff6ff;
  border-color: rgba(147, 197, 253, 0.72);
  color: #2563eb;
}

.mq-target-icon-orange {
  background: #fff7ed;
  border-color: rgba(253, 186, 116, 0.72);
  color: #ea580c;
}

.mq-target-icon-green {
  background: #ecfdf5;
  border-color: rgba(110, 231, 183, 0.72);
  color: #10b981;
}

.mq-target-icon-purple {
  background: #f5f3ff;
  border-color: rgba(196, 181, 253, 0.72);
  color: #7c3aed;
}

.mq-target-grid article > span {
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.mq-target-problem {
  width: 100%;
  margin: 0 0 18px;
  color: #334155;
  font-size: 17px;
  line-height: 1.68;
  word-break: keep-all;
}

.mq-target-problem b,
.mq-target-help b {
  display: block;
  margin-bottom: 7px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.mq-target-problem span,
.mq-target-help span {
  display: block;
}

.mq-target-help {
  width: 100%;
  min-height: 112px;
  margin-top: auto;
  padding: 18px 18px 20px;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fbff 100%);
  color: #0f172a;
  font-size: 16.5px;
  font-weight: 760;
  line-height: 1.68;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  word-break: keep-all;
}

.mq-target-help b {
  color: #1d4ed8;
}

@media (hover: hover) {
  .mq-target-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(147, 197, 253, 0.88);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
  }
}

@keyframes mqTargetCardFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .mq-target-grid article {
    min-height: 318px;
    padding: 26px;
  }

  .mq-target-card-head {
    display: contents;
  }

  .mq-target-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 18px;
  }

  .mq-target-icon svg {
    width: 31px;
    height: 31px;
  }

  .mq-target-card-head strong {
    min-height: auto;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .mq-target-grid article > span {
    font-size: 16.5px;
  }

  .mq-target-problem {
    margin-bottom: 16px;
    font-size: 16.5px;
  }

  .mq-target-help {
    min-height: auto;
    padding: 16px;
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-target-grid.visible article {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Founder career tags live inside the founder card */
.mq-founder-panel > .mq-safety-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid #dbeafe;
}

.mq-founder-panel > .mq-safety-strip h4 {
  flex: 0 0 100%;
  margin: 0 0 2px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.mq-founder-panel > .mq-safety-strip span {
  width: auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fbff;
  border: 1px solid #bfdbfe;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  text-align: left;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.mq-founder-panel > .mq-safety-strip span::before {
  content: "✓";
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 9px;
  font-weight: 950;
}

@media (max-width: 720px) {
  .mq-founder-panel > .mq-safety-strip {
    gap: 8px;
    margin-top: 4px;
    padding-top: 18px;
  }

  .mq-founder-panel > .mq-safety-strip h4 {
    font-size: 15px;
  }

  .mq-founder-panel > .mq-safety-strip span {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 13px;
  }
}

.mq-flow-section .puzzle-connector--arrow {
  width: 30px;
  margin: 0 -7px;
  font-size: 30px;
  animation-delay: 0.25s;
}

.mq-flow-section .puzzle-sub-arrow {
  display: none;
}

.mq-flow-section .puzzle-flow__text {
  color: #334155;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  white-space: nowrap;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-flow__text:first-child {
  margin-right: 14px;
}

.mq-flow-section .puzzle-flow__row--sub .puzzle-flow__text:last-child {
  margin-left: 14px;
}

@keyframes puzzlePieceEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes puzzlePieceSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes puzzleConnectorIn {
  to {
    opacity: 0.92;
    transform: translateY(0);
  }
}

@keyframes puzzleResultGlow {
  0%,
  100% {
    filter: drop-shadow(0 14px 20px rgba(249, 115, 22, 0.18));
  }

  50% {
    filter: drop-shadow(0 18px 28px rgba(249, 115, 22, 0.28));
  }
}

@media (max-width: 720px) {
  .mq-flow-section .puzzle-flow {
    width: 100%;
    gap: 18px;
  }

  .mq-flow-section .puzzle-flow__row--main {
    flex-direction: column;
    gap: 8px;
  }

  .mq-flow-section .puzzle-piece {
    width: min(100%, 280px);
    height: 110px;
  }

  .mq-flow-section .puzzle-piece--small {
    width: 102px;
    height: 72px;
  }

  .mq-flow-section .puzzle-flow__row--sub {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--middle,
  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--end {
    margin-left: -34px;
  }

  .mq-flow-section .puzzle-flow__text {
    width: 100%;
    text-align: center;
    font-size: 17px;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-flow__text:first-child,
  .mq-flow-section .puzzle-flow__row--sub .puzzle-flow__text:last-child {
    margin: 0;
  }

  .mq-flow-section .puzzle-sub-arrow {
    display: none;
  }

  .mq-flow-section .puzzle-connector--arrow {
    font-size: 0;
    transform: none;
  }

  .mq-flow-section .puzzle-connector--arrow::after {
    content: "↓";
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-flow-section .puzzle-piece,
  .mq-flow-section .puzzle-flow__row--main .puzzle-piece--middle,
  .mq-flow-section .puzzle-flow__row--main .puzzle-piece--end,
  .mq-flow-section .puzzle-connector {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Mobile puzzle fit: keep the small pieces interlocked like the desktop row. */
@media (max-width: 720px) {
  .mq-flow-section .puzzle-flow__row--sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 0;
    overflow: visible;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-flow__text {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--small {
    width: 124px;
    height: 78px;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--middle,
  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--end {
    margin-left: -38px;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece__shape path {
    stroke-width: 2.2;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece__content {
    gap: 4px;
    padding: 0 18px;
  }

  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--middle .puzzle-piece__content,
  .mq-flow-section .puzzle-flow__row--sub .puzzle-piece--end .puzzle-piece__content {
    transform: translateX(6px);
  }
}

/* Keep the bottom process note icon from overlapping longer copy */
.mq-flow-section .mq-flow-note-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(90deg, #eaf2ff 0%, #f8fbff 100%);
  border: 1px solid #bfdbfe;
  padding: 26px 34px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.08);
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-icon {
  position: static;
  flex: 0 0 auto;
  transform: none;
}

.mq-flow-section .mq-flow-note-single strong {
  max-width: 760px;
  color: #475569;
  text-align: left;
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-primary {
  color: #0f172a;
  font-weight: 900;
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-highlight {
  color: #2563eb;
  font-weight: 900;
}

.mq-flow-section .mq-flow-note-single .mq-flow-note-muted {
  color: #475569;
  font-weight: 800;
}

@media (max-width: 720px) {
  .mq-flow-section .mq-flow-note-single {
    align-items: flex-start;
    gap: 12px;
    padding: 20px 18px;
  }

  .mq-flow-section .mq-flow-note-single .mq-flow-note-icon {
    width: 36px;
    height: 36px;
  }

  .mq-flow-section .mq-flow-note-single strong {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Lightweight module selection cues for the 1-7 process */
.mq-flow-section .mq-module-choice-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.mq-flow-section .mq-module-choice-intro strong {
  display: block;
  color: #0f172a;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
  font-weight: 950;
}

.mq-flow-section .mq-module-choice-intro p {
  margin: 8px 0 0;
  color: #475569;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
  font-weight: 700;
}

.mq-flow-section .mq-step-title-line {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
}

.mq-flow-section .mq-timeline-copy {
  grid-template-rows: 32px 26px 38px;
  align-items: start;
  gap: 7px;
}

.mq-flow-section .mq-timeline-copy > strong {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.mq-flow-section .mq-step-choice-row {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.mq-flow-section .mq-step-choice-badge,
.mq-flow-section .mq-step-check {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.mq-flow-section .mq-step-choice-badge {
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 950;
}

.mq-flow-section .mq-step-choice-badge--base {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: rgba(147, 197, 253, 0.62);
}

.mq-flow-section .mq-step-choice-badge--optional {
  background: #f1f5f9;
  color: #475569;
  border-color: rgba(203, 213, 225, 0.78);
}

.mq-flow-section .mq-step-choice-badge--alarm {
  background: #fff7ed;
  color: #ea580c;
  border-color: rgba(253, 186, 116, 0.78);
}

.mq-flow-section .mq-step-check {
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border: 1px solid rgba(34, 197, 94, 0.48);
  color: #15803d;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.14);
}

.mq-flow-section .mq-module-step-optional {
  opacity: 0.94;
}

.mq-flow-section .mq-module-step-selected .mq-timeline-dot {
  box-shadow:
    0 18px 38px rgba(15, 23, 42, 0.08),
    0 0 0 6px var(--step-soft),
    0 10px 24px var(--step-shadow);
}

@media (max-width: 720px) {
  .mq-flow-section .mq-module-choice-intro {
    margin-bottom: 22px;
    padding: 0 6px;
  }

  .mq-flow-section .mq-module-choice-intro strong {
    font-size: 22px;
  }

  .mq-flow-section .mq-module-choice-intro p {
    font-size: 15.5px;
  }

  .mq-flow-section .mq-timeline-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    max-width: 100%;
    padding: 0;
  }

  .mq-flow-section .mq-timeline-flow::before,
  .mq-flow-section .mq-timeline-node:not(:last-child)::after,
  .mq-flow-section .mq-timeline-node:nth-child(4)::after {
    display: none;
  }

  .mq-flow-section .mq-timeline-node,
  .mq-flow-section .mq-timeline-node:nth-child(5) {
    min-height: 174px;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: 10px;
    padding: 14px 8px 16px;
    border: 1px solid rgba(191, 219, 254, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    text-align: center;
  }

  .mq-flow-section .mq-timeline-dot {
    width: 64px;
    height: 64px;
  }

  .mq-flow-section .mq-timeline-dot b {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .mq-flow-section .mq-timeline-dot .mq-step-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .mq-flow-section .mq-timeline-copy {
    justify-items: center;
    text-align: center;
    grid-template-rows: minmax(38px, auto) 24px auto;
  }

  .mq-flow-section .mq-step-title-line {
    justify-content: center;
    gap: 5px;
  }

  .mq-flow-section .mq-timeline-copy > strong {
    min-height: 38px;
    white-space: normal;
  }

  .mq-flow-section .mq-step-choice-row {
    min-height: 24px;
    gap: 5px;
  }

  .mq-flow-section .mq-timeline-node strong {
    font-size: 16px;
  }

  .mq-flow-section .mq-timeline-node i {
    max-width: 100%;
    min-height: 30px;
    padding: 0 9px;
    font-size: 13px;
    white-space: normal;
  }

  .mq-flow-section .mq-step-choice-badge {
    min-height: 22px;
    padding: 0 7px;
    font-size: 11px;
  }

  .mq-flow-section .mq-step-check {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* FAQ readability refinements */
.mq-faq-side h2 {
  font-size: clamp(38px, 4.05vw, 54px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.mq-faq-side p {
  color: #475569;
  font-size: 18px;
  line-height: 1.78;
  word-break: keep-all;
}

.mq-faq-list {
  gap: 12px;
}

.mq-faq-list .faq-category-label {
  margin: 24px 0 10px;
  padding: 0 6px;
  color: #2563eb;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0;
}

.mq-faq-list .faq-category-label:first-child {
  margin-top: 0;
}

.mq-faq-list .faq-item {
  border-color: #dbeafe;
  border-radius: 18px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.mq-faq-list .faq-item.active {
  border-color: #bfdbfe;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.mq-faq-list .faq-trigger {
  min-height: 68px;
  padding: 0 24px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  word-break: keep-all;
}

.mq-faq-list .faq-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.mq-faq-list .faq-trigger:hover .faq-icon {
  background: #dbeafe;
  transform: scale(1.04);
}

.mq-faq-list .faq-item.active .faq-icon {
  background: #2563eb;
  color: #fff;
}

.mq-faq-list .faq-content {
  padding: 0 24px 24px;
}

.mq-faq-list .faq-content p {
  color: #475569;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.mq-faq-list .faq-content strong {
  color: #0f172a;
  font-weight: 850;
}

@media (max-width: 900px) {
  .mq-faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mq-faq-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .mq-faq-side h2 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.18;
  }

  .mq-faq-side p {
    font-size: 16.5px;
    line-height: 1.72;
  }

  .mq-faq-list .faq-category-label {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 17px;
  }

  .mq-faq-list .faq-trigger {
    min-height: 64px;
    padding: 0 18px;
    font-size: 16.5px;
  }

  .mq-faq-list .faq-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .mq-faq-list .faq-content {
    padding: 0 18px 20px;
  }

  .mq-faq-list .faq-content p {
    font-size: 15.8px;
    line-height: 1.72;
  }
}

/* Mobile chart preview containment */
html,
body {
  overflow-x: hidden;
}

.mq-flow-section .mq-rule-example,
.mq-flow-section .mq-condition-flow,
.mq-flow-section .mq-condition-image {
  max-width: 100%;
  box-sizing: border-box;
}

.mq-flow-section .mq-rule-example,
.mq-flow-section .mq-condition-image {
  overflow: hidden;
}

.mq-flow-section .mq-condition-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .mq-flow-section .mq-rule-example {
    width: 100%;
    max-width: 100%;
    padding: 18px 14px;
    border-radius: 22px;
  }

  .mq-flow-section .mq-condition-flow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .mq-flow-section .mq-condition-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
    border-radius: 18px;
  }

  .mq-flow-section .mq-condition-image img {
    width: 100%;
    max-width: 100%;
  }

  .mq-flow-section .mq-chart-breakout-bubble {
    top: 18.8%;
    left: 51%;
    max-width: 40%;
    padding-right: 10px;
    padding-left: 10px;
    font-size: clamp(8px, 2.75vw, 12px);
  }

  .mq-flow-section .mq-chart-breakout-focus {
    left: 51%;
  }

  .mq-flow-section .mq-chart-mobile-caption {
    display: none;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    box-sizing: border-box;
  }
}

/* Buy alert bell motion: icon only */
.mq-flow-section .buy-alert-icon {
  display: inline-flex;
  transform-origin: top center;
  animation: buyAlertBellRing 3.5s ease-in-out infinite;
}

@keyframes buyAlertBellRing {
  0%,
  78%,
  100% {
    transform: rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(249, 115, 22, 0));
  }

  82% {
    transform: rotate(10deg);
  }

  86% {
    transform: rotate(-8deg);
  }

  90% {
    transform: rotate(6deg);
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.22));
  }

  94% {
    transform: rotate(-4deg);
  }

  97% {
    transform: rotate(2deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-flow-section .buy-alert-icon {
    animation: none;
    filter: none;
  }
}

/* Program CTA clarity */
.mq-program-preview-hint {
  display: none;
}

.mq-program-preview-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.mq-program-preview-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-program-actions .mq-btn:active {
  transform: translateY(-1px) scale(0.99);
}

@media (max-width: 720px) {
  .mq-program-preview-hint {
    display: block;
    max-width: 320px;
    margin: 22px auto 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
  }

  .mq-program-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .mq-program-actions .mq-btn {
    width: 100%;
    min-height: 54px;
  }

  .mq-program-actions .mq-btn-secondary {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.1);
  }

  .mq-program-actions .mq-btn-secondary:hover,
  .mq-program-actions .mq-btn-secondary:active {
    background: #dbeafe;
    border-color: #93c5fd;
  }
}

/* Make the rule example label easier to scan. */
.mq-flow-section .mq-rule-card-head {
  gap: 14px;
  color: #1d4ed8;
  font-size: 21px;
  font-weight: 950;
}

.mq-flow-section .mq-rule-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.mq-flow-section .mq-rule-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}

@media (max-width: 720px) {
  .mq-flow-section .mq-rule-card-head {
    gap: 12px;
    font-size: 19px;
  }

  .mq-flow-section .mq-rule-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .mq-flow-section .mq-rule-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Fixed top navigation */
:root {
  --nav-h: 82px;
}

html {
  scroll-padding-top: calc(var(--nav-h) + 18px);
}

.mq-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1005;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(191, 219, 254, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mq-header.is-scrolled,
.mq-header.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mq-page {
  padding-top: var(--nav-h);
}

.mobile-drawer {
  z-index: 1004;
  padding-top: var(--nav-h);
}

@media (max-width: 720px) {
  :root {
    --nav-h: 68px;
  }

  .mq-nav {
    min-height: var(--nav-h);
  }

  .mq-page {
    padding-top: var(--nav-h);
  }
}

/* Hero title alignment and mobile containment */
.mq-hero-copy {
  width: 100%;
  max-width: 1180px;
}

.mq-hero h1 {
  width: 100%;
  max-width: 1160px;
  text-align: center;
}

.mq-typing-title {
  justify-items: center;
  text-align: center;
}

.mq-type-line {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mq-title-auto-wrap,
.mq-title-tail {
  display: inline;
}

@media (max-width: 720px) {
  .mq-hero-copy {
    max-width: 100%;
    overflow: hidden;
  }

  .mq-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.15;
  }

  .mq-type-line {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }

  .mq-title-auto-wrap,
  .mq-title-tail {
    display: block;
  }

  .mq-type-line-two::after {
    margin-left: 3px;
  }

  .mq-hero-desc {
    max-width: 100%;
    font-size: 15.8px;
    line-height: 1.72;
  }
}

/* Hero core message */
.mq-hero h1 {
  max-width: 1240px;
}

.mq-hero-choice-actions {
  justify-content: initial;
}

.mq-type-line-one,
.mq-type-line-two {
  font-size: clamp(46px, 4.7vw, 72px);
}

@media (max-width: 860px) {
  .mq-hero-choice-actions {
    width: min(100%, 520px);
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .mq-hero-choice-card {
    min-height: 118px;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  .mq-hero-choice-actions {
    width: 100%;
    display: grid;
    flex-direction: initial;
  }

  .mq-hero-choice-card {
    min-height: 108px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .mq-hero-choice-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .mq-hero-choice-icon svg {
    width: 22px;
    height: 22px;
  }

  .mq-hero-choice-copy strong {
    font-size: 18px;
  }

  .mq-hero-choice-copy em {
    font-size: 13.5px;
  }

  .mq-hero-choice-copy small {
    font-size: 12.5px;
  }

  .mq-hero-choice-note {
    max-width: 300px;
    margin-top: 12px;
    font-size: 13px;
  }
}

.mq-type-line-core {
  margin-top: 6px;
  font-size: clamp(68px, 6.7vw, 108px);
  line-height: 1.02;
  animation-duration: 1.35s;
  animation-delay: 2.2s;
}

.mq-type-line-core em {
  color: var(--mq-blue);
  font-style: normal;
}

.mq-core-mobile {
  display: none;
}

.mq-type-line-two::after {
  content: none;
}

.mq-type-line-core::after {
  content: "";
  width: 3px;
  height: 0.82em;
  display: inline-block;
  margin-left: 5px;
  border-radius: 999px;
  background: var(--mq-blue);
  vertical-align: -0.06em;
  opacity: 0;
  animation: mqCursorBlink 0.82s step-end 3.35s infinite;
}

@media (max-width: 720px) {
  .mq-hero h1 {
    font-size: clamp(32px, 8.4vw, 42px);
  }

  .mq-type-line-one,
  .mq-type-line-two {
    font-size: clamp(32px, 8.4vw, 42px);
  }

  .mq-type-line-core {
    display: grid;
    justify-items: center;
    font-size: clamp(42px, 10.8vw, 58px);
    line-height: 1.08;
    clip-path: none;
    animation: none;
  }

  .mq-type-line-core::after {
    content: none;
  }

  .mq-core-desktop {
    display: none;
  }

  .mq-core-mobile {
    display: grid;
    justify-items: center;
    gap: 0;
    width: 100%;
  }

  .mq-core-mobile-line {
    width: max-content;
    max-width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(0 100% 0 0);
    animation: mqTypeReveal 0.78s steps(8, end) forwards;
  }

  .mq-core-mobile-line-one {
    animation-delay: 2.2s;
  }

  .mq-core-mobile-line-two {
    position: relative;
    animation-delay: 3.02s;
  }

  .mq-core-mobile-line-two::after {
    content: "";
    width: 3px;
    height: 0.82em;
    display: inline-block;
    margin-left: 3px;
    border-radius: 999px;
    background: var(--mq-blue);
    vertical-align: -0.06em;
    opacity: 0;
    animation: mqCursorBlink 0.82s step-end 3.8s infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mq-core-mobile-line {
    clip-path: inset(0 0 0 0);
    animation: none;
  }

  .mq-core-mobile-line-two::after {
    display: none;
  }
}

/* Buildable program examples */
.mq-program-case-section {
  scroll-margin-top: 100px;
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border-bottom: 1px solid var(--mq-line);
}

.mq-program-case-section .mq-section-head {
  max-width: 820px;
}

.mq-program-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mq-program-case-grid article {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 219, 254, 0.86);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.055);
}

.mq-program-case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mq-program-case-label {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 950;
}

.mq-program-case-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(191, 219, 254, 0.82);
  color: #1d4ed8;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.mq-program-case-grid h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
  font-weight: 950;
  word-break: keep-all;
}

.mq-program-case-condition {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(219, 234, 254, 0.95);
}

.mq-program-case-condition span {
  color: #2563eb;
  font-size: 13px;
  font-weight: 950;
}

.mq-program-case-condition p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 750;
  word-break: keep-all;
}

.mq-program-case-modules {
  display: grid;
  gap: 10px;
  padding-top: 2px;
}

.mq-program-case-modules > span {
  color: #0f172a;
  font-size: 16px;
  font-weight: 950;
}

.mq-program-case-modules div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mq-program-case-modules i {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 14.5px;
  line-height: 1.2;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.mq-program-case-grid strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

@media (max-width: 920px) {
  .mq-program-case-grid {
    grid-template-columns: 1fr;
  }

  .mq-program-case-grid article {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .mq-program-case-section {
    padding: 68px 0;
  }

  .mq-program-case-grid {
    gap: 14px;
  }

  .mq-program-case-grid article {
    gap: 14px;
    padding: 20px;
    border-radius: 20px;
  }

  .mq-program-case-condition {
    padding: 15px;
  }

  .mq-program-case-condition p {
    font-size: 16px;
  }

  .mq-program-case-modules i {
    min-height: 34px;
    font-size: 14px;
  }

  .mq-program-case-grid strong {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 15px;
  }
}

/* Audience cards: 4-up target section */
.mq-problem-panel h3 {
  font-size: clamp(28px, 2.8vw, 38px);
}

.mq-problem-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mq-problem-grid article {
  min-height: 230px;
}

.mq-problem-grid strong {
  min-height: 0;
  display: block;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.25;
  font-weight: 950;
}

.mq-problem-grid p {
  color: #475569;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.5;
  font-weight: 850;
  word-break: keep-all;
}

@media (max-width: 1080px) {
  .mq-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .mq-problem-grid {
    grid-template-columns: 1fr;
  }

  .mq-problem-grid article {
    min-height: 0;
  }
}

/* Simple operation flow */
.mq-operation-section .mq-section-head {
  max-width: 880px;
}

.mq-operation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.mq-operation-grid article {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(191, 219, 254, 0.86);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.055);
}

.mq-operation-grid article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -17px;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-50%);
}

.mq-operation-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.mq-operation-number {
  min-width: 38px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 950;
}

.mq-operation-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
}

.mq-operation-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-operation-icon-orange {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #ea580c;
}

.mq-operation-icon-green {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #059669;
}

.mq-operation-grid h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.25;
  font-weight: 950;
}

.mq-operation-grid article > p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 750;
  word-break: keep-all;
}

.mq-operation-example {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(219, 234, 254, 0.95);
}

.mq-operation-example span {
  color: #2563eb;
  font-size: 14px;
  font-weight: 950;
}

.mq-operation-example ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 800;
}

.mq-operation-example-orange {
  background: #fff7ed;
  border-color: #fed7aa;
}

.mq-operation-example-orange span,
.mq-operation-example-orange ul {
  color: #ea580c;
}

.mq-operation-example-green {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.mq-operation-example-green span,
.mq-operation-example-green ul {
  color: #047857;
}

.mq-operation-chart {
  max-width: 1100px;
  margin: 34px auto 0;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(191, 219, 254, 0.86);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.mq-operation-chart-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 950;
}

.mq-operation-chart-head span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 950;
}

.mq-operation-chart-head strong {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.25;
}

.mq-operation-chart-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
}

.mq-operation-chart-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mq-operation-caption {
  width: min(100%, 840px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 0;
  padding: 16px 20px;
  border-radius: 16px;
  background: #eff6ff;
  color: #334155;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 800;
  text-align: center;
  word-break: keep-all;
}

.mq-operation-caption span {
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .mq-operation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mq-operation-grid article::after {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .mq-operation-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mq-operation-grid article {
    padding: 22px;
    border-radius: 20px;
  }

  .mq-operation-chart {
    padding: 16px;
    border-radius: 22px;
  }

  .mq-operation-chart-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mq-operation-caption {
    align-items: flex-start;
    padding: 14px;
    font-size: 14.5px;
    text-align: left;
  }
}

/* Operation section final layout */
.mq-operation-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f8fbff 100%);
}

.mq-operation-section .mq-section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.mq-operation-section .mq-section-head .mq-section-label {
  min-height: 36px;
  padding: 0 16px;
  font-size: 16px;
}

.mq-operation-section .mq-section-head h2 {
  color: #0f172a;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.mq-operation-section .mq-section-head p {
  max-width: 780px;
  margin-inline: auto;
  color: #334155;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.72;
  font-weight: 760;
  word-break: keep-all;
}

.mq-operation-grid {
  align-items: stretch;
}

.mq-operation-grid article {
  grid-template-rows: auto auto auto 1fr;
  min-height: 360px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mq-operation-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(147, 197, 253, 0.95);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

.mq-operation-card-head {
  align-items: center;
}

.mq-operation-number {
  min-width: 42px;
  min-height: 36px;
  height: 36px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.12);
}

.mq-operation-icon {
  width: 66px;
  height: 66px;
  border-radius: 22px;
}

.mq-operation-icon svg {
  width: 36px;
  height: 36px;
}

.mq-operation-grid h3 {
  min-height: 36px;
  font-size: clamp(24px, 1.8vw, 30px);
  word-break: keep-all;
}

.mq-operation-grid article > p {
  min-height: 82px;
  color: #334155;
  font-size: 17px;
}

.mq-operation-example {
  align-self: end;
}

.mq-operation-chart {
  margin-top: 44px;
}

.mq-operation-chart-head strong {
  color: #0f172a;
  font-size: clamp(22px, 2.1vw, 30px);
}

.mq-operation-chart-card {
  position: relative;
  border: 1px solid rgba(219, 234, 254, 0.88);
}

.mq-operation-breakout-badge {
  position: absolute;
  top: 19.1%;
  left: 51.5%;
  z-index: 3;
  min-height: clamp(30px, 3.25vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(18px, 2.4vw, 30px);
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.22),
    0 0 0 0 rgba(15, 23, 42, 0);
  font-size: clamp(14px, 1.28vw, 19px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  animation: mqOperationBreakoutPulse 2.4s ease-in-out infinite;
}

.mq-operation-closing {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 820px);
  margin: 34px auto 0;
  text-align: center;
}

.mq-operation-closing-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #2563eb;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.11);
}

.mq-operation-closing-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-operation-closing p {
  margin: 0;
  color: #475569;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
  font-weight: 760;
  word-break: keep-all;
}

@keyframes mqOperationBreakoutPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 18px 34px rgba(15, 23, 42, 0.22),
      0 0 0 0 rgba(15, 23, 42, 0);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.16);
    box-shadow:
      0 22px 44px rgba(15, 23, 42, 0.3),
      0 0 0 8px rgba(15, 23, 42, 0.07);
  }
}

.mq-operation-caption {
  font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
  .mq-operation-grid article,
  .mq-operation-grid article:hover,
  .mq-operation-breakout-badge {
    transform: none;
    animation: none;
    transition: none;
  }

  .mq-operation-breakout-badge {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 1080px) {
  .mq-operation-grid article {
    min-height: 330px;
  }

  .mq-operation-grid article > p {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .mq-operation-section .mq-section-head {
    margin-bottom: 30px;
  }

  .mq-operation-section .mq-section-head h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .mq-operation-section .mq-section-head p {
    font-size: 16.5px;
  }

  .mq-operation-grid article {
    min-height: 0;
    padding: 24px;
  }

  .mq-operation-grid h3 {
    min-height: 0;
    font-size: 26px;
  }

  .mq-operation-grid article > p {
    font-size: 16px;
  }

  .mq-operation-example ul {
    font-size: 15px;
  }

  .mq-operation-chart {
    margin-top: 28px;
  }

  .mq-operation-breakout-badge {
    min-height: clamp(18px, 5vw, 28px);
    padding: 0 clamp(10px, 3vw, 16px);
    font-size: clamp(9px, 2.6vw, 13px);
  }

  .mq-operation-closing {
    gap: 12px;
    margin-top: 26px;
  }

  .mq-operation-closing-icon {
    width: 40px;
    height: 40px;
  }

  .mq-operation-closing p {
    font-size: 15.5px;
    line-height: 1.65;
  }
}

/* Problem-to-program bridge section */
.mq-problem-panel h3 {
  margin-bottom: 28px;
}

.mq-problem-grid article {
  min-height: 320px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  padding: clamp(22px, 2vw, 30px);
}

.mq-problem-grid strong {
  min-height: 2.65em;
  margin-bottom: 12px;
  color: #0f172a;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.32;
  font-weight: 950;
  word-break: keep-all;
}

.mq-problem-grid p {
  color: #475569;
  font-size: clamp(15.5px, 1.08vw, 18px);
  line-height: 1.68;
  font-weight: 760;
  word-break: keep-all;
}

.mq-audience-illustration .ill-clock,
.mq-audience-illustration .ill-checklist {
  fill: #ffffff;
  stroke: #93c5fd;
  stroke-width: 2;
}

.mq-audience-illustration .ill-clock-hand,
.mq-audience-illustration .ill-check,
.mq-audience-illustration .ill-candle {
  fill: none;
  stroke: #2563eb;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-audience-illustration .ill-moon {
  fill: #fff7ed;
  stroke: #fdba74;
  stroke-width: 2;
}

.mq-audience-illustration .ill-down-chart {
  fill: none;
  stroke: #ef4444;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-audience-illustration .ill-warning {
  fill: #fff7ed;
  stroke: #f97316;
  stroke-width: 2;
}

.mq-audience-illustration .ill-warning-mark {
  fill: none;
  stroke: #f97316;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.mq-program-case-section {
  padding-top: 88px;
}

.mq-program-case-grid article {
  min-height: 330px;
  grid-template-rows: auto auto 1fr auto;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.mq-program-case-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
}

.mq-program-case-summary {
  margin: 0;
  color: #334155;
  font-size: clamp(17px, 1.16vw, 19px);
  line-height: 1.72;
  font-weight: 780;
  word-break: keep-all;
}

.mq-program-case-preview {
  min-height: 170px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid rgba(219, 234, 254, 0.95);
}

.mq-program-case-preview svg {
  width: 100%;
  height: auto;
  display: block;
}

.mq-program-case-preview text {
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  fill: #1d4ed8;
}

.mq-program-case-preview .mini-screen {
  fill: rgba(255, 255, 255, 0.94);
  stroke: #bfdbfe;
  stroke-width: 1.5;
}

.mq-program-case-preview .mini-grid {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 1;
}

.mq-program-case-preview .mini-chart {
  fill: none;
  stroke: #2563eb;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-program-case-preview .mini-point {
  fill: #2563eb;
  stroke: #ffffff;
  stroke-width: 3;
}

.mq-program-case-preview .mini-label {
  fill: #ffffff;
  stroke: #93c5fd;
  stroke-width: 1.6;
  filter: drop-shadow(0 7px 14px rgba(37, 99, 235, 0.13));
}

.mq-program-case-preview .mini-label-orange {
  stroke: #fdba74;
  filter: drop-shadow(0 7px 14px rgba(249, 115, 22, 0.13));
}

.mq-program-case-preview .mini-label-text {
  fill: #1d4ed8;
  font-size: 11.5px;
  font-weight: 950;
}

.mq-program-case-preview .mini-label-text-orange {
  fill: #ea580c;
}

.mq-program-case-preview-coin {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 100%);
}

.mq-program-case-preview-coin .mini-dark-screen {
  fill: #101827;
  stroke: #dbeafe;
  stroke-width: 1.5;
}

.mq-program-case-preview-coin .mini-dark-title {
  fill: #c7d2fe;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mq-program-case-preview-coin .mini-dark-grid {
  fill: none;
  stroke: rgba(148, 163, 184, 0.35);
  stroke-width: 1;
}

.mq-program-case-preview-coin .mini-coin-chart {
  fill: none;
  stroke: #22c55e;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-program-case-preview-coin .mini-coin-point {
  fill: #f97316;
  stroke: #ffffff;
  stroke-width: 3;
}

.mq-program-case-preview-theme .mini-table-head {
  fill: #eff6ff;
}

.mq-program-case-preview-theme .mini-table-label {
  fill: #64748b;
  font-size: 10.5px;
}

.mq-program-case-preview-theme .mini-table-row rect {
  fill: #ffffff;
  stroke: #e2e8f0;
  stroke-width: 1;
}

.mq-program-case-preview-theme .mini-table-row text {
  fill: #334155;
  font-size: 11.5px;
}

.mq-program-case-preview-theme .mini-red {
  fill: #dc2626 !important;
}

.mq-program-case-preview-theme .mini-orange {
  fill: #ea580c !important;
}

.mq-program-case-tags {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mq-program-case-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.mq-program-case-grid article:nth-child(2) .mq-program-case-tags span {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
}

.mq-program-case-grid article:nth-child(3) .mq-program-case-tags span {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #ea580c;
}

.mq-program-case-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 30px auto 0;
  padding: 28px 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2563eb 0%, #0f6bf2 100%);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.25);
}

.mq-program-case-cta-icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mq-program-case-cta-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-program-case-cta strong {
  display: block;
  color: #ffffff;
  font-size: clamp(20px, 1.55vw, 25px);
  line-height: 1.22;
  font-weight: 950;
  word-break: keep-all;
  white-space: nowrap;
}

.mq-program-case-cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13.5px, 0.95vw, 15.5px);
  line-height: 1.45;
  font-weight: 760;
  word-break: keep-all;
}

.mq-program-case-cta-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 14px;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mq-program-case-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

@media (max-width: 1080px) {
  .mq-problem-grid article {
    min-height: 290px;
  }
}

@media (max-width: 920px) {
  .mq-program-case-grid article {
    min-height: 0;
  }

  .mq-program-case-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .mq-program-case-cta strong {
    white-space: normal;
  }

  .mq-program-case-cta-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .mq-problem-panel h3 {
    font-size: 28px;
  }

  .mq-problem-grid article {
    min-height: 0;
    gap: 0;
  }

  .mq-problem-grid strong {
    min-height: 0;
    font-size: 22px;
  }

  .mq-problem-grid p {
    font-size: 16px;
  }

  .mq-program-case-summary {
    font-size: 16px;
  }

  .mq-program-case-tags span {
    font-size: 13.5px;
  }

  .mq-program-case-cta {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
    padding: 24px;
    border-radius: 22px;
  }

  .mq-program-case-cta-icon {
    width: 52px;
    height: 52px;
  }

  .mq-program-case-cta-icon svg {
    width: 27px;
    height: 27px;
  }
}

/* Hero choice anchor + audience illustration cards */
.mq-section-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 104px;
}

.mq-problem-grid article {
  position: relative;
  overflow: hidden;
}

.mq-problem-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(219, 234, 254, 0.72), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.78));
  opacity: 0.82;
  pointer-events: none;
}

.mq-problem-grid article > * {
  position: relative;
  z-index: 1;
}

.mq-problem-top {
  align-items: flex-start;
  margin-bottom: 18px;
}

.mq-audience-illustration {
  width: clamp(92px, 7.6vw, 124px);
  height: clamp(72px, 5.7vw, 92px);
  display: inline-grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.mq-audience-illustration svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mq-audience-illustration .ai-soft-card,
.mq-audience-illustration .ai-check-card {
  fill: #ffffff;
  stroke: #bfdbfe;
  stroke-width: 1.7;
  filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.08));
}

.mq-audience-illustration .ai-soft-orange {
  stroke: #fed7aa;
}

.mq-audience-illustration .ai-soft-green {
  fill: #f0fdf4;
  stroke: #86efac;
}

.mq-audience-illustration .ai-soft-red {
  fill: #fff7f7;
  stroke: #fecaca;
}

.mq-audience-illustration .ai-laptop {
  fill: #f8fbff;
  stroke: #93c5fd;
  stroke-width: 1.8;
}

.mq-audience-illustration .ai-laptop-base {
  fill: #dbeafe;
  stroke: #93c5fd;
  stroke-width: 1.5;
}

.mq-audience-illustration .ai-face {
  fill: #ffd9c2;
  stroke: #f4b691;
  stroke-width: 1.4;
}

.mq-audience-illustration .ai-hair {
  fill: #172033;
}

.mq-audience-illustration .ai-shirt {
  fill: #e0f2fe;
  stroke: #93c5fd;
  stroke-width: 1.6;
}

.mq-audience-illustration .ai-dark-shirt {
  fill: #334155;
  stroke: #1e293b;
  stroke-width: 1.4;
}

.mq-audience-illustration .ai-tie {
  fill: #2563eb;
}

.mq-audience-illustration .ai-hand {
  fill: none;
  stroke: #f4b691;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-audience-illustration .ai-blue-line,
.mq-audience-illustration .ai-orange-line,
.mq-audience-illustration .ai-green-line,
.mq-audience-illustration .ai-red-line,
.mq-audience-illustration .ai-axis,
.mq-audience-illustration .ai-muted-line,
.mq-audience-illustration .ai-check,
.mq-audience-illustration .ai-pointer,
.mq-audience-illustration .ai-clock-hand,
.mq-audience-illustration .ai-candle {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-audience-illustration .ai-blue-line,
.mq-audience-illustration .ai-axis,
.mq-audience-illustration .ai-muted-line {
  stroke: #94a3b8;
  stroke-width: 2;
}

.mq-audience-illustration .ai-orange-line {
  stroke: #f97316;
  stroke-width: 3;
}

.mq-audience-illustration .ai-green-line,
.mq-audience-illustration .ai-check,
.mq-audience-illustration .ai-pointer {
  stroke: #10b981;
  stroke-width: 3;
}

.mq-audience-illustration .ai-red-line {
  stroke: #ef4444;
  stroke-width: 3;
}

.mq-audience-illustration .ai-clock {
  fill: #ffffff;
  stroke: #93c5fd;
  stroke-width: 1.8;
}

.mq-audience-illustration .ai-clock-hand {
  stroke: #2563eb;
  stroke-width: 2.4;
}

.mq-audience-illustration .ai-candle {
  stroke: #64748b;
  stroke-width: 1.6;
}

.mq-audience-illustration .ai-candle-up {
  fill: #10b981;
}

.mq-audience-illustration .ai-candle-down {
  fill: #ef4444;
}

.mq-audience-illustration .ai-moon {
  fill: #fff7ed;
  stroke: #fdba74;
  stroke-width: 1.8;
}

.mq-audience-illustration .ai-warning {
  fill: #fff7ed;
  stroke: #f97316;
  stroke-width: 1.8;
}

.mq-audience-illustration .ai-warning-mark {
  fill: none;
  stroke: #f97316;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.mq-audience-illustration .ill-bg {
  fill: #eef6ff;
}

.mq-audience-illustration .ill-desk {
  fill: #dbeafe;
}

.mq-audience-illustration .ill-screen,
.mq-audience-illustration .ill-board,
.mq-audience-illustration .ill-book,
.mq-audience-illustration .ill-book-page {
  fill: #ffffff;
  stroke: #93c5fd;
  stroke-width: 2;
}

.mq-audience-illustration .ill-book-page {
  stroke: #bfdbfe;
}

.mq-audience-illustration .ill-skin {
  fill: #ffd9c2;
  stroke: #f7b28f;
  stroke-width: 1.5;
}

.mq-audience-illustration .ill-hair {
  fill: #1e293b;
}

.mq-audience-illustration .ill-shirt {
  fill: #dbeafe;
  stroke: #93c5fd;
  stroke-width: 1.8;
}

.mq-audience-illustration .ill-arm,
.mq-audience-illustration .ill-hand {
  fill: none;
  stroke: #f7b28f;
  stroke-width: 3;
  stroke-linecap: round;
}

.mq-audience-illustration .ill-line,
.mq-audience-illustration .ill-chart,
.mq-audience-illustration .ill-chart-soft,
.mq-audience-illustration .ill-axis,
.mq-audience-illustration .ill-pointer,
.mq-audience-illustration .ill-pencil,
.mq-audience-illustration .ill-pencil-tip {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mq-audience-illustration .ill-line,
.mq-audience-illustration .ill-chart-soft,
.mq-audience-illustration .ill-axis {
  stroke: #bfdbfe;
  stroke-width: 2;
}

.mq-audience-illustration .ill-chart,
.mq-audience-illustration .ill-pointer {
  stroke: #2563eb;
  stroke-width: 3;
}

.mq-audience-illustration .ill-pencil {
  stroke: #f97316;
  stroke-width: 5;
}

.mq-audience-illustration .ill-pencil-tip {
  stroke: #1e293b;
  stroke-width: 3;
}

.mq-audience-illustration .ill-dot-blue {
  fill: #2563eb;
}

.mq-audience-illustration .ill-dot-orange {
  fill: #f97316;
}

.mq-audience-illustration .ill-dot-green {
  fill: #10b981;
}

.mq-audience-fulltime {
  background: #fff7ed;
}

.mq-audience-fulltime .ill-board {
  stroke: #fdba74;
}

.mq-audience-fulltime .ill-chart {
  stroke: #f97316;
}

.mq-audience-expert {
  background: #ecfdf5;
}

.mq-audience-expert .ill-board {
  stroke: #86efac;
}

.mq-audience-expert .ill-chart,
.mq-audience-expert .ill-pointer {
  stroke: #059669;
}

.mq-audience-beginner {
  background: #f5f3ff;
}

.mq-audience-beginner .ill-book,
.mq-audience-beginner .ill-book-page {
  stroke: #c4b5fd;
}

@media (hover: hover) {
  .mq-problem-grid article:hover .mq-audience-illustration {
    transform: translateY(-8px) scale(1.02);
  }
}

.mq-audience-illustration {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 1080px) {
  .mq-audience-illustration {
    width: 112px;
    height: 84px;
  }
}

@media (max-width: 560px) {
  .mq-section-anchor {
    scroll-margin-top: 82px;
  }

  .mq-problem-top {
    align-items: center;
  }

  .mq-audience-illustration {
    width: 104px;
    height: 78px;
    border-radius: 18px;
  }
}

/* Problem section: use the provided combined card image instead of rendering four separate cards. */
.mq-problem-panel .mq-problem-panel-desc {
  max-width: 760px;
  margin: -8px auto 26px;
  color: #475569;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 760;
  line-height: 1.65;
  text-align: center;
  word-break: keep-all;
}

.mq-problem-card-image {
  width: min(100%, 1240px);
  aspect-ratio: 1536 / 690;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.mq-problem-card-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateY(-15.3%);
}

@media (max-width: 768px) {
  .mq-problem-panel {
    padding: 22px 10px 12px;
  }

  .mq-problem-panel .mq-problem-panel-desc {
    margin-bottom: 20px;
    font-size: 15.5px;
  }

  .mq-problem-card-image {
    width: calc(100vw - 24px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
  }
}

@media (max-width: 430px) {
  .mq-problem-card-image {
    width: calc(100vw - 14px);
  }
}
