:root {
  color-scheme: light;
  --bg: #f7f3eb;
  --bg-2: #eee7da;
  --card: rgba(255, 255, 255, 0.95);
  --card-2: rgba(247, 244, 237, 0.96);
  --line: rgba(35, 57, 54, 0.1);
  --line-strong: rgba(75, 124, 104, 0.2);
  --ink: #243835;
  --ink-soft: #6f7b77;
  --accent: #4b7c68;
  --accent-soft: rgba(75, 124, 104, 0.1);
  --fog: #d9ddd7;
  --fog-soft: rgba(217, 221, 215, 0.7);
  --route: #c7a96b;
  --route-soft: rgba(199, 169, 107, 0.18);
  --danger: #a06a5e;
  --danger-soft: rgba(160, 106, 94, 0.14);
  --progress: #7fae95;
  --shadow: 0 28px 64px rgba(42, 49, 47, 0.12);
  --shadow-soft: 0 12px 26px rgba(42, 49, 47, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(158, 195, 176, 0.2), transparent 34%),
    radial-gradient(circle at bottom right, rgba(199, 169, 107, 0.12), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body.map-mvp-body {
  min-height: 100dvh;
}

a,
button,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
}

.map-mvp-root {
  min-height: 100dvh;
}

.mvp-app {
  width: min(100%, 460px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom) + 8px);
  display: flex;
  flex-direction: column;
}

.mvp-screen {
  min-height: calc(100dvh - max(18px, env(safe-area-inset-top)) - max(18px, env(safe-area-inset-bottom) + 8px));
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mvp-center-screen {
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.mvp-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.mvp-start-logo-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
}

.mvp-start-logo-stage::before {
  content: none;
}

.mvp-start-logo {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: none;
  image-rendering: auto;
}

.mvp-start-launch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.mvp-start-launch-label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(111, 123, 119, 0.82);
}

.mvp-start-logo-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.mvp-start-logo-button--stacked {
  flex-direction: column;
  width: auto;
  height: auto;
  gap: 8px;
  padding: 6px 10px;
}

.mvp-start-logo-button:hover,
.mvp-start-logo-button:focus-visible {
  transform: translateY(-1px) scale(1.02);
  filter: saturate(1.03);
}

.mvp-start-logo-button:focus-visible {
  outline: none;
}

.mvp-title {
  width: 100%;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 0.02em;
  font-size: clamp(1.68rem, 7.4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.mvp-title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

.mvp-subtitle,
.mvp-copy,
.mvp-node-description,
.mvp-result-text,
.mvp-meta-value,
.mvp-summary-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.58;
}

.mvp-copy {
  max-width: 17.5em;
}

.mvp-branch-context {
  margin: 0;
  color: rgba(106, 116, 114, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mvp-live-mrt {
  width: 100%;
  margin-top: 18px;
  padding: 10px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mvp-live-mrt-title {
  margin: 0;
  color: rgba(118, 128, 126, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mvp-live-mrt-frame {
  width: 100%;
  max-width: min(88vw, 440px);
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(223, 226, 221, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 253, 0.84) 0%, rgba(249, 246, 239, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 8px 18px rgba(176, 167, 144, 0.08);
  padding: 12px 18px;
}

.mvp-live-mrt-line {
  margin: 0;
  min-height: 1.2em;
  color: rgba(107, 116, 114, 0.9);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.mvp-live-mrt-line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mvp-primary,
.mvp-secondary,
.mvp-node,
.mvp-close {
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.mvp-primary,
.mvp-secondary {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 17px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.988) 0%, rgba(250, 248, 242, 0.988) 45%, rgba(238, 231, 218, 0.996) 100%);
  border: 1px solid rgba(217, 221, 215, 0.98);
  color: var(--accent);
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -12px 20px rgba(217, 221, 215, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 34px 64px rgba(199, 169, 107, 0.16),
    0 18px 28px rgba(53, 58, 56, 0.11),
    0 4px 10px rgba(255, 255, 255, 0.3);
}

.mvp-primary::before,
.mvp-secondary::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 4px;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.2) 56%, rgba(255, 255, 255, 0));
  pointer-events: none;
}

.mvp-primary::after,
.mvp-secondary::after {
  content: "";
  position: absolute;
  inset: auto;
  left: 11%;
  right: 11%;
  bottom: -22px;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(199, 169, 107, 0.22) 0%, rgba(199, 169, 107, 0.1) 42%, rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
  opacity: 0.95;
  pointer-events: none;
}

.mvp-primary--start {
  width: auto;
  min-width: min(78vw, 292px);
  padding: 16px 36px;
  align-self: center;
  color: #f8f5ed;
  border-color: rgba(75, 124, 104, 0.92);
  background:
    linear-gradient(180deg, rgba(90, 133, 114, 0.98) 0%, rgba(75, 124, 104, 0.99) 48%, rgba(56, 94, 79, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(214, 231, 223, 0.34),
    inset 0 -10px 20px rgba(34, 57, 49, 0.18),
    0 20px 34px rgba(75, 124, 104, 0.24),
    0 10px 22px rgba(42, 49, 47, 0.14);
}

.mvp-primary--start::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 60%, rgba(255, 255, 255, 0));
}

.mvp-primary--start::after {
  background: radial-gradient(ellipse at center, rgba(75, 124, 104, 0.28) 0%, rgba(75, 124, 104, 0.14) 42%, rgba(255, 255, 255, 0) 72%);
}

.mvp-primary--start:hover,
.mvp-primary--start:focus-visible {
  border-color: rgba(90, 133, 114, 1);
  box-shadow:
    inset 0 1px 0 rgba(214, 231, 223, 0.38),
    inset 0 -10px 20px rgba(34, 57, 49, 0.22),
    0 24px 40px rgba(75, 124, 104, 0.28),
    0 12px 24px rgba(42, 49, 47, 0.16);
}

.mvp-primary--ready {
  color: var(--accent);
  border-color: rgba(158, 195, 176, 0.99);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.998) 0%, rgba(252, 255, 253, 0.996) 36%, rgba(235, 246, 240, 0.998) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -12px 20px rgba(158, 195, 176, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(158, 195, 176, 0.28),
    0 18px 32px rgba(127, 174, 149, 0.24),
    0 0 20px rgba(158, 195, 176, 0.3),
    0 8px 16px rgba(255, 255, 255, 0.24);
  transform: translateY(-1px) scale(1.01);
  animation: mvpReadyGlow 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mvp-primary--ready::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 255, 248, 0.42) 56%, rgba(255, 255, 255, 0));
}

.mvp-primary--ready::after {
  background: radial-gradient(ellipse at center, rgba(127, 174, 149, 0.34) 0%, rgba(127, 174, 149, 0.16) 44%, rgba(255, 255, 255, 0) 74%);
}

.mvp-primary--ready:hover,
.mvp-primary--ready:focus-visible {
  border-color: rgba(158, 195, 176, 1);
  transform: translateY(-2px) scale(1.012);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -12px 20px rgba(158, 195, 176, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.44),
    0 0 0 1px rgba(158, 195, 176, 0.3),
    0 24px 40px rgba(127, 174, 149, 0.28),
    0 0 24px rgba(158, 195, 176, 0.32),
    0 10px 18px rgba(255, 255, 255, 0.26);
}

.mvp-primary:hover,
.mvp-primary:focus-visible,
.mvp-secondary:hover,
.mvp-secondary:focus-visible,
.mvp-close:hover,
.mvp-close:focus-visible {
  border-color: rgba(211, 218, 210, 0.99);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.99),
    inset 0 -12px 20px rgba(213, 207, 193, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 38px 72px rgba(183, 172, 145, 0.26),
    0 20px 30px rgba(53, 58, 56, 0.13),
    0 4px 10px rgba(255, 255, 255, 0.34);
}

.mvp-card,
.mvp-map-card,
.mvp-side-card,
.mvp-modal-card,
.mvp-start-card {
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(220, 225, 221, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.mvp-start-card {
  width: 100%;
  padding: 24px 22px;
}

.mvp-branch-card {
  justify-content: center;
  min-height: min(70dvh, 560px);
}

.mvp-start-list-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mvp-start-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvp-start-list li {
  text-align: center;
  font-size: 1rem;
  line-height: 1.48;
}

.mvp-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mvp-step-top {
  position: relative;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvp-progress-label,
.mvp-progress-count {
  font-size: 0.84rem;
  font-weight: 700;
}

.mvp-progress-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.mvp-progress-count {
  color: var(--ink-soft);
}

.mvp-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(217, 221, 215, 0.58);
}

.mvp-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--progress));
}

.mvp-card {
  width: min(100%, 460px);
  align-self: center;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mvp-card--diagnostic {
  min-height: min(84dvh, 980px);
}

.mvp-question-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.mvp-question-title {
  margin: 0;
  font-size: 1.88rem;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.mvp-question-tag {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.mvp-textarea {
  width: 100%;
  min-height: 146px;
  resize: vertical;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(210, 216, 212, 0.96);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 18px 18px 20px;
  color: var(--ink);
}

.mvp-textarea::placeholder {
  color: rgba(106, 116, 114, 0.72);
}

.mvp-textarea:focus {
  outline: 2px solid rgba(61, 122, 103, 0.18);
  border-color: rgba(61, 122, 103, 0.34);
}

.mvp-action-examples {
  margin-top: 10px;
  padding: 2px 2px 0;
}

.mvp-action-examples-title,
.mvp-action-examples-copy {
  margin: 0;
  color: rgba(106, 116, 114, 0.66);
  font-size: 0.82rem;
  line-height: 1.5;
}

.mvp-action-examples-title {
  font-weight: 500;
}

.mvp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.mvp-self-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-self-flow[data-depth="2"],
.mvp-self-flow[data-depth="3"] {
  animation: mvpSelfPaneIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mvp-choice-note,
.mvp-choice-helper {
  margin: 0;
  color: rgba(106, 116, 114, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mvp-choice-helper {
  color: rgba(106, 116, 114, 0.72);
}

.mvp-choice-note--strong {
  color: rgba(54, 94, 82, 0.98);
  font-weight: 600;
}

.mvp-choice-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvp-choice-card {
  width: 100%;
  padding: 18px 18px 19px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(220, 223, 217, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 252, 0.98) 0%, rgba(244, 240, 232, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 10px 22px rgba(64, 69, 66, 0.06);
  color: var(--ink);
  animation: mvpChoiceFade 280ms ease both;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.mvp-choice-card:disabled {
  cursor: default;
}

.mvp-choice-card:hover,
.mvp-choice-card:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 26px rgba(64, 69, 66, 0.08);
}

.mvp-choice-card.is-completed-root {
  opacity: 1;
  border-color: rgba(177, 193, 183, 0.98);
  background: linear-gradient(180deg, rgba(235, 241, 237, 0.98) 0%, rgba(220, 227, 221, 0.98) 100%);
  box-shadow:
    inset 0 2px 4px rgba(141, 156, 147, 0.18),
    inset 0 -10px 18px rgba(188, 197, 190, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 5px 12px rgba(64, 69, 66, 0.035);
  transform: translateY(1px);
}

.mvp-choice-card.is-completed-root .mvp-choice-card-copy {
  color: rgba(93, 107, 101, 0.9);
}

.mvp-choice-card.is-completed-root:hover,
.mvp-choice-card.is-completed-root:focus-visible {
  transform: translateY(1px);
  box-shadow:
    inset 0 2px 4px rgba(141, 156, 147, 0.18),
    inset 0 -10px 18px rgba(188, 197, 190, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 5px 12px rgba(64, 69, 66, 0.035);
}

.mvp-choice-card.is-locked-root {
  opacity: 0.38;
  border-color: rgba(218, 222, 216, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 4px 10px rgba(64, 69, 66, 0.03);
}

.mvp-choice-card-copy {
  display: block;
  color: rgba(36, 56, 53, 0.96);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.42;
}

.mvp-hardship-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-sheet-layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: min(78dvh, 860px);
  max-height: min(78dvh, 860px);
}

.mvp-sheet-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvp-nested-reveal {
  margin-left: 14px;
  padding-left: 16px;
  border-left: 1.5px solid rgba(189, 210, 201, 0.9);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: mvpBehaviorSheetIn 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mvp-sheet-footer {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  background: linear-gradient(180deg, rgba(252, 250, 246, 0) 0%, rgba(252, 250, 246, 0.92) 22%, rgba(252, 250, 246, 1) 100%);
}

.mvp-sheet-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvp-hardship-focus {
  width: 100%;
  padding: 20px 18px;
  border-radius: 28px;
  border: 1px solid rgba(177, 193, 183, 0.98);
  background: linear-gradient(180deg, rgba(235, 241, 237, 0.98) 0%, rgba(220, 227, 221, 0.98) 100%);
  box-shadow:
    inset 0 2px 4px rgba(141, 156, 147, 0.18),
    inset 0 -10px 18px rgba(188, 197, 190, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 5px 12px rgba(64, 69, 66, 0.035);
  transform: translateY(1px);
}

.mvp-hardship-focus-copy {
  display: block;
  color: rgba(93, 107, 101, 0.9);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
}

.mvp-self-flow[data-depth="1"] .mvp-choice-note {
  color: rgba(104, 114, 112, 0.9);
}

.mvp-self-flow[data-depth="1"] .mvp-choice-card-copy {
  color: rgba(36, 56, 53, 0.98);
}

.mvp-self-flow[data-depth="2"] .mvp-choice-note {
  color: rgba(71, 118, 102, 0.9);
}

.mvp-self-flow[data-depth="2"] .mvp-choice-card {
  border-color: rgba(201, 220, 212, 0.98);
  background: linear-gradient(180deg, rgba(251, 255, 252, 0.98) 0%, rgba(238, 245, 240, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(79, 114, 101, 0.08);
}

.mvp-self-flow[data-depth="2"] .mvp-choice-card-copy {
  color: rgba(61, 108, 92, 0.96);
}

.mvp-self-flow[data-depth="3"] .mvp-choice-note {
  color: rgba(97, 141, 125, 0.92);
}

.mvp-self-flow[data-depth="3"] .mvp-choice-card {
  border-color: rgba(196, 220, 208, 0.98);
  background: linear-gradient(180deg, rgba(247, 253, 249, 0.98) 0%, rgba(230, 240, 234, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(91, 126, 112, 0.08);
}

.mvp-self-flow[data-depth="3"] .mvp-choice-card-copy {
  color: rgba(91, 133, 118, 0.94);
}

.mvp-behavior-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-behavior-card {
  padding: 24px 20px;
  border-radius: 28px;
  border: 1px solid rgba(221, 225, 220, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 252, 0.98) 0%, rgba(244, 240, 232, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 14px 30px rgba(64, 69, 66, 0.07);
}

.mvp-behavior-main {
  margin: 0;
  color: rgba(36, 56, 53, 0.98);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: 0.01em;
  text-align: center;
}

.mvp-binary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mvp-binary-button {
  width: 100%;
  min-width: 0;
}

.mvp-behavior-sheet {
  padding: 18px 0 0;
  animation: mvpBehaviorSheetIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mvp-behavior-flow--done {
  padding: 18px 0 2px;
}

.mvp-claim-flow {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-claim-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mvp-claim-group {
  border-radius: 28px;
}

.mvp-claim-root {
  width: 100%;
  padding: 20px 18px;
  text-align: left;
  border-radius: 28px;
  border: 1px solid rgba(220, 223, 217, 0.96);
  background: linear-gradient(180deg, rgba(255, 255, 252, 0.98) 0%, rgba(244, 240, 232, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 24px rgba(64, 69, 66, 0.06);
}

.mvp-claim-root-copy {
  display: block;
  color: rgba(36, 56, 53, 0.98);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.34;
}

.mvp-claim-group.has-selection .mvp-claim-root {
  border-color: rgba(177, 193, 183, 0.98);
  background: linear-gradient(180deg, rgba(235, 241, 237, 0.98) 0%, rgba(220, 227, 221, 0.98) 100%);
  box-shadow:
    inset 0 2px 4px rgba(141, 156, 147, 0.18),
    inset 0 -10px 18px rgba(188, 197, 190, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 5px 12px rgba(64, 69, 66, 0.035);
  transform: translateY(1px);
}

.mvp-claim-group.has-selection .mvp-claim-root-copy {
  color: rgba(93, 107, 101, 0.9);
}

.mvp-claim-group.is-locked-root .mvp-claim-root {
  opacity: 0.4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 5px 12px rgba(64, 69, 66, 0.03);
}

.mvp-claim-sheet {
  padding: 10px 8px 2px;
  animation: mvpBehaviorSheetIn 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mvp-claim-reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvp-claim-reason {
  width: 100%;
  padding: 15px 14px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(221, 224, 218, 0.95);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 6px 16px rgba(64, 69, 66, 0.04);
}

.mvp-claim-reason.is-selected {
  border-color: rgba(186, 199, 188, 0.98);
  background: linear-gradient(180deg, rgba(247, 247, 241, 0.98) 0%, rgba(236, 234, 226, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -8px 16px rgba(215, 210, 197, 0.16),
    0 8px 18px rgba(64, 69, 66, 0.05);
}

.mvp-claim-check {
  color: rgba(114, 125, 122, 0.9);
  font-size: 1rem;
  line-height: 1.2;
}

.mvp-claim-reason-copy {
  color: rgba(73, 84, 82, 0.96);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.42;
}

@keyframes mvpChoiceFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes mvpSelfPaneIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

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

@keyframes mvpBehaviorSheetIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.mvp-back-link {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mvp-back-link:hover,
.mvp-back-link:focus-visible {
  color: var(--ink);
  transform: translateY(calc(-50% - 1px));
}

.mvp-primary:disabled {
  opacity: 0.54;
  cursor: default;
  transform: none;
}

.mvp-primary:disabled::before,
.mvp-primary:disabled::after {
  opacity: 0.5;
}

.mvp-map-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-map-card,
.mvp-side-card {
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mvp-map-title {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mvp-map-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 14px;
}

.mvp-map-flow::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61, 122, 103, 0.28), rgba(61, 122, 103, 0.06));
}

.mvp-node {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 14px 10px 14px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.mvp-node:disabled {
  cursor: not-allowed;
}

.mvp-node-marker {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 219, 215, 0.92);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.mvp-node-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mvp-node-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.mvp-node-status {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mvp-node[data-state="locked"] {
  opacity: 0.45;
}

.mvp-node[data-state="locked"] .mvp-node-marker {
  background: rgba(244, 245, 242, 0.94);
}

.mvp-node[data-state="active"] .mvp-node-marker {
  border-color: rgba(61, 122, 103, 0.46);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 247, 242, 0.98));
  color: var(--accent);
  box-shadow:
    0 0 0 9px rgba(61, 122, 103, 0.1),
    0 12px 22px rgba(61, 122, 103, 0.16);
}

.mvp-node[data-state="active"] .mvp-node-title,
.mvp-node[data-state="active"] .mvp-node-status {
  color: var(--accent);
}

.mvp-node[data-state="completed"] .mvp-node-marker {
  background: rgba(234, 245, 240, 0.98);
  color: var(--accent);
  border-color: rgba(61, 122, 103, 0.22);
}

.mvp-node[data-state="completed"] .mvp-node-status {
  color: var(--accent);
}

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

.mvp-meta-card {
  border-radius: var(--radius-md);
  background: var(--card-2);
  border: 1px solid rgba(219, 224, 220, 0.92);
  padding: 12px;
}

.mvp-meta-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.mvp-side-note {
  border-radius: var(--radius-lg);
  background: rgba(243, 247, 245, 0.92);
  border: 1px solid rgba(219, 224, 220, 0.92);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvp-side-title {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 700;
}

.mvp-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(28, 35, 33, 0.28);
  backdrop-filter: blur(18px);
  padding: max(14px, env(safe-area-inset-top)) 14px max(14px, env(safe-area-inset-bottom) + 6px);
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mvp-modal-card {
  width: min(100%, 460px);
  min-height: 100%;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mvp-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mvp-modal-title {
  margin: 0;
  font-size: 2rem;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.mvp-close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(213, 218, 214, 0.94);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.mvp-result {
  border-radius: var(--radius-lg);
  background: rgba(244, 248, 246, 0.92);
  border: 1px solid rgba(217, 223, 219, 0.94);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvp-result-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.mvp-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvp-summary-list li {
  border-radius: var(--radius-md);
  background: var(--card-2);
  border: 1px solid rgba(219, 224, 220, 0.9);
  padding: 14px;
}

.mvp-summary-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mvp-card--diagnostic {
    min-height: auto;
  }

  .mvp-sheet-layout {
    height: min(62dvh, 620px);
    max-height: min(62dvh, 620px);
  }

  .mvp-app {
    width: min(100%, 980px);
    justify-content: center;
  }

  .mvp-center-screen {
    max-width: 760px;
    margin: 0 auto;
  }

  .mvp-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: start;
  }

  .mvp-map-card {
    position: sticky;
    top: 20px;
  }

  .mvp-modal {
    padding: 28px;
  }

  .mvp-modal-card {
    min-height: auto;
    max-height: calc(100dvh - 56px);
    overflow: auto;
  }
}

.mvp-entry-card,
.mvp-processing-card,
.mvp-route-map-card {
  gap: 18px;
}

.mvp-entry-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.965), rgba(246, 241, 232, 0.965));
  border-color: rgba(217, 221, 215, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 42px rgba(42, 49, 47, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}

.mvp-entry-hero-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(88dvh, 880px);
  justify-content: space-between;
  padding: max(22px, calc(env(safe-area-inset-top) + 10px)) 22px 28px;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.02), rgba(247, 243, 235, 0.08)),
    var(--entry-map-backdrop) center 40% / 112% auto no-repeat;
  border-color: rgba(217, 221, 215, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 22px 42px rgba(42, 49, 47, 0.1);
}

.mvp-entry-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.08) 0%, rgba(247, 243, 235, 0.02) 20%, rgba(247, 243, 235, 0.04) 42%, rgba(247, 243, 235, 0.16) 72%, rgba(247, 243, 235, 0.56) 100%);
  z-index: 0;
}

.mvp-entry-hero-card > * {
  position: relative;
  z-index: 1;
}

.mvp-entry-hero-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: clamp(132px, 16dvh, 182px);
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
}

.mvp-entry-title--hero {
  max-width: min(14ch, 100%);
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 4.3vw, 1.54rem);
  color: rgba(70, 88, 84, 0.74);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow:
    0 8px 24px rgba(247, 243, 235, 0.62),
    0 1px 0 rgba(255, 255, 255, 0.46);
}

.mvp-choice-note--hero {
  max-width: 26ch;
  text-align: center;
  color: rgba(111, 123, 119, 0.78);
}

.mvp-start-launch--hero {
  align-self: center;
  margin-top: auto;
  padding-bottom: 6px;
}

.mvp-entry-hero-card .mvp-entry-overline {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  margin: 0;
  transform: none;
  text-align: center;
  color: rgba(89, 104, 100, 0.9);
  letter-spacing: 0.15em;
}

@media (max-width: 430px) {
  .mvp-entry-hero-content {
    left: 28px;
    right: 28px;
    bottom: clamp(144px, 18dvh, 194px);
  }

  .mvp-entry-title--hero {
    max-width: min(15ch, 100%);
    font-size: clamp(0.98rem, 4vw, 1.34rem);
  }

  .mvp-entry-hero-card .mvp-entry-overline {
    display: none;
  }
}

.mvp-entry-context-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(88dvh, 880px);
  padding: max(18px, calc(env(safe-area-inset-top) + 6px)) 20px 28px;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.08), rgba(247, 243, 235, 0.16)),
    var(--entry-map-backdrop) center 45% / 132% auto no-repeat;
  border-color: rgba(217, 221, 215, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 22px 42px rgba(42, 49, 47, 0.1);
}

.mvp-entry-context-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.14) 0%, rgba(247, 243, 235, 0.04) 22%, rgba(247, 243, 235, 0.08) 48%, rgba(247, 243, 235, 0.2) 72%, rgba(247, 243, 235, 0.52) 100%);
  z-index: 0;
}

.mvp-entry-context-card > * {
  position: relative;
  z-index: 1;
}

.mvp-entry-overline--context {
  text-align: center;
  color: rgba(89, 104, 100, 0.78);
}

.mvp-entry-context-dialog {
  width: min(100%, 392px);
  margin: 52px auto 0;
  padding: 18px 18px 16px;
  position: relative;
  z-index: 3;
  border-radius: 28px;
  border: 1px solid rgba(217, 221, 215, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(241, 236, 227, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 30px rgba(42, 49, 47, 0.08);
  backdrop-filter: blur(14px);
}

.mvp-entry-context-copy {
  color: var(--ink);
  font-size: 1.01rem;
  line-height: 1.64;
  text-align: left;
}

.mvp-entry-context-copy p {
  margin: 0;
}

.mvp-entry-context-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.mvp-entry-context-list li {
  margin: 0;
}

.mvp-entry-context-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.mvp-entry-context-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(75, 124, 104, 0.22);
  background:
    linear-gradient(180deg, rgba(145, 214, 165, 0.98), rgba(75, 124, 104, 1));
  color: #f8fbf8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 24px rgba(75, 124, 104, 0.26),
    0 0 0 6px rgba(127, 174, 149, 0.08);
  font-size: 1.2rem;
  line-height: 1;
}

.mvp-entry-context-next:hover,
.mvp-entry-context-next:focus-visible {
  transform: translateY(-1px);
}

.mvp-entry-context-launch {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 18px;
}

.mvp-entry-context-route {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
}

.mvp-entry-context-route path {
  fill: none;
  stroke: rgba(75, 124, 104, 0.36);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 3.5 5;
}

.mvp-entry-context-self {
  position: absolute;
  left: calc(50% - 7px);
  bottom: 24%;
  z-index: 2;
}

.mvp-entry-context-target {
  position: absolute;
  top: 24%;
  right: 11%;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.mvp-entry-context-back {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
}

.mvp-route-map-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(88dvh, 880px);
  padding: max(18px, calc(env(safe-area-inset-top) + 6px)) 20px 28px;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.1), rgba(247, 243, 235, 0.18)),
    var(--entry-map-backdrop) center 45% / 132% auto no-repeat;
  border-color: rgba(217, 221, 215, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 22px 42px rgba(42, 49, 47, 0.11),
    0 0 0 1px rgba(255, 255, 255, 0.22);
}

.mvp-entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--entry-map-backdrop);
  background-repeat: no-repeat;
  background-position: center 18px;
  background-size: 124% auto;
  opacity: 0.14;
  filter: blur(1.6px) saturate(0.88);
  pointer-events: none;
  z-index: 0;
}

.mvp-entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.28) 0%, rgba(247, 243, 235, 0.42) 28%, rgba(247, 243, 235, 0.62) 54%, rgba(247, 243, 235, 0.82) 76%, rgba(247, 243, 235, 0.94) 100%);
  pointer-events: none;
  z-index: 0;
}

.mvp-route-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.34) 0%, rgba(247, 243, 235, 0.12) 24%, rgba(247, 243, 235, 0.06) 48%, rgba(247, 243, 235, 0.22) 72%, rgba(247, 243, 235, 0.44) 100%);
  pointer-events: none;
  z-index: 0;
}

.mvp-route-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.18) 0%, rgba(247, 243, 235, 0.08) 28%, rgba(247, 243, 235, 0.16) 100%);
  pointer-events: none;
  z-index: 0;
}

.mvp-card--map-surface {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.16), rgba(247, 243, 235, 0.28)),
    var(--entry-map-backdrop) center 45% / 136% auto no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 238, 229, 0.96));
  border-color: rgba(217, 221, 215, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 22px 42px rgba(42, 49, 47, 0.1);
}

.mvp-card--map-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.28) 0%, rgba(247, 243, 235, 0.12) 32%, rgba(247, 243, 235, 0.14) 62%, rgba(247, 243, 235, 0.28) 100%);
  pointer-events: none;
  z-index: 0;
}

.mvp-card--map-surface > * {
  position: relative;
  z-index: 1;
}

.mvp-entry-card > * {
  position: relative;
  z-index: 1;
}

.mvp-route-map-card > * {
  position: relative;
  z-index: 1;
}

.mvp-entry-overline {
  margin: -2px 0 -4px;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(111, 123, 119, 0.72);
}

.mvp-entry-title {
  text-wrap: balance;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.022em;
}

.mvp-entry-copy {
  margin: -2px 0 0;
  color: rgba(91, 102, 99, 0.88);
  font-size: 0.95rem;
  line-height: 1.58;
}

.mvp-entry-system {
  display: grid;
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 24px;
  border: 1px solid rgba(217, 221, 215, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 236, 227, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 26px rgba(42, 49, 47, 0.06);
}

.mvp-entry-system-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mvp-entry-system-label,
.mvp-entry-system-state {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mvp-entry-system-label {
  color: var(--ink);
}

.mvp-entry-system-state,
.mvp-entry-system-state {
  color: var(--ink-soft);
}

.mvp-entry-message-stack {
  display: grid;
  gap: 10px;
}

.mvp-entry-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(217, 221, 215, 0.88);
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 10px 18px rgba(42, 49, 47, 0.04);
  animation: mvp-entry-message-reveal 0.58s ease-out forwards;
  animation-delay: var(--entry-delay, 0s);
}

.mvp-entry-message--intro {
  text-align: left;
}

.mvp-entry-message--intro p {
  margin: 0;
}

.mvp-entry-message--intro p + p,
.mvp-entry-message--intro .mvp-entry-bullet-list + p {
  margin-top: 10px;
}

.mvp-entry-bullet-list {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.mvp-entry-bullet-list li {
  margin: 0;
}

.mvp-entry-message::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  margin-bottom: 1px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(127, 174, 149, 0.08);
  vertical-align: middle;
}

.mvp-entry-visual {
  position: relative;
  width: min(100%, 540px);
  max-width: 100%;
  aspect-ratio: 680 / 380;
  min-height: 0;
  height: auto;
  margin: -4px auto 12px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(245, 240, 231, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 34px rgba(42, 49, 47, 0.09),
    0 0 0 1px rgba(217, 221, 215, 0.24);
  backdrop-filter: blur(1.4px);
}

.mvp-entry-visual--map {
  isolation: isolate;
}

.mvp-entry-visual-glow {
  position: absolute;
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.74;
  z-index: 0;
}

.mvp-entry-visual-glow--left {
  left: -64px;
  bottom: 18px;
  background: radial-gradient(circle, rgba(217, 221, 215, 0.78) 0%, rgba(217, 221, 215, 0.24) 56%, rgba(217, 221, 215, 0) 74%);
}

.mvp-entry-visual-glow--right {
  right: -68px;
  top: 48px;
  background: radial-gradient(circle, rgba(199, 169, 107, 0.24) 0%, rgba(199, 169, 107, 0.11) 52%, rgba(199, 169, 107, 0) 74%);
}

.mvp-entry-map-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
  opacity: 1;
  z-index: 1;
  padding: 0;
  transform: translate(-50%, -50%);
}

.mvp-entry-node-label--planet {
  min-width: 86px;
  text-align: center;
}

.mvp-route-visual {
  position: relative;
  width: min(100%, 560px);
  max-width: 100%;
  aspect-ratio: 690 / 430;
  margin: -4px auto 8px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(244, 239, 230, 0.18));
}

.mvp-route-map-image {
  position: absolute;
  inset: -6% -4% -8%;
  width: 108%;
  height: 116%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.96);
}

.mvp-route-fog-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 18%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.62) 0%, rgba(247, 243, 235, 0.32) 26%, rgba(247, 243, 235, 0.14) 48%, rgba(247, 243, 235, 0.22) 62%, rgba(247, 243, 235, 0.56) 100%);
}

.mvp-route-overlay {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.mvp-route-path {
  fill: none;
  stroke: rgba(75, 124, 104, 0.42);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 3 4;
  filter: drop-shadow(0 0 6px rgba(127, 174, 149, 0.1));
}

.mvp-route-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.mvp-route-point--self {
  left: 12%;
  bottom: 14%;
}

.mvp-route-point-core {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8fff3 0%, #97d0b4 38%, #4b7c68 76%, #365949 100%);
  box-shadow:
    0 0 0 6px rgba(127, 174, 149, 0.12),
    0 0 18px rgba(127, 174, 149, 0.48),
    0 0 34px rgba(127, 174, 149, 0.22);
  z-index: 2;
}

.mvp-route-point-ring {
  position: absolute;
  left: calc(50% - 7px);
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(127, 174, 149, 0.62);
  z-index: 1;
  animation: mvp-route-point-pulse 2.2s ease-out infinite;
}

.mvp-route-point-label,
.mvp-route-target-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 221, 215, 0.95);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 20px rgba(42, 49, 47, 0.08);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mvp-route-target {
  position: absolute;
  top: 22%;
  right: 12%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mvp-route-flag {
  position: relative;
  width: 13px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(87, 153, 111, 0.96), rgba(62, 123, 84, 1));
  box-shadow: 0 8px 16px rgba(62, 123, 84, 0.18);
}

.mvp-route-flag::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 2px;
  width: 16px;
  height: 10px;
  background: linear-gradient(180deg, #8bdb9f 0%, #5da06f 100%);
  clip-path: polygon(0 0, 100% 20%, 72% 100%, 0 78%);
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.mvp-route-dialog {
  display: grid;
  gap: 10px;
  width: min(100%, 392px);
  margin: 48px auto 0;
  padding: 18px 18px 16px;
  position: relative;
  z-index: 3;
  border-radius: 26px;
  border: 1px solid rgba(217, 221, 215, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 236, 227, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 28px rgba(42, 49, 47, 0.08);
  text-align: left;
}

.mvp-route-dialog-eyebrow {
  margin: 0;
  color: rgba(111, 123, 119, 0.84);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mvp-route-dialog-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.mvp-route-dialog-copy {
  margin: 0;
  color: rgba(91, 102, 99, 0.92);
  font-size: 0.95rem;
  line-height: 1.56;
}

.mvp-route-dialog-footnote {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.48;
}

.mvp-route-textarea {
  min-height: 170px;
  margin-top: 2px;
}

.mvp-route-actions {
  width: min(100%, 392px);
  margin: 14px auto 0;
  position: relative;
  z-index: 3;
}

.mvp-nav-trail {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.mvp-nav-human-mask {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 118px;
  height: 214px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at center, rgba(247, 243, 235, 1) 0%, rgba(247, 243, 235, 0.98) 26%, rgba(247, 243, 235, 0.82) 52%, rgba(247, 243, 235, 0.18) 74%, rgba(247, 243, 235, 0) 86%);
  filter: blur(10px);
}

.mvp-nav-route {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.mvp-nav-route path {
  fill: none;
  stroke: rgba(75, 124, 104, 0.24);
  stroke-width: 0.82;
  stroke-linecap: round;
  stroke-dasharray: 2.3 7.5;
  filter: none;
}

.mvp-nav-self {
  position: absolute;
  left: 16%;
  bottom: 15%;
  z-index: 2;
}

.mvp-nav-waypoint {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.mvp-nav-waypoint--active {
  left: 34%;
  bottom: 32%;
}

.mvp-nav-waypoint--mid {
  left: 49%;
  bottom: 46%;
}

.mvp-nav-waypoint--far {
  left: 69%;
  bottom: 63%;
}

.mvp-nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.mvp-nav-dot--active {
  background: radial-gradient(circle at 35% 35%, #f0fff5 0%, #a6e0bd 36%, #4b7c68 76%, #355949 100%);
  box-shadow:
    0 0 0 7px rgba(127, 174, 149, 0.12),
    0 0 18px rgba(127, 174, 149, 0.52),
    0 0 34px rgba(127, 174, 149, 0.22);
}

.mvp-nav-dot--locked {
  background: rgba(141, 153, 148, 0.34);
  border: 1px solid rgba(141, 153, 148, 0.36);
  box-shadow: 0 0 0 4px rgba(247, 243, 235, 0.18);
  opacity: 0.9;
}

.mvp-route-launch {
  margin-top: 2px;
}

.mvp-processing-card {
  align-items: center;
  text-align: center;
}

.mvp-processing-visual {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 4px auto 6px;
}

.mvp-processing-orbit {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(75, 124, 104, 0.16);
  animation: mvp-pulse-orbit 2.2s ease-in-out infinite;
}

.mvp-processing-orbit--delay {
  inset: 0;
  border-color: rgba(199, 169, 107, 0.18);
  animation-delay: 0.55s;
}

.mvp-processing-core {
  position: absolute;
  inset: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(158, 195, 176, 0.88) 52%, rgba(75, 124, 104, 0.18) 100%);
  box-shadow:
    0 0 38px rgba(127, 174, 149, 0.22),
    inset 0 0 22px rgba(255, 255, 255, 0.72);
  animation: mvp-breathe-core 2.6s ease-in-out infinite;
}

.mvp-route-map-visual {
  display: grid;
  gap: 14px;
}

.mvp-route-map-stage {
  position: relative;
  min-height: 282px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(244, 239, 230, 0.18)),
    var(--map-stage-image) center 42% / cover no-repeat;
  border: 1px solid rgba(222, 226, 220, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 34px rgba(42, 49, 47, 0.08);
  isolation: isolate;
}

.mvp-route-map-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.24) 0%, rgba(247, 243, 235, 0.08) 30%, rgba(247, 243, 235, 0.16) 58%, rgba(247, 243, 235, 0.38) 100%);
  z-index: 0;
}

.mvp-route-map-stage.is-updated::before {
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.16) 0%, rgba(247, 243, 235, 0.03) 30%, rgba(247, 243, 235, 0.12) 58%, rgba(247, 243, 235, 0.28) 100%);
}

.mvp-route-map-stage-fog {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  background: radial-gradient(circle, rgba(247, 243, 235, 0.92) 0%, rgba(247, 243, 235, 0.58) 44%, rgba(247, 243, 235, 0) 74%);
  z-index: 1;
  transition:
    opacity 420ms ease,
    transform 520ms ease;
}

.mvp-route-map-stage-fog--north {
  top: -18px;
  left: 10%;
  width: 64%;
  height: 124px;
}

.mvp-route-map-stage-fog--east {
  top: 18%;
  right: -4%;
  width: 44%;
  height: 138px;
}

.mvp-route-map-stage-fog--south {
  left: -8%;
  bottom: -12%;
  width: 54%;
  height: 120px;
}

.mvp-route-map-stage.is-updated .mvp-route-map-stage-fog--north {
  opacity: 0.42;
  transform: translateY(-14px);
}

.mvp-route-map-stage.is-updated .mvp-route-map-stage-fog--east {
  opacity: 0.28;
  transform: translateX(24px);
}

.mvp-route-map-stage.is-updated .mvp-route-map-stage-fog--south {
  opacity: 0.3;
  transform: translate(-18px, 14px);
}

.mvp-route-map-stage-zone,
.mvp-route-map-next-sector {
  position: absolute;
  border-radius: 999px;
  z-index: 2;
  transition:
    opacity 420ms ease,
    transform 520ms ease,
    box-shadow 420ms ease,
    filter 420ms ease;
}

.mvp-route-map-stage-zone {
  left: 18%;
  bottom: 16%;
  width: 34%;
  height: 26%;
  background: radial-gradient(circle at 44% 52%, rgba(245, 255, 250, 0.84) 0%, rgba(195, 229, 212, 0.44) 26%, rgba(127, 174, 149, 0.22) 52%, rgba(127, 174, 149, 0.06) 74%, rgba(127, 174, 149, 0) 100%);
  box-shadow:
    0 0 0 1px rgba(127, 174, 149, 0.16),
    0 0 28px rgba(127, 174, 149, 0.2);
}

.mvp-route-map-stage.is-updated .mvp-route-map-stage-zone {
  filter: saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(127, 174, 149, 0.2),
    0 0 38px rgba(127, 174, 149, 0.28),
    0 0 72px rgba(127, 174, 149, 0.12);
}

.mvp-route-map-next-sector {
  right: 13%;
  top: 18%;
  width: 28%;
  height: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 250, 234, 0.44) 0%, rgba(199, 169, 107, 0.18) 38%, rgba(199, 169, 107, 0.04) 64%, rgba(199, 169, 107, 0) 100%);
  opacity: 0.34;
  transform: scale(0.95);
  filter: blur(0.1px) saturate(0.84);
}

.mvp-route-map-stage.is-updated .mvp-route-map-next-sector {
  opacity: 1;
  transform: scale(1);
  box-shadow:
    0 0 0 1px rgba(199, 169, 107, 0.14),
    0 0 28px rgba(199, 169, 107, 0.24);
  filter: saturate(1);
}

.mvp-route-map-stage-route {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.mvp-route-map-stage-route path {
  fill: none;
  stroke: rgba(75, 124, 104, 0.34);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-dasharray: 3.5 4.8;
  transition:
    stroke 420ms ease,
    opacity 420ms ease;
}

.mvp-route-map-stage.is-updated .mvp-route-map-stage-route path {
  stroke: rgba(75, 124, 104, 0.56);
}

.mvp-route-map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid rgba(219, 224, 220, 0.95);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 18px rgba(42, 49, 47, 0.08);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.mvp-route-map-node--self {
  left: 16%;
  bottom: 24%;
}

.mvp-route-map-node--next {
  right: 2%;
  top: 18%;
  opacity: 0.56;
}

.mvp-route-map-stage.is-updated .mvp-route-map-node--next {
  opacity: 1;
}

.mvp-route-fog-stack {
  display: grid;
  gap: 10px;
}

.mvp-route-zone-card {
  border: 1px solid rgba(217, 221, 215, 0.92);
  border-radius: 24px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 237, 0.96));
  box-shadow: var(--shadow-soft);
}

.mvp-route-zone-card.is-active {
  border-color: rgba(75, 124, 104, 0.24);
  box-shadow:
    0 16px 34px rgba(42, 49, 47, 0.08),
    0 0 0 1px rgba(75, 124, 104, 0.05);
}

.mvp-route-zone-card.is-active.is-updated {
  border-color: rgba(75, 124, 104, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 249, 244, 0.98));
  box-shadow:
    0 20px 40px rgba(42, 49, 47, 0.08),
    0 0 0 1px rgba(75, 124, 104, 0.08),
    0 0 28px rgba(127, 174, 149, 0.1);
}

.mvp-route-zone-card.is-fogged {
  opacity: 0.54;
  filter: saturate(0.82);
  background:
    linear-gradient(180deg, rgba(252, 251, 248, 0.94), rgba(244, 241, 233, 0.94));
}

.mvp-route-zone-state {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.mvp-route-zone-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
  color: var(--ink);
}

.mvp-route-zone-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.45;
}

.mvp-route-next-layer {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(199, 169, 107, 0.18);
  background: rgba(199, 169, 107, 0.08);
}

.mvp-zone-bullets {
  display: grid;
  gap: 12px;
}

.mvp-zone-bullet {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(75, 124, 104, 0.05);
  border: 1px solid rgba(217, 221, 215, 0.9);
}

.mvp-zone-bullet-dot {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(127, 174, 149, 0.08);
}

.mvp-zone-bullet-copy {
  color: var(--ink);
  line-height: 1.55;
}

.mvp-first-step {
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 237, 228, 0.96));
  border: 1px solid rgba(199, 169, 107, 0.18);
  box-shadow: var(--shadow-soft);
}

.mvp-first-step-copy {
  margin: 0;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
}

@keyframes mvpReadyGlow {
  0% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.99),
      inset 0 -12px 20px rgba(213, 207, 193, 0.24),
      inset 0 0 0 1px rgba(255, 255, 255, 0.32),
      0 34px 64px rgba(183, 172, 145, 0.24),
      0 18px 28px rgba(53, 58, 56, 0.11),
      0 4px 10px rgba(255, 255, 255, 0.3);
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }

  55% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -12px 20px rgba(191, 219, 202, 0.42),
      inset 0 0 0 1px rgba(255, 255, 255, 0.44),
      0 0 0 1px rgba(159, 199, 177, 0.34),
      0 26px 46px rgba(124, 173, 149, 0.32),
      0 0 28px rgba(179, 223, 198, 0.38);
    transform: translateY(-1px) scale(1.02);
    filter: saturate(1.12) brightness(1.03);
  }

  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 1),
      inset 0 -12px 20px rgba(191, 219, 202, 0.34),
      inset 0 0 0 1px rgba(255, 255, 255, 0.4),
      0 0 0 1px rgba(159, 199, 177, 0.28),
      0 18px 32px rgba(124, 173, 149, 0.24),
      0 0 20px rgba(179, 223, 198, 0.32),
      0 8px 16px rgba(255, 255, 255, 0.24);
    transform: translateY(-1px) scale(1.01);
    filter: saturate(1.04);
  }
}

@keyframes mvp-pulse-orbit {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.9;
  }
}

@keyframes mvp-breathe-core {
  0%,
  100% {
    transform: scale(0.96);
    box-shadow:
      0 0 28px rgba(61, 122, 103, 0.16),
      inset 0 0 22px rgba(255, 255, 255, 0.72);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 0 40px rgba(61, 122, 103, 0.24),
      inset 0 0 28px rgba(255, 255, 255, 0.82);
  }
}

@keyframes mvp-entry-pulse {
  0%,
  100% {
    transform: scale(0.98);
    box-shadow:
      0 0 0 10px rgba(61, 122, 103, 0.08),
      0 0 24px rgba(116, 176, 148, 0.3);
  }

  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 14px rgba(61, 122, 103, 0.1),
      0 0 30px rgba(116, 176, 148, 0.4);
  }
}

@keyframes mvp-entry-message-reveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mvp-entry-orbit {
  0%,
  100% {
    transform: translateX(-50%) scale(0.98);
    opacity: 0.54;
  }

  50% {
    transform: translateX(-50%) scale(1.03);
    opacity: 0.94;
  }
}

@keyframes mvp-route-point-pulse {
  0% {
    transform: scale(1);
    opacity: 0.82;
  }

  70% {
    transform: scale(4.9);
    opacity: 0;
  }

  100% {
    transform: scale(4.9);
    opacity: 0;
  }
}
