.ml-page {
  background: #FAFAF8;
  color: #232A31;
}
.ml-page * {
  box-sizing: border-box;
}
.ml-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.ml-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(244,241,236,0.09);
}
.ml-topbar__wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.ml-topbar__wordmark img {
  display: block;
  height: 24px;
  width: auto;
}
.ml-topbar__links {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
}
.ml-topbar__links a {
  color: rgba(244,241,236,0.72);
  font-size: 13px;
  text-decoration: none;
}
.ml-topbar__links a:hover {
  color: #FAFAF8;
}
.ml-hero {
  padding: 154px 0 58px;
  border-bottom: 1px solid #E5E5E2;
}
.ml-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: 56px;
  align-items: start;
}
.ml-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1B3A5B;
}
.ml-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: #1B3A5B;
}
.ml-title {
  margin: 0;
  max-width: 850px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(42px, 6.8vw, 90px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #232A31;
}
.ml-lede {
  max-width: 690px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.78;
  color: #586069;
}
.ml-proof,
.ml-section,
.ml-side-panel,
.ml-report {
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  background: #FAFAF8;
}
.ml-proof,
.ml-side-panel,
.ml-report {
  padding: 24px;
}
.ml-proof__title,
.ml-side-panel h2,
.ml-report h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: 0;
  font-weight: 400;
  color: #232A31;
}
.ml-proof__list,
.ml-mini-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #E5E5E2;
}
.ml-proof__list li,
.ml-mini-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #E5E5E2;
  color: #586069;
  font-size: 14px;
  line-height: 1.58;
}
.ml-proof__list strong {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1B3A5B;
}
.ml-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 42px;
  align-items: start;
  padding: 54px 0 82px;
}
.ml-form {
  display: grid;
  gap: 18px;
}
.ml-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ml-section {
  padding: 26px;
}
.ml-section__head {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid #E5E5E2;
  margin-bottom: 22px;
}
.ml-section__num {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  color: #1B3A5B;
}
.ml-section h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 29px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 400;
  color: #232A31;
}
.ml-section__intro {
  margin: 9px 0 0;
  max-width: 690px;
  color: #586069;
  font-size: 15px;
  line-height: 1.7;
}
.ml-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.ml-field {
  display: grid;
  gap: 8px;
}
.ml-field--full {
  grid-column: 1 / -1;
}
.ml-label {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #586069;
}
.ml-input,
.ml-select,
.ml-textarea {
  width: 100%;
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  background: #FAFAF8;
  color: #232A31;
  font: 15px/1.45 'Source Sans 3', system-ui, sans-serif;
  padding: 12px 13px;
}
.ml-input::placeholder,
.ml-textarea::placeholder {
  color: #586069;
}
.ml-textarea {
  min-height: 112px;
  resize: vertical;
}
.ml-input:focus,
.ml-select:focus,
.ml-textarea:focus {
  outline: 2px solid #AFC4DD;
  outline-offset: 2px;
  border-color: #1B3A5B;
}
.ml-lane-cards,
.ml-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ml-lane-card,
.ml-summary-card,
.ml-metric-block,
.ml-system-card,
.ml-line-item {
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  padding: 16px;
  background: #FAFAF8;
}
.ml-lane-card strong,
.ml-summary-card strong,
.ml-system-card strong,
.ml-line-item strong {
  display: block;
  color: #232A31;
  font-size: 16px;
  line-height: 1.32;
}
.ml-lane-card span,
.ml-summary-card span,
.ml-system-card span,
.ml-line-item span {
  display: block;
  margin-top: 6px;
  color: #586069;
  font-size: 13.5px;
  line-height: 1.55;
}
.ml-metric-blocks {
  display: grid;
  gap: 16px;
}
.ml-fast-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #AFC4DD;
  border-radius: 8px;
  padding: 14px 16px;
  background: #FAFAF8;
  color: #232A31;
}
.ml-fast-note strong {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: #1B3A5B;
}
.ml-fast-note span {
  max-width: 560px;
  color: #586069;
  font-size: 14px;
  line-height: 1.55;
}
.ml-metric-block h3 {
  margin: 0 0 6px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
  color: #232A31;
}
.ml-metric-block p {
  margin: 0 0 16px;
  color: #586069;
  font-size: 14.5px;
  line-height: 1.65;
}
.ml-metric-block--primary {
  border-color: #AFC4DD;
}
.ml-metric-block--optional {
  background: #FAFAF8;
}
.ml-metric-block--assumptions {
  margin-top: 16px;
}
.ml-details {
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  background: #FAFAF8;
  overflow: hidden;
}
.ml-details + .ml-details {
  margin-top: 16px;
}
.ml-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
  color: #232A31;
}
.ml-details summary::-webkit-details-marker {
  display: none;
}
.ml-details summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #E5E5E2;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  color: #1B3A5B;
}
.ml-details[open] summary {
  border-bottom: 1px solid #E5E5E2;
}
.ml-details[open] summary::after {
  content: "-";
}
.ml-details summary span {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}
.ml-details summary small {
  margin-left: auto;
  color: #586069;
  font-size: 13.5px;
  line-height: 1.45;
}
.ml-details > .ml-metric-blocks,
.ml-details > .ml-grid {
  padding: 16px;
}
.ml-details--context {
  margin-top: 18px;
}
.ml-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  padding: 20px;
  background: #232A31;
  color: #FAFAF8;
}
.ml-submit p {
  margin: 0;
  max-width: 600px;
  color: #FAFAF8;
  font-size: 15px;
  line-height: 1.55;
}
.ml-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #1B3A5B;
  border-radius: 8px;
  background: #1B3A5B;
  color: #FAFAF8;
  min-height: 46px;
  padding: 12px 18px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.ml-button:hover {
  background: #17314D;
  border-color: #17314D;
}
.ml-button:focus-visible {
  outline: 2px solid #AFC4DD;
  outline-offset: 3px;
}
.ml-button--light,
.ml-button--ghost {
  background: #FAFAF8;
  color: #232A31;
  border-color: #FAFAF8;
}
.ml-button--ghost {
  border-color: #E5E5E2;
}
.ml-button--light:hover,
.ml-button--ghost:hover {
  background: #E5E5E2;
  border-color: #E5E5E2;
}
.ml-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}
.ml-side-panel p,
.ml-report p {
  color: #586069;
  font-size: 15px;
  line-height: 1.7;
}
.ml-side-panel p {
  margin: 14px 0 0;
}
.ml-mini-list li {
  grid-template-columns: 1fr;
}
.ml-report[hidden] {
  display: none;
}
.ml-report {
  display: grid;
  gap: 22px;
}
.ml-report__value {
  border-top: 1px solid #E5E5E2;
  border-bottom: 1px solid #E5E5E2;
  padding: 18px 0;
}
.ml-report__range {
  display: block;
  margin-top: 7px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
  color: #1B3A5B;
}
.ml-report__note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: #586069;
}
.ml-line-list,
.ml-bullet-list,
.ml-source-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.ml-line-item {
  display: grid;
  gap: 8px;
}
.ml-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.ml-pill {
  display: inline-flex;
  border: 1px solid #AFC4DD;
  border-radius: 999px;
  padding: 4px 9px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
  color: #1B3A5B;
}
.ml-bullet-list li,
.ml-source-list li {
  border: 1px solid #E5E5E2;
  border-radius: 8px;
  padding: 12px 13px;
  color: #586069;
  font-size: 13.5px;
  line-height: 1.55;
}
.ml-source-list a {
  color: #1B3A5B;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ml-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ml-status {
  margin: 0;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  line-height: 1.5;
  color: #586069;
}
.ml-footer {
  border-top: 1px solid #E5E5E2;
  padding: 34px 0;
  color: #586069;
}
.ml-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.ml-footer a {
  color: #232A31;
  text-decoration: none;
}
.ml-footer a:hover {
  color: #1B3A5B;
}
.ml-page--flow {
  background: #232A31;
  color: #FAFAF8;
}
.ml-page--flow .ml-hero {
  padding-top: clamp(54px, 8vw, 88px);
  border-bottom-color: rgba(244,241,236,0.09);
}
.ml-page--flow .ml-kicker,
.ml-page--flow .ml-section__num,
.ml-page--flow .ml-proof__list strong,
.ml-page--flow .ml-fast-note strong,
.ml-page--flow .ml-pill,
.ml-page--flow .ml-source-list a {
  color: #AFC4DD;
}
.ml-page--flow .ml-kicker::before {
  background: #AFC4DD;
}
.ml-page--flow .ml-title,
.ml-page--flow .ml-proof__title,
.ml-page--flow .ml-side-panel h2,
.ml-page--flow .ml-report h2,
.ml-page--flow .ml-section h2,
.ml-page--flow .ml-metric-block h3,
.ml-page--flow .ml-lane-card strong,
.ml-page--flow .ml-summary-card strong,
.ml-page--flow .ml-system-card strong,
.ml-page--flow .ml-line-item strong,
.ml-page--flow .ml-details summary span,
.ml-page--flow .ml-footer a {
  color: #FAFAF8;
}
.ml-page--flow .ml-lede,
.ml-page--flow .ml-section__intro,
.ml-page--flow .ml-proof__list li,
.ml-page--flow .ml-side-panel p,
.ml-page--flow .ml-report p,
.ml-page--flow .ml-mini-list li,
.ml-page--flow .ml-fast-note span,
.ml-page--flow .ml-metric-block p,
.ml-page--flow .ml-details summary small,
.ml-page--flow .ml-lane-card span,
.ml-page--flow .ml-summary-card span,
.ml-page--flow .ml-system-card span,
.ml-page--flow .ml-line-item span,
.ml-page--flow .ml-bullet-list li,
.ml-page--flow .ml-source-list li,
.ml-page--flow .ml-status,
.ml-page--flow .ml-footer,
.ml-page--flow .ml-label,
.ml-page--flow .ml-report__note {
  color: rgba(244,241,236,0.66);
}
.ml-page--flow .ml-proof,
.ml-page--flow .ml-section,
.ml-page--flow .ml-side-panel,
.ml-page--flow .ml-report,
.ml-page--flow .ml-lane-card,
.ml-page--flow .ml-summary-card,
.ml-page--flow .ml-metric-block,
.ml-page--flow .ml-system-card,
.ml-page--flow .ml-line-item,
.ml-page--flow .ml-bullet-list li,
.ml-page--flow .ml-source-list li,
.ml-page--flow .ml-details,
.ml-page--flow .ml-fast-note {
  background: rgba(244,241,236,0.025);
  border-color: rgba(244,241,236,0.10);
}
.ml-page--flow .ml-section,
.ml-page--flow .ml-side-panel,
.ml-page--flow .ml-report {
  border-radius: 20px;
}
.ml-page--flow .ml-section,
.ml-page--flow .ml-report,
.ml-page--flow .ml-side-panel {
  box-shadow: 0 34px 70px -42px rgba(10,16,24,0.78);
}
.ml-page--flow .ml-section__head,
.ml-page--flow .ml-proof__list,
.ml-page--flow .ml-mini-list,
.ml-page--flow .ml-proof__list li,
.ml-page--flow .ml-mini-list li,
.ml-page--flow .ml-report__value,
.ml-page--flow .ml-details[open] summary,
.ml-page--flow .ml-footer {
  border-color: rgba(244,241,236,0.09);
}
.ml-page--flow .ml-input,
.ml-page--flow .ml-select,
.ml-page--flow .ml-textarea {
  background: rgba(244,241,236,0.04);
  border-color: rgba(244,241,236,0.14);
  color: #FAFAF8;
}
.ml-page--flow .ml-input::placeholder,
.ml-page--flow .ml-textarea::placeholder {
  color: rgba(244,241,236,0.34);
}
.ml-page--flow .ml-input:focus,
.ml-page--flow .ml-select:focus,
.ml-page--flow .ml-textarea:focus {
  border-color: #AFC4DD;
  background: rgba(244,241,236,0.06);
}
.ml-page--flow .ml-select option {
  color: #232A31;
}
.ml-page--flow .ml-report__range {
  color: #AFC4DD;
}
.ml-flow-head {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(244,241,236,0.09);
  border-radius: 20px;
  padding: 22px 24px;
  background: rgba(244,241,236,0.015);
}
.ml-progress {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ml-progress__label {
  flex: 0 0 auto;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(244,241,236,0.66);
}
.ml-progress__track {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(244,241,236,0.16);
}
.ml-progress__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  background: #AFC4DD;
  transition: width .45s cubic-bezier(.2,.8,.2,1);
}
.ml-step {
  display: none;
}
.ml-step.is-active {
  display: block;
  animation: ml-step-in .42s cubic-bezier(.2,.8,.2,1);
}
.ml-step[hidden] {
  display: none !important;
}
.ml-page--flow .ml-submit {
  display: none;
}
.ml-page--flow .ml-submit.is-active {
  display: flex;
}
.ml-flow-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(244,241,236,0.09);
  border-radius: 20px;
  padding: 18px;
  background: rgba(244,241,236,0.015);
}
.ml-flow-nav p {
  margin: 0;
  flex: 1;
  color: rgba(244,241,236,0.62);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.ml-page--flow .ml-button {
  border-color: #1B3A5B;
  background: #1B3A5B;
  color: #FAFAF8;
}
.ml-page--flow .ml-button:hover {
  border-color: #FAFAF8;
  background: #FAFAF8;
  color: #1B3A5B;
}
.ml-page--flow .ml-button--ghost {
  background: transparent;
  color: #FAFAF8;
  border-color: rgba(244,241,236,0.24);
}
.ml-page--flow .ml-button--ghost:hover {
  border-color: #FAFAF8;
  background: rgba(244,241,236,0.05);
  color: #FAFAF8;
}
.ml-page--flow .ml-button--light {
  background: #FAFAF8;
  border-color: #FAFAF8;
  color: #232A31;
}
.ml-page--flow .ml-submit {
  background: rgba(244,241,236,0.025);
  border-color: rgba(244,241,236,0.10);
  border-radius: 20px;
}
.ml-page--flow .ml-submit p {
  color: rgba(244,241,236,0.72);
}
.ml-question-stage {
  outline: none;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.ml-question-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #AFC4DD;
}
.ml-question-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: #AFC4DD;
  flex: 0 0 auto;
}
.ml-question-title {
  margin: 0;
  max-width: 760px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 400;
  color: #FAFAF8;
}
.ml-question-sub {
  margin: 16px 0 0;
  max-width: 760px;
  color: rgba(244,241,236,0.64);
  font-size: 15px;
  line-height: 1.7;
}
.ml-contact-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.ml-position-block {
  margin-top: 26px;
}
.ml-options {
  display: grid;
  gap: 9px;
  margin-top: 26px;
}
.ml-options--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}
.ml-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  min-height: 58px;
  padding: 13px 18px;
  border: 1px solid rgba(244,241,236,0.10);
  border-radius: 11px;
  background: rgba(244,241,236,0.025);
  color: #FAFAF8;
  cursor: pointer;
  text-align: left;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  transition: background-color .22s ease, border-color .22s ease, transform .18s ease;
}
.ml-option:hover {
  background: rgba(244,241,236,0.05);
  border-color: rgba(244,241,236,0.24);
  transform: translateY(-1px);
}
.ml-option:focus-visible {
  outline: 2px solid #AFC4DD;
  outline-offset: 3px;
}
.ml-option.is-selected {
  border-color: #AFC4DD;
  background: rgba(27,58,91,0.18);
}
.ml-option__mark {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid rgba(244,241,236,0.35);
  border-radius: 50%;
}
.ml-option.is-selected .ml-option__mark {
  border-color: #AFC4DD;
}
.ml-option.is-selected .ml-option__mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #AFC4DD;
}
.ml-option__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.ml-option__body strong {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  color: #FAFAF8;
  overflow-wrap: anywhere;
}
.ml-option__body small {
  max-width: 720px;
  color: rgba(244,241,236,0.6);
  font-size: 13px;
  line-height: 1.45;
}
.ml-final-card {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(244,241,236,0.10);
  border-radius: 11px;
  background: rgba(244,241,236,0.025);
}
.ml-final-card strong {
  color: #FAFAF8;
  font-size: 17px;
  font-weight: 600;
}
.ml-final-card span {
  color: rgba(244,241,236,0.68);
  font-size: 15px;
  line-height: 1.6;
}
.ml-question-stage.is-shaking {
  animation: ml-shake .24s linear;
}
@keyframes ml-step-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes ml-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
@media (max-width: 980px) {
  .ml-hero {
    padding-top: 64px;
  }
  .ml-hero__grid,
  .ml-layout,
  .ml-lane-cards,
  .ml-summary-grid {
    grid-template-columns: 1fr;
  }
  .ml-sidebar {
    position: static;
  }
}
@media (max-width: 680px) {
  .ml-shell {
    width: min(100% - 28px, 1180px);
  }
  .ml-topbar {
    align-items: flex-start;
  }
  .ml-topbar__links {
    display: none;
  }
  .ml-grid {
    grid-template-columns: 1fr;
  }
  .ml-question-title {
    font-size: 30px;
  }
  .ml-contact-fields,
  .ml-options--compact {
    grid-template-columns: 1fr;
  }
  .ml-question-stage {
    min-height: 0;
  }
  .ml-section {
    padding: 20px;
  }
  .ml-section__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ml-proof__list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .ml-submit {
    align-items: flex-start;
  }
  .ml-flow-nav {
    display: grid;
  }
  .ml-flow-nav p {
    order: -1;
    text-align: left;
  }
  .ml-fast-note,
  .ml-details summary {
    display: grid;
  }
  .ml-details summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
  .ml-details summary span,
  .ml-details summary small {
    grid-column: 1;
  }
  .ml-details summary small {
    margin-left: 0;
  }
  .ml-details summary::after {
    grid-row: 1 / span 2;
    grid-column: 2;
    justify-self: end;
  }
  .ml-button {
    width: 100%;
  }
}
@media print {
  .pill-nav,
  .ml-topbar,
  .ml-hero,
  .ml-form,
  .ml-side-panel,
  .ml-actions,
  .ml-footer,
  .blc-launch,
  .blc-panel {
    display: none !important;
  }
  .ml-layout,
  .ml-shell {
    display: block;
    width: 100%;
    padding: 0;
  }
  .ml-sidebar {
    position: static;
  }
  .ml-report {
    border: 0;
  }
}
