.mmt-fsq {
  --mmt-fsq-primary: var(--gcid-primary-color, #06bab1);
  --mmt-fsq-secondary: var(--gcid-secondary-color, #f1cb4b);
  --mmt-fsq-heading: var(--gcid-heading-color, #08263e);
  --mmt-fsq-body: var(--gcid-body-color, #313131);
  --mmt-fsq-heading-font: var(--et_global_heading_font, "Lexend", sans-serif);
  --mmt-fsq-body-font: var(--et_global_body_font, "DM Sans", sans-serif);
  --mmt-fsq-radius: 5px;
  --mmt-fsq-border: rgba(8, 38, 62, 0.12);
  --mmt-fsq-border-strong: rgba(8, 38, 62, 0.2);
  --mmt-fsq-muted: rgba(49, 49, 49, 0.7);
  --mmt-fsq-surface: #ffffff;
  --mmt-fsq-surface-soft: rgba(6, 186, 177, 0.05);
  --mmt-fsq-surface-soft-strong: rgba(6, 186, 177, 0.08);
  --mmt-fsq-surface-warm: rgba(241, 203, 75, 0.1);
  --mmt-fsq-shadow: 0 22px 60px rgba(8, 38, 62, 0.08);
  --mmt-fsq-shadow-soft: 0 10px 24px rgba(8, 38, 62, 0.05);
  margin: 32px 0;
  color: var(--mmt-fsq-body);
  font-family: var(--mmt-fsq-body-font);
}

.mmt-fsq *,
.mmt-fsq *::before,
.mmt-fsq *::after {
  box-sizing: border-box;
}

.mmt-fsq__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mmt-fsq-border);
  border-radius: var(--mmt-fsq-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
  box-shadow: var(--mmt-fsq-shadow);
}

.mmt-fsq__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 38, 62, 0.08) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 24px 24px;
  opacity: 0.36;
  pointer-events: none;
}

.mmt-fsq__header,
.mmt-fsq__app {
  position: relative;
  z-index: 1;
}

.mmt-fsq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(12, 33, 52, 0.98), rgba(12, 33, 52, 0.96)),
    linear-gradient(90deg, rgba(6, 186, 177, 0.16), rgba(241, 203, 75, 0.06));
}

.mmt-fsq__header-brand,
.mmt-fsq__header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mmt-fsq__header-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mmt-fsq__header-accent span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.mmt-fsq__header-accent span:nth-child(2) {
  background: rgba(6, 186, 177, 0.92);
}

.mmt-fsq__header-accent span:nth-child(3) {
  background: rgba(241, 203, 75, 0.92);
}

.mmt-fsq__header-flair {
  display: inline-grid;
  gap: 6px;
  min-width: 58px;
}

.mmt-fsq__header-flair span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(6, 186, 177, 0.9), rgba(6, 186, 177, 0.16));
}

.mmt-fsq__header-flair span:nth-child(1) {
  width: 34px;
}

.mmt-fsq__header-flair span:nth-child(2) {
  width: 52px;
}

.mmt-fsq__header-flair span:nth-child(3) {
  width: 26px;
  background: linear-gradient(90deg, rgba(241, 203, 75, 0.92), rgba(241, 203, 75, 0.2));
}

.mmt-fsq__header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mmt-fsq-radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mmt-fsq__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid var(--mmt-fsq-border);
  border-radius: var(--mmt-fsq-radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--mmt-fsq-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mmt-fsq__chip-icon,
.mmt-fsq__result-card-icon,
.mmt-fsq__button-icon,
.mmt-fsq__feature-icon,
.mmt-fsq__hero-mark-icon,
.mmt-fsq__status-icon,
.mmt-fsq__style-preview-svg,
.mmt-fsq__option-icon,
.mmt-fsq__result-hero-svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--mmt-fsq-primary);
}

.mmt-fsq__title,
.mmt-fsq__subtitle,
.mmt-fsq__note,
.mmt-fsq__meta {
  margin: 0;
}

.mmt-fsq [data-mmt-fsq-focus-target]:focus {
  outline: none;
}

.mmt-fsq__title {
  color: #ffffff;
  font-family: var(--mmt-fsq-heading-font);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mmt-fsq__subtitle,
.mmt-fsq__meta,
.mmt-fsq__note,
.mmt-fsq__hero-copy,
.mmt-fsq__feature-text,
.mmt-fsq__side-text,
.mmt-fsq__style-preview-text,
.mmt-fsq__question-copy,
.mmt-fsq__result-summary,
.mmt-fsq__result-note,
.mmt-fsq__result-next-step-text,
.mmt-fsq__micro-copy,
.mmt-fsq__noscript {
  color: var(--mmt-fsq-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.mmt-fsq__note {
  display: none;
}

.mmt-fsq__app {
  padding: 0;
}

.mmt-fsq__screen {
  will-change: opacity, transform;
}

.mmt-fsq__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  min-height: 560px;
}

.mmt-fsq__split--result {
  grid-template-columns: minmax(260px, 0.26fr) minmax(0, 0.74fr);
}

.mmt-fsq__panel {
  padding: clamp(20px, 3vw, 32px);
}

.mmt-fsq__panel--main,
.mmt-fsq__panel--result {
  background: transparent;
}

.mmt-fsq__screen--welcome .mmt-fsq__panel--main {
  position: relative;
  isolation: isolate;
}

.mmt-fsq__screen--welcome .mmt-fsq__panel--main > * {
  position: relative;
  z-index: 1;
}

.mmt-fsq__screen--welcome .mmt-fsq__panel--main::after {
  content: "";
  position: absolute;
  top: 128px;
  right: 34px;
  width: min(32vw, 320px);
  height: 210px;
  border: 1px solid rgba(8, 38, 62, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(6, 186, 177, 0.34), rgba(6, 186, 177, 0.06)) 28px 32px / 148px 10px no-repeat,
    linear-gradient(90deg, rgba(6, 186, 177, 0.5), rgba(6, 186, 177, 0.08)) 28px 58px / 212px 10px no-repeat,
    linear-gradient(90deg, rgba(241, 203, 75, 0.8), rgba(241, 203, 75, 0.14)) 28px 84px / 116px 10px no-repeat,
    radial-gradient(circle at 76% 34%, rgba(6, 186, 177, 0.24) 0 12px, transparent 13px),
    radial-gradient(circle at 76% 34%, rgba(6, 186, 177, 0.1) 0 36px, transparent 37px),
    radial-gradient(circle at 76% 34%, rgba(8, 38, 62, 0.08) 0 60px, transparent 61px),
    radial-gradient(circle at 22% 78%, rgba(241, 203, 75, 0.12) 0 30px, transparent 31px),
    linear-gradient(135deg, rgba(6, 186, 177, 0.08), rgba(255, 255, 255, 0.94));
  box-shadow:
    0 22px 48px rgba(8, 38, 62, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  opacity: 0.94;
  pointer-events: none;
  z-index: 0;
}

.mmt-fsq__panel--side,
.mmt-fsq__panel--complete {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--mmt-fsq-border);
  background:
    linear-gradient(180deg, rgba(248, 251, 252, 0.92), rgba(248, 251, 252, 0.96));
}

.mmt-fsq__hero-mark,
.mmt-fsq__feature-icon-wrap,
.mmt-fsq__style-preview-icon,
.mmt-fsq__option-icon-wrap,
.mmt-fsq__result-hero-icon,
.mmt-fsq__status-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mmt-fsq-border);
  border-radius: var(--mmt-fsq-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--mmt-fsq-shadow-soft);
}

.mmt-fsq__hero-mark {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.mmt-fsq__hero-mark-icon,
.mmt-fsq__status-icon,
.mmt-fsq__result-hero-svg {
  width: 30px;
  height: 30px;
}

.mmt-fsq__eyebrow,
.mmt-fsq__side-label,
.mmt-fsq__result-stat-label,
.mmt-fsq__micro-copy {
  margin: 0;
  color: var(--mmt-fsq-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mmt-fsq__hero-title,
.mmt-fsq__question-title,
.mmt-fsq__result-title,
.mmt-fsq__side-title,
.mmt-fsq__feature-title,
.mmt-fsq__style-preview-title,
.mmt-fsq__option-title,
.mmt-fsq__result-stat-value,
.mmt-fsq__result-card-title {
  margin: 0;
  color: var(--mmt-fsq-heading);
  font-family: var(--mmt-fsq-heading-font);
}

.mmt-fsq__hero-title {
  display: grid;
  gap: 2px;
  margin: 10px 0 16px;
  font-size: clamp(2.05rem, 3.7vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.mmt-fsq__hero-title-line {
  display: block;
}

.mmt-fsq__hero-title-line--accent {
  color: var(--mmt-fsq-primary);
}

.mmt-fsq__hero-copy {
  max-width: 34rem;
  margin: 0;
}

.mmt-fsq__hero-copy + .mmt-fsq__hero-copy {
  margin-top: 10px;
}

.mmt-fsq__feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.mmt-fsq__feature-card,
.mmt-fsq__result-stat,
.mmt-fsq__result-card,
.mmt-fsq__result-next-step,
.mmt-fsq__style-preview,
.mmt-fsq__option-card,
.mmt-fsq__result-hero {
  border: 1px solid var(--mmt-fsq-border);
  border-radius: var(--mmt-fsq-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--mmt-fsq-shadow-soft);
}

.mmt-fsq__feature-card {
  padding: 16px;
}

.mmt-fsq__feature-icon-wrap,
.mmt-fsq__style-preview-icon,
.mmt-fsq__option-icon-wrap {
  width: 46px;
  height: 46px;
  background: linear-gradient(180deg, rgba(6, 186, 177, 0.08), rgba(6, 186, 177, 0.04));
}

.mmt-fsq__feature-icon-wrap {
  margin-bottom: 14px;
}

.mmt-fsq__feature-title {
  font-size: 1.02rem;
  line-height: 1.35;
}

.mmt-fsq__feature-text {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.mmt-fsq__button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.mmt-fsq__button-row--spread {
  justify-content: space-between;
}

.mmt-fsq__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: var(--mmt-fsq-radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.mmt-fsq__button:hover {
  transform: translateY(-1px);
}

.mmt-fsq__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.mmt-fsq__button--primary {
  border: 1px solid var(--mmt-fsq-primary);
  background: linear-gradient(135deg, var(--mmt-fsq-primary), rgba(6, 186, 177, 0.92));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(6, 186, 177, 0.18);
}

.mmt-fsq__button--primary .mmt-fsq__button-icon {
  color: #ffffff;
}

.mmt-fsq__button--ghost {
  border: 1px solid var(--mmt-fsq-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--mmt-fsq-heading);
}

.mmt-fsq__micro-copy {
  margin-top: 14px;
  color: rgba(8, 38, 62, 0.5);
}

.mmt-fsq__status-tile {
  width: 96px;
  height: 96px;
  position: relative;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.98));
}

.mmt-fsq__status-tile--loader {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.98));
}

.mmt-fsq__loader-ring {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 3px solid rgba(8, 38, 62, 0.08);
  border-top-color: var(--mmt-fsq-primary);
  animation: mmt-fsq-spin 1.2s linear infinite;
}

.mmt-fsq__loader-core {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--mmt-fsq-radius);
  background: rgba(255, 255, 255, 0.94);
}

.mmt-fsq__status-meter {
  width: 52px;
  height: 4px;
  overflow: hidden;
  border-radius: var(--mmt-fsq-radius);
  background: rgba(8, 38, 62, 0.1);
}

.mmt-fsq__status-meter-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mmt-fsq-primary), var(--mmt-fsq-secondary));
  transition: width 180ms ease;
}

.mmt-fsq__side-title {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}

.mmt-fsq__side-text {
  margin: 0;
}

.mmt-fsq__style-preview-list {
  display: grid;
  gap: 12px;
}

.mmt-fsq__style-preview-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mmt-fsq__style-preview {
  padding: 14px;
}

.mmt-fsq__style-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.mmt-fsq__style-preview-icon {
  margin-bottom: 0;
}

.mmt-fsq__style-preview-title {
  font-size: 0.98rem;
  line-height: 1.35;
}

.mmt-fsq__style-preview-text {
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.mmt-fsq__question-title {
  max-width: 38rem;
  margin: 16px 0 8px;
  font-size: clamp(1.65rem, 2.3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.mmt-fsq__question-copy {
  margin: 0 0 24px;
}

.mmt-fsq__options {
  display: grid;
  gap: 12px;
}

.mmt-fsq__option {
  display: block;
  cursor: pointer;
}

.mmt-fsq__option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mmt-fsq__option-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mmt-fsq__option:hover .mmt-fsq__option-card {
  transform: translateY(-1px);
  border-color: var(--mmt-fsq-border-strong);
}

.mmt-fsq__option-body {
  display: grid;
  gap: 4px;
}

.mmt-fsq__option-title {
  font-size: 0.95rem;
  line-height: 1.45;
}

.mmt-fsq__option-indicator {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--mmt-fsq-border-strong);
  border-radius: var(--mmt-fsq-radius);
  background: #ffffff;
  box-shadow: inset 0 0 0 4px transparent;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.mmt-fsq__option-input:checked + .mmt-fsq__option-card {
  border-color: var(--mmt-fsq-primary);
  background:
    linear-gradient(135deg, rgba(6, 186, 177, 0.1), rgba(255, 255, 255, 0)),
    #ffffff;
  box-shadow: 0 0 0 1px rgba(6, 186, 177, 0.08), 0 12px 28px rgba(8, 38, 62, 0.06);
}

.mmt-fsq__option-input:checked + .mmt-fsq__option-card .mmt-fsq__option-indicator {
  border-color: var(--mmt-fsq-primary);
  box-shadow: inset 0 0 0 8px var(--mmt-fsq-primary);
}

.mmt-fsq__option-input:focus-visible + .mmt-fsq__option-card {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(6, 186, 177, 0.16);
}

.mmt-fsq__result-hero {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(6, 186, 177, 0.95), rgba(8, 38, 62, 0.92)),
    #ffffff;
}

.mmt-fsq__result-hero-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 20px;
}

.mmt-fsq__result-date {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.mmt-fsq__result-hero .mmt-fsq__chip {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.mmt-fsq__result-hero .mmt-fsq__chip-icon,
.mmt-fsq__result-hero .mmt-fsq__result-hero-svg {
  color: #ffffff;
}

.mmt-fsq__result-hero-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mmt-fsq__result-hero-icon {
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.mmt-fsq__result-title {
  color: #ffffff;
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mmt-fsq__result-summary,
.mmt-fsq__result-note,
.mmt-fsq__result-next-step-text {
  margin: 0;
}

.mmt-fsq__result-summary,
.mmt-fsq__result-note {
  color: rgba(255, 255, 255, 0.88);
}

.mmt-fsq__result-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.mmt-fsq__result-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mmt-fsq__result-stat,
.mmt-fsq__result-card,
.mmt-fsq__result-next-step {
  padding: 18px;
}

.mmt-fsq__result-stat-label {
  color: rgba(8, 38, 62, 0.56);
}

.mmt-fsq__result-stat-value {
  font-size: 1.3rem;
  line-height: 1.18;
}

.mmt-fsq__result-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.mmt-fsq__result-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mmt-fsq__result-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--mmt-fsq-body);
}

.mmt-fsq__result-list li {
  line-height: 1.7;
}

.mmt-fsq__result-list li + li {
  margin-top: 8px;
}

.mmt-fsq__result-next-step {
  margin-top: 18px;
  background:
    linear-gradient(135deg, rgba(241, 203, 75, 0.16), rgba(255, 255, 255, 0)),
    #ffffff;
}

.mmt-fsq__side-note {
  margin: 0;
  color: rgba(49, 49, 49, 0.56);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mmt-fsq__result-next-step .mmt-fsq__chip {
  margin-bottom: 14px;
}

.mmt-fsq__screen--exit-forward {
  animation: mmt-fsq-screen-out-left 150ms ease both;
}

.mmt-fsq__screen--enter-forward {
  animation: mmt-fsq-screen-in-right 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--exit-back {
  animation: mmt-fsq-screen-out-right 150ms ease both;
}

.mmt-fsq__screen--enter-back {
  animation: mmt-fsq-screen-in-left 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--enter-welcome {
  animation: mmt-fsq-screen-in-soft 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--exit-welcome,
.mmt-fsq__screen--exit-result {
  animation: mmt-fsq-screen-out-soft 150ms ease both;
}

.mmt-fsq__screen--enter-result {
  animation: mmt-fsq-screen-in-soft 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--enter-forward .mmt-fsq__option,
.mmt-fsq__screen--enter-back .mmt-fsq__option {
  animation: mmt-fsq-fade-up 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--enter-forward .mmt-fsq__option:nth-child(1),
.mmt-fsq__screen--enter-back .mmt-fsq__option:nth-child(1) {
  animation-delay: 20ms;
}

.mmt-fsq__screen--enter-forward .mmt-fsq__option:nth-child(2),
.mmt-fsq__screen--enter-back .mmt-fsq__option:nth-child(2) {
  animation-delay: 50ms;
}

.mmt-fsq__screen--enter-forward .mmt-fsq__option:nth-child(3),
.mmt-fsq__screen--enter-back .mmt-fsq__option:nth-child(3) {
  animation-delay: 80ms;
}

.mmt-fsq__screen--enter-forward .mmt-fsq__option:nth-child(4),
.mmt-fsq__screen--enter-back .mmt-fsq__option:nth-child(4) {
  animation-delay: 110ms;
}

.mmt-fsq__screen--enter-result .mmt-fsq__panel--complete,
.mmt-fsq__screen--enter-result .mmt-fsq__result-hero,
.mmt-fsq__screen--enter-result .mmt-fsq__result-stats,
.mmt-fsq__screen--enter-result .mmt-fsq__result-card-grid,
.mmt-fsq__screen--enter-result .mmt-fsq__result-next-step {
  animation: mmt-fsq-fade-up 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mmt-fsq__screen--enter-result .mmt-fsq__panel--complete {
  animation-delay: 20ms;
}

.mmt-fsq__screen--enter-result .mmt-fsq__result-hero {
  animation-delay: 70ms;
}

.mmt-fsq__screen--enter-result .mmt-fsq__result-stats {
  animation-delay: 130ms;
}

.mmt-fsq__screen--enter-result .mmt-fsq__result-card-grid {
  animation-delay: 190ms;
}

.mmt-fsq__screen--enter-result .mmt-fsq__result-next-step {
  animation-delay: 250ms;
}

.mmt-fsq__noscript {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 24px 24px;
}

@media (max-width: 1180px) {
  .mmt-fsq__feature-grid,
  .mmt-fsq__result-stats,
  .mmt-fsq__result-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mmt-fsq__screen--welcome .mmt-fsq__panel--main::after {
    width: min(28vw, 270px);
    height: 192px;
    top: 142px;
    right: 18px;
  }
}

@media (max-width: 980px) {
  .mmt-fsq__split,
  .mmt-fsq__split--result {
    grid-template-columns: 1fr;
  }

  .mmt-fsq__panel--side,
  .mmt-fsq__panel--complete {
    border-left: 0;
    border-top: 1px solid var(--mmt-fsq-border);
  }

  .mmt-fsq__screen--welcome .mmt-fsq__panel--main::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .mmt-fsq__header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .mmt-fsq__title {
    font-size: 1.02rem;
  }

  .mmt-fsq__header-meta {
    width: 100%;
    justify-content: space-between;
  }

  .mmt-fsq__header-flair {
    min-width: 46px;
  }

  .mmt-fsq__panel {
    padding: 18px 16px;
  }

  .mmt-fsq__hero-title,
  .mmt-fsq__question-title,
  .mmt-fsq__result-title {
    letter-spacing: -0.02em;
  }

  .mmt-fsq__feature-grid,
  .mmt-fsq__result-stats,
  .mmt-fsq__result-card-grid {
    grid-template-columns: 1fr;
  }

  .mmt-fsq__style-preview-list {
    grid-template-columns: 1fr;
  }

  .mmt-fsq__result-hero-row,
  .mmt-fsq__style-preview,
  .mmt-fsq__option-card {
    grid-template-columns: 1fr;
  }

  .mmt-fsq__option-card {
    gap: 12px;
  }

  .mmt-fsq__option-indicator {
    justify-self: start;
  }

  .mmt-fsq__button-row,
  .mmt-fsq__button-row--spread {
    flex-direction: column;
    align-items: stretch;
  }

  .mmt-fsq__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mmt-fsq__button,
  .mmt-fsq__option-card,
  .mmt-fsq__status-meter-fill,
  .mmt-fsq__loader-ring,
  .mmt-fsq__screen,
  .mmt-fsq__option,
  .mmt-fsq__panel--complete,
  .mmt-fsq__result-hero,
  .mmt-fsq__result-stats,
  .mmt-fsq__result-card-grid,
  .mmt-fsq__result-next-step {
    transition: none;
    animation: none;
  }

  .mmt-fsq__button:hover,
  .mmt-fsq__option:hover .mmt-fsq__option-card {
    transform: none;
  }
}

@keyframes mmt-fsq-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mmt-fsq-screen-out-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes mmt-fsq-screen-in-right {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mmt-fsq-screen-out-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(18px);
  }
}

@keyframes mmt-fsq-screen-in-left {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mmt-fsq-screen-in-soft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mmt-fsq-screen-out-soft {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

@keyframes mmt-fsq-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
