.mmt-pf {
  --mmt-pf-primary: var(--gcid-primary-color, #06bab1);
  --mmt-pf-secondary: var(--gcid-secondary-color, #f1cb4b);
  --mmt-pf-heading: var(--gcid-heading-color, #08263e);
  --mmt-pf-body: var(--gcid-body-color, #313131);
  --mmt-pf-heading-font: var(--et_global_heading_font, "Lexend", sans-serif);
  --mmt-pf-body-font: var(--et_global_body_font, "DM Sans", sans-serif);
  --mmt-pf-radius: 5px;
  --mmt-pf-border: rgba(8, 38, 62, 0.12);
  --mmt-pf-border-strong: rgba(8, 38, 62, 0.2);
  --mmt-pf-muted: rgba(49, 49, 49, 0.72);
  --mmt-pf-surface: #ffffff;
  --mmt-pf-surface-soft: #f5f7f8;
  --mmt-pf-surface-tint: rgba(6, 186, 177, 0.05);
  --mmt-pf-shadow: 0 28px 70px rgba(8, 38, 62, 0.09);
  --mmt-pf-shadow-soft: 0 14px 28px rgba(8, 38, 62, 0.06);
  --mmt-pf-dark: #0c2234;
  --mmt-pf-dark-soft: #13314a;
  --mmt-pf-do: #0f8d74;
  --mmt-pf-schedule: #305f94;
  --mmt-pf-delegate: #b46c10;
  --mmt-pf-ignore: #8f5864;
  margin: 32px 0;
  color: var(--mmt-pf-body);
  font-family: var(--mmt-pf-body-font);
}

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

.mmt-pf__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--mmt-pf-border);
  border-radius: var(--mmt-pf-radius);
  background:
    radial-gradient(circle at top right, rgba(241, 203, 75, 0.12), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(6, 186, 177, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 1));
  box-shadow: var(--mmt-pf-shadow);
}

.mmt-pf__shell::before,
.mmt-pf__shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mmt-pf__shell::before {
  inset: 0;
  background-image: linear-gradient(rgba(8, 38, 62, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 62, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.mmt-pf__shell::after {
  top: 60px;
  right: 0;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 186, 177, 0), rgba(6, 186, 177, 0.4));
}

.mmt-pf__header,
.mmt-pf__app {
  position: relative;
  z-index: 1;
}

.mmt-pf__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px 20px;
  background:
    linear-gradient(180deg, rgba(12, 34, 52, 0.98), rgba(12, 34, 52, 0.96)),
    linear-gradient(90deg, rgba(6, 186, 177, 0.18), rgba(241, 203, 75, 0.08));
  color: #ffffff;
}

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

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

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

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

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

.mmt-pf__title,
.mmt-pf__hero-title,
.mmt-pf__question-title,
.mmt-pf__result-title,
.mmt-pf__task-title,
.mmt-pf__result-task-title,
.mmt-pf__count-value,
.mmt-pf__snapshot-value {
  margin: 0;
  color: var(--mmt-pf-heading);
  font-family: var(--mmt-pf-heading-font);
}

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

.mmt-pf__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-pf-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-pf__hero-copy,
.mmt-pf__hero-blurb-text,
.mmt-pf__question-help,
.mmt-pf__question-note,
.mmt-pf__task-note,
.mmt-pf__result-summary,
.mmt-pf__result-intro,
.mmt-pf__result-task-note,
.mmt-pf__copy-state,
.mmt-pf__meta-text,
.mmt-pf__side-card-text,
.mmt-pf__welcome-note,
.mmt-pf__noscript,
.mmt-pf__empty-text,
.mmt-pf__reset-message {
  margin: 0;
  color: var(--mmt-pf-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.mmt-pf__eyebrow,
.mmt-pf__label,
.mmt-pf__side-label,
.mmt-pf__result-label,
.mmt-pf__count-label,
.mmt-pf__snapshot-label,
.mmt-pf__question-legend {
  margin: 0;
  color: var(--mmt-pf-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.mmt-pf__app {
  min-height: 420px;
}

.mmt-pf__screen {
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(0, 14px, 0) scale(0.992);
  will-change: opacity, transform, filter;
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms ease;
}

.mmt-pf__screen.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.mmt-pf__screen.is-enter-forward {
  transform: translate3d(26px, 12px, 0) scale(0.992);
}

.mmt-pf__screen.is-enter-back {
  transform: translate3d(-26px, 12px, 0) scale(0.992);
}

.mmt-pf__screen.is-visible.is-enter-forward,
.mmt-pf__screen.is-visible.is-enter-back {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.mmt-pf__screen.is-exiting {
  opacity: 0;
  filter: blur(2px);
  pointer-events: none;
}

.mmt-pf__screen.is-exiting.is-exit-forward {
  transform: translate3d(-26px, 0, 0) scale(0.992);
}

.mmt-pf__screen.is-exiting.is-exit-back {
  transform: translate3d(26px, 0, 0) scale(0.992);
}

.mmt-pf__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  min-height: 560px;
}

.mmt-pf__split--welcome {
  min-height: 540px;
}

.mmt-pf__split--result {
  grid-template-columns: minmax(260px, 0.33fr) minmax(0, 0.67fr);
}

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

.mmt-pf__panel--main {
  position: relative;
}

.mmt-pf__panel--main::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(6, 186, 177, 0.32);
  border-right: 1px solid rgba(6, 186, 177, 0.32);
  pointer-events: none;
}

.mmt-pf__panel--side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--mmt-pf-border);
  background:
    linear-gradient(180deg, rgba(245, 247, 248, 0.92), rgba(245, 247, 248, 0.98));
}

.mmt-pf__panel--welcome-main,
.mmt-pf__panel--welcome-side {
  justify-content: center;
}

.mmt-pf__panel--welcome-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.mmt-pf__panel--welcome-side {
  align-items: center;
  gap: 12px;
}

.mmt-pf__hero-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  display: grid;
  gap: 0.05em;
  width: min(100%, 16.5ch);
  max-width: 16.5ch;
}

.mmt-pf__hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
}

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

.mmt-pf__hero-title-line--accent {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(90deg, #0f8d74 0%, #0f8d74 58%, #b46c10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mmt-pf__hero-ornament {
  position: relative;
  width: min(100%, 332px);
  min-height: 192px;
  justify-self: end;
  pointer-events: none;
}

.mmt-pf__hero-ornament-halo,
.mmt-pf__hero-ornament-ring {
  position: absolute;
  border-radius: 999px;
}

.mmt-pf__hero-ornament-halo {
  inset: 20px 10px 16px 34px;
  background:
    radial-gradient(circle at 30% 30%, rgba(6, 186, 177, 0.16), transparent 48%),
    radial-gradient(circle at 72% 34%, rgba(241, 203, 75, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(6, 186, 177, 0.06), rgba(255, 255, 255, 0));
  filter: blur(4px);
}

.mmt-pf__hero-ornament-card {
  position: absolute;
  top: 18px;
  right: 6px;
  width: min(100%, 264px);
  padding: 16px 16px 14px;
  border: 1px solid rgba(8, 38, 62, 0.12);
  border-radius: var(--mmt-pf-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 247, 248, 0.96)),
    linear-gradient(135deg, rgba(6, 186, 177, 0.05), rgba(241, 203, 75, 0.04));
  box-shadow: 0 20px 44px rgba(8, 38, 62, 0.08);
  overflow: hidden;
}

.mmt-pf__hero-ornament-card::before,
.mmt-pf__hero-ornament-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mmt-pf__hero-ornament-card::before {
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.6), transparent 38%),
    radial-gradient(circle at top right, rgba(6, 186, 177, 0.1), transparent 28%);
}

.mmt-pf__hero-ornament-card::after {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-top: 1px solid rgba(6, 186, 177, 0.26);
  border-right: 1px solid rgba(6, 186, 177, 0.26);
}

.mmt-pf__hero-ornament-kicker,
.mmt-pf__hero-ornament-row {
  position: relative;
  z-index: 1;
}

.mmt-pf__hero-ornament-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mmt-pf-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mmt-pf__hero-ornament-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mmt-pf-primary), var(--mmt-pf-secondary));
  box-shadow: 0 0 0 5px rgba(6, 186, 177, 0.08);
}

.mmt-pf__hero-ornament-rows {
  display: grid;
  gap: 10px;
}

.mmt-pf__hero-ornament-row {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mmt-pf__hero-ornament-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(8, 38, 62, 0.18);
}

.mmt-pf__hero-ornament-line {
  position: relative;
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(8, 38, 62, 0.08);
  overflow: hidden;
}

.mmt-pf__hero-ornament-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 74%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(8, 38, 62, 0.78), rgba(8, 38, 62, 0.18));
}

.mmt-pf__hero-ornament-row--do .mmt-pf__hero-ornament-dot {
  background: var(--mmt-pf-do);
}

.mmt-pf__hero-ornament-row--do .mmt-pf__hero-ornament-line::after {
  width: 78%;
  background: linear-gradient(90deg, rgba(15, 141, 116, 0.96), rgba(15, 141, 116, 0.3));
}

.mmt-pf__hero-ornament-row--schedule .mmt-pf__hero-ornament-dot {
  background: var(--mmt-pf-schedule);
}

.mmt-pf__hero-ornament-row--schedule .mmt-pf__hero-ornament-line::after {
  width: 60%;
  background: linear-gradient(90deg, rgba(48, 95, 148, 0.92), rgba(48, 95, 148, 0.28));
}

.mmt-pf__hero-ornament-row--delegate .mmt-pf__hero-ornament-dot {
  background: var(--mmt-pf-delegate);
}

.mmt-pf__hero-ornament-row--delegate .mmt-pf__hero-ornament-line::after {
  width: 46%;
  background: linear-gradient(90deg, rgba(180, 108, 16, 0.92), rgba(180, 108, 16, 0.26));
}

.mmt-pf__hero-ornament-row--ignore .mmt-pf__hero-ornament-dot {
  background: var(--mmt-pf-ignore);
}

.mmt-pf__hero-ornament-row--ignore .mmt-pf__hero-ornament-line::after {
  width: 32%;
  background: linear-gradient(90deg, rgba(143, 88, 100, 0.88), rgba(143, 88, 100, 0.2));
}

.mmt-pf__hero-ornament-ring--one {
  top: 4px;
  right: 82px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(6, 186, 177, 0.18);
}

.mmt-pf__hero-ornament-ring--two {
  right: 0;
  bottom: 0;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(241, 203, 75, 0.22);
}

.mmt-pf__hero-copy {
  max-width: 56ch;
  line-height: 1.58;
}

.mmt-pf__hero-blurbs,
.mmt-pf__context-stack,
.mmt-pf__task-cards,
.mmt-pf__result-sections {
  display: grid;
  gap: 14px;
}

.mmt-pf__hero-blurbs {
  gap: 12px;
}

.mmt-pf__hero-blurb,
.mmt-pf__side-card,
.mmt-pf__task-card,
.mmt-pf__result-card,
.mmt-pf__snapshot-card,
.mmt-pf__count-card {
  border: 1px solid var(--mmt-pf-border);
  border-radius: var(--mmt-pf-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--mmt-pf-shadow-soft);
}

.mmt-pf__hero-blurb,
.mmt-pf__side-card {
  padding: 13px 14px;
}

.mmt-pf__hero-blurb {
  display: flex;
  gap: 12px;
  padding: 13px 14px;
}

.mmt-pf__side-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0 14px;
  align-items: start;
}

.mmt-pf__hero-blurb-icon-wrap,
.mmt-pf__side-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: var(--mmt-pf-radius);
  background: rgba(6, 186, 177, 0.1);
  color: var(--mmt-pf-primary);
}

.mmt-pf__hero-blurb-icon,
.mmt-pf__side-card-icon,
.mmt-pf__button-icon,
.mmt-pf__option-check-icon {
  width: 18px;
  height: 18px;
}

.mmt-pf__hero-blurb-title,
.mmt-pf__side-card-title {
  margin: 0 0 2px;
  color: var(--mmt-pf-heading);
  font-family: var(--mmt-pf-heading-font);
  font-size: 0.98rem;
}

.mmt-pf__hero-blurb-copy,
.mmt-pf__side-card-body {
  display: grid;
  gap: 3px;
}

.mmt-pf__hero-blurb-text {
  font-size: 0.95rem;
  line-height: 1.55;
}

.mmt-pf__side-card-title {
  margin: 0;
  line-height: 1.2;
}

.mmt-pf__welcome-ornament {
  display: grid;
  gap: 12px;
  width: min(100%, 286px);
}

.mmt-pf__welcome-stack,
.mmt-pf__pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mmt-pf__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(8, 38, 62, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--mmt-pf-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.mmt-pf__welcome-notes {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(8, 38, 62, 0.1);
  border-radius: var(--mmt-pf-radius);
  background: linear-gradient(180deg, rgba(12, 34, 52, 0.96), rgba(19, 49, 74, 0.94));
}

.mmt-pf__welcome-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  line-height: 1.58;
}

.mmt-pf__progress {
  margin-bottom: 16px;
}

.mmt-pf__progress-bar {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(8, 38, 62, 0.08);
}

.mmt-pf__progress-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mmt-pf-primary), var(--mmt-pf-secondary));
}

.mmt-pf__question-title,
.mmt-pf__result-title {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.mmt-pf__question-help {
  max-width: 62ch;
}

.mmt-pf__error {
  min-height: 1.6em;
  margin: 6px 0 0;
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 600;
}

.mmt-pf__label {
  display: block;
  margin-top: 8px;
  margin-bottom: 10px;
}

.mmt-pf__textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
  border: 1px solid var(--mmt-pf-border-strong);
  border-radius: var(--mmt-pf-radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--mmt-pf-body);
  padding: 16px 18px;
  font: inherit;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.mmt-pf__textarea::placeholder {
  color: rgba(49, 49, 49, 0.42);
}

.mmt-pf__textarea:focus {
  outline: none;
  border-color: rgba(6, 186, 177, 0.5);
  box-shadow: 0 0 0 4px rgba(6, 186, 177, 0.14);
}

.mmt-pf__field-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 10px;
}

.mmt-pf__actions,
.mmt-pf__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mmt-pf__actions {
  margin-top: 22px;
}

.mmt-pf__button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--mmt-pf-dark);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.mmt-pf button {
  border-radius: 5px !important;
}

.mmt-pf__button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.mmt-pf__button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.mmt-pf__button--primary {
  background: linear-gradient(135deg, var(--mmt-pf-primary), #0b988d);
  box-shadow: 0 12px 30px rgba(6, 186, 177, 0.18);
}

.mmt-pf__button--ghost {
  border-color: rgba(8, 38, 62, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--mmt-pf-heading);
}

.mmt-pf__question-group,
.mmt-pf__mini-group {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--mmt-pf-border);
  border-radius: var(--mmt-pf-radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--mmt-pf-shadow-soft);
}

.mmt-pf__question-legend,
.mmt-pf__mini-legend {
  padding: 0;
}

.mmt-pf__question-note {
  margin-top: 8px;
  margin-bottom: 14px;
}

.mmt-pf__option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mmt-pf__option {
  display: block;
}

.mmt-pf__option-input,
.mmt-pf__mini-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.mmt-pf__option-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(8, 38, 62, 0.1);
  border-radius: var(--mmt-pf-radius);
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.mmt-pf__option-card:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 38, 62, 0.18);
}

.mmt-pf__option-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mmt-pf__option-title {
  color: var(--mmt-pf-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.mmt-pf__option-hint {
  color: var(--mmt-pf-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mmt-pf__option-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(8, 38, 62, 0.12);
  border-radius: 999px;
  color: transparent;
}

.mmt-pf__option-input:checked + .mmt-pf__option-card {
  border-color: rgba(6, 186, 177, 0.46);
  background: linear-gradient(135deg, rgba(6, 186, 177, 0.08), rgba(241, 203, 75, 0.06));
  box-shadow: 0 12px 24px rgba(8, 38, 62, 0.08);
}

.mmt-pf__option-input:checked + .mmt-pf__option-card .mmt-pf__option-check {
  background: var(--mmt-pf-primary);
  border-color: var(--mmt-pf-primary);
  color: #ffffff;
}

.mmt-pf__option-input:focus-visible + .mmt-pf__option-card,
.mmt-pf__mini-input:focus-visible + .mmt-pf__mini-chip {
  outline: 3px solid rgba(6, 186, 177, 0.22);
  outline-offset: 2px;
}

.mmt-pf__side-list,
.mmt-pf__snapshot-grid,
.mmt-pf__count-grid {
  display: grid;
  gap: 10px;
}

.mmt-pf__snapshot-grid,
.mmt-pf__count-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mmt-pf__count-card,
.mmt-pf__snapshot-card {
  padding: 14px;
}

.mmt-pf__count-value,
.mmt-pf__snapshot-value {
  margin-top: 4px;
  font-size: 1.25rem;
  line-height: 1.05;
}

.mmt-pf__side-task {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid rgba(8, 38, 62, 0.1);
  border-radius: var(--mmt-pf-radius);
  background: rgba(255, 255, 255, 0.75);
}

.mmt-pf__side-task-index,
.mmt-pf__task-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  background: rgba(6, 186, 177, 0.12);
  color: var(--mmt-pf-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.mmt-pf__side-task-text {
  margin: 3px 0 0;
  color: var(--mmt-pf-heading);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.mmt-pf__task-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.mmt-pf__task-copy {
  display: grid;
  gap: 4px;
}

.mmt-pf__task-title,
.mmt-pf__result-task-title {
  font-size: 1rem;
  line-height: 1.35;
}

.mmt-pf__task-note,
.mmt-pf__result-task-note {
  font-size: 0.9rem;
}

.mmt-pf__mini-group + .mmt-pf__mini-group {
  margin-top: 10px;
}

.mmt-pf__mini-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mmt-pf__mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(8, 38, 62, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--mmt-pf-heading);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

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

.mmt-pf__mini-input:checked + .mmt-pf__mini-chip {
  border-color: rgba(6, 186, 177, 0.46);
  background: linear-gradient(135deg, rgba(6, 186, 177, 0.09), rgba(241, 203, 75, 0.08));
  color: var(--mmt-pf-heading);
}

.mmt-pf__result-summary {
  max-width: 70ch;
  margin-top: 10px;
}

.mmt-pf__result-card {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.mmt-pf__result-card--message {
  background: linear-gradient(135deg, rgba(6, 186, 177, 0.08), rgba(241, 203, 75, 0.08));
}

.mmt-pf__result-intro {
  font-size: 0.95rem;
}

.mmt-pf__result-task-list {
  display: grid;
  gap: 10px;
}

.mmt-pf__result-task {
  padding: 12px 13px;
  border-left: 3px solid rgba(8, 38, 62, 0.12);
  border-radius: var(--mmt-pf-radius);
  background: rgba(245, 247, 248, 0.92);
}

.mmt-pf__result-card:nth-child(1) .mmt-pf__result-task {
  border-left-color: rgba(15, 141, 116, 0.5);
}

.mmt-pf__result-card:nth-child(2) .mmt-pf__result-task {
  border-left-color: rgba(48, 95, 148, 0.5);
}

.mmt-pf__result-card:nth-child(3) .mmt-pf__result-task {
  border-left-color: rgba(180, 108, 16, 0.5);
}

.mmt-pf__result-card:nth-child(4) .mmt-pf__result-task {
  border-left-color: rgba(143, 88, 100, 0.5);
}

.mmt-pf__copy-state {
  font-size: 0.9rem;
}

.mmt-pf__empty-text {
  font-size: 0.93rem;
}

.mmt-pf__reset-message {
  color: var(--mmt-pf-heading);
  font-family: var(--mmt-pf-heading-font);
  font-size: 1.08rem;
}

.mmt-pf__noscript {
  padding: 0 20px 20px;
}

.mmt-pf__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .mmt-pf__hero-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .mmt-pf__hero-ornament {
    justify-self: start;
    width: min(100%, 296px);
    min-height: 164px;
  }

  .mmt-pf__panel--side {
    border-left: 0;
    border-top: 1px solid var(--mmt-pf-border);
  }

  .mmt-pf__option-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mmt-pf__snapshot-grid,
  .mmt-pf__count-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .mmt-pf__panel {
    padding: 18px;
  }

  .mmt-pf__question-title,
  .mmt-pf__result-title,
  .mmt-pf__hero-title {
    max-width: none;
    width: auto;
  }

  .mmt-pf__hero-ornament {
    width: 100%;
    min-height: 148px;
  }

  .mmt-pf__hero-ornament-card {
    right: 0;
    width: min(100%, 248px);
  }

  .mmt-pf__field-meta,
  .mmt-pf__actions,
  .mmt-pf__stack {
    flex-direction: column;
    align-items: stretch;
  }

  .mmt-pf__button {
    width: 100%;
  }

  .mmt-pf__snapshot-grid,
  .mmt-pf__count-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mmt-pf__screen,
  .mmt-pf__button,
  .mmt-pf__option-card,
  .mmt-pf__mini-chip {
    transition: none !important;
  }
}
