.persona-sim {
  position: relative;
  width: 100%;
  margin: 24px 0 30px;
  color: #22251f;
  font-family: "Noto Sans JP", system-ui, sans-serif;
}

body.persona-sim-has-answer .column-v2-floating-cta {
  display: none !important;
}

[data-lp="smartasset"] .persona-sim {
  left: auto;
  width: 100%;
  transform: none;
}

.persona-sim * {
  box-sizing: border-box;
}

.persona-sim__shell {
  overflow: hidden;
  border: 1px solid #e1d4b8;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 11%, rgba(214, 188, 126, 0.18), transparent 27%),
    linear-gradient(180deg, #fffaf0 0%, #fbf7ec 58%, #fffdf8 100%);
  box-shadow: 0 12px 30px rgba(65, 50, 21, 0.12);
}

.persona-sim__top {
  padding: 24px 18px 16px;
  text-align: center;
}

.persona-sim__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 10px;
  border: 1px solid rgba(47, 122, 78, 0.18);
  border-radius: 999px;
  background: rgba(236, 247, 236, 0.82);
  color: #3f6047;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.6;
}

.persona-sim__eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 1px 8px;
  border-radius: 999px;
  background: #2f7a4e;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.4;
}

.persona-sim__title {
  margin: 0 auto;
  max-width: 780px;
  color: #203b25;
  font-size: clamp(1.42rem, 3.6vw, 1.95rem);
  font-weight: 900;
  line-height: 1.35;
}

.persona-sim__title strong {
  color: #b1801e;
  font-size: 1.22em;
  font-weight: 900;
}

.persona-sim__subtitle {
  margin: 10px auto 0;
  max-width: 760px;
  color: #4d4b43;
  font-size: 0.98rem;
  line-height: 1.8;
}

.persona-sim__hook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 720px;
  margin: 14px auto 0;
  padding: 9px 14px;
  border: 1px solid rgba(185, 132, 22, 0.2);
  border-radius: 8px;
  background: rgba(255, 247, 225, 0.82);
  color: #6f4c0f;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.65;
}

.persona-sim__fork {
  position: relative;
  padding: 22px 24px 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 122, 78, 0.12), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(185, 132, 22, 0.13), transparent 34%),
    linear-gradient(180deg, #fffdf7 0%, #f7f2e8 100%);
}

/* カルーセル（全幅共通・記事カラム幅に整列）: 1 枚ずつ横スクロールし、
   左右の矢印とドットで切り替える。PC・モバイル共通の単一レイアウト。 */
.persona-sim__carousel {
  position: relative;
}

.persona-sim__paths {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 2px 4px 6px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.persona-sim__paths::-webkit-scrollbar {
  display: none;
}

/* 左右ナビ矢印（カード端に重ねる円ボタン） */
.persona-sim__nav {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(47, 122, 78, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #2f7a4e;
  box-shadow: 0 6px 18px rgba(50, 40, 18, 0.24);
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.persona-sim__nav:hover {
  background: #fff;
}

.persona-sim__nav--prev {
  left: 6px;
}

.persona-sim__nav--next {
  right: 6px;
}

.persona-sim__nav svg {
  width: 24px;
  height: 24px;
}

.persona-sim__nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.persona-sim__nav:active {
  transform: translateY(-50%) scale(0.92);
}

/* ナビ矢印のモーション: その方向へ軽くナッジ＋やわらかな注目リング。
   有効な矢印のみ・hover で一時停止・reduce では静止。 */
@media (prefers-reduced-motion: no-preference) {
  .persona-sim__nav:not(:disabled) {
    animation: personaSimNavPulse 2.4s ease-in-out infinite;
  }

  .persona-sim__nav:not(:disabled) svg {
    animation: personaSimNavNudgeNext 1.7s ease-in-out infinite;
  }

  .persona-sim__nav--prev:not(:disabled) svg {
    animation-name: personaSimNavNudgePrev;
  }

  .persona-sim__nav:hover:not(:disabled),
  .persona-sim__nav:hover:not(:disabled) svg {
    animation-play-state: paused;
  }

  @keyframes personaSimNavPulse {
    0%,
    100% {
      box-shadow: 0 6px 18px rgba(50, 40, 18, 0.24), 0 0 0 0 rgba(47, 122, 78, 0.32);
    }
    60% {
      box-shadow: 0 6px 18px rgba(50, 40, 18, 0.24), 0 0 0 10px rgba(47, 122, 78, 0);
    }
  }

  @keyframes personaSimNavNudgeNext {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(3.5px);
    }
  }

  @keyframes personaSimNavNudgePrev {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(-3.5px);
    }
  }
}

/* ドットインジケータ */
.persona-sim__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}

.persona-sim__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(60, 58, 48, 0.26);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.persona-sim__dot[aria-selected="true"] {
  width: 28px;
  background: #2f7a4e;
}

.persona-sim__path {
  position: relative;
  isolation: isolate;
  flex: 0 0 86%;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 16px;
  min-height: 0;
  padding: 24px;
  border: 2px solid var(--path-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 244, 0.94)),
    var(--path-soft);
  box-shadow:
    0 12px 26px rgba(55, 43, 18, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.persona-sim__path[data-path="A"] {
  --path-main: #2f7a4e;
  --path-border: #8fb08f;
  --path-soft: #eef6ee;
  --path-pill: rgba(235, 246, 233, 0.98);
  --path-dots: rgba(47, 122, 78, 0.34);
}

.persona-sim__path[data-path="B"] {
  --path-main: #b98416;
  --path-border: #d2a941;
  --path-soft: #fff5dc;
  --path-pill: rgba(255, 240, 205, 0.98);
  --path-dots: rgba(185, 132, 22, 0.36);
}

.persona-sim__path[data-path="C"] {
  --path-main: #276f83;
  --path-border: #79a9b5;
  --path-soft: #edf7f8;
  --path-pill: rgba(230, 246, 248, 0.98);
  --path-dots: rgba(39, 111, 131, 0.34);
}

.persona-sim__path:hover {
  box-shadow:
    0 0 0 4px rgba(47, 122, 78, 0.1),
    0 16px 32px rgba(91, 65, 16, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.persona-sim__path.is-selected {
  box-shadow:
    0 0 0 4px rgba(39, 111, 131, 0.16),
    0 18px 34px rgba(28, 69, 82, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.persona-sim__path.is-winner {
  box-shadow:
    0 0 0 5px rgba(199, 154, 59, 0.2),
    0 22px 42px rgba(91, 65, 16, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  transform: translateY(-2px);
}

.persona-sim__path.is-muted {
  opacity: 0.64;
}

.persona-sim__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--path-main);
  color: #fff;
  box-shadow: 0 10px 20px rgba(52, 43, 20, 0.14);
}

.persona-sim__icon svg {
  width: 30px;
  height: 30px;
}

.persona-sim__path-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.persona-sim__path-badge {
  color: var(--path-main);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.persona-sim .persona-sim__path-title {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 2px dotted var(--path-dots);
  color: #2c2a24;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: 0;
}

.persona-sim__path-lead {
  margin: 0;
  color: #4d5048;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.75;
}

.persona-sim__bullets {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.persona-sim__bullets li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(43, 58, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 252, 0.72);
  color: #2f312b;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.45;
}

.persona-sim__bullet-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--path-pill);
  color: var(--path-main);
}

.persona-sim__bullet-icon svg {
  width: 24px;
  height: 24px;
}

.persona-sim__reveal {
  position: relative;
  z-index: 2;
  align-self: end;
  min-height: 48px;
  width: 100%;
  border: 2px solid var(--path-main);
  border-radius: 8px;
  background: var(--path-main);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 8px 16px rgba(52, 43, 20, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.persona-sim__reveal:hover {
  background: #fffdf8;
  color: var(--path-main);
  transform: translateY(-1px);
}

.persona-sim__reveal:focus-visible {
  outline: 4px solid rgba(31, 107, 61, 0.3);
  outline-offset: 4px;
}

.persona-sim__result {
  position: relative;
  z-index: 4;
  display: none;
  align-self: end;
  min-height: 94px;
  margin: 0;
  padding: 14px 15px;
  border: 2px solid var(--path-border);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, var(--path-soft));
  color: #2c2f29;
}

.persona-sim__result:focus-visible {
  outline: 3px solid rgba(31, 107, 61, 0.28);
  outline-offset: 3px;
}

.persona-sim__path[data-revealed="true"] .persona-sim__reveal {
  display: none;
}

.persona-sim__path[data-revealed="true"] .persona-sim__result {
  display: block;
}

.persona-sim__metric {
  display: block;
  color: var(--path-main);
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.persona-sim__caption {
  display: block;
  margin-top: 4px;
  color: #55564e;
  font-size: 0.84rem;
  line-height: 1.55;
}

.persona-sim__choice-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  max-width: 860px;
  margin: 18px auto 0;
  padding: 11px 18px;
  border: 2px solid #dfcfae;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  color: #333127;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.persona-sim__choice-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #2f7a4e;
}

.persona-sim__choice-icon svg {
  width: 34px;
  height: 34px;
}

.persona-sim__inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border-top: 1px solid #eadfca;
  border-bottom: 1px solid #eadfca;
  background: rgba(255, 255, 255, 0.72);
}

.persona-sim__field {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #dfe7dc;
  border-radius: 8px;
  background: #fff;
}

.persona-sim__label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #294931;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.persona-sim__value {
  flex: 0 0 auto;
  color: #a06d14;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.persona-sim input[type="range"] {
  width: 100%;
  height: 34px;
  margin: 0;
  accent-color: #2f7a4e;
}

.persona-sim select {
  min-height: 42px;
  width: 100%;
  border: 1px solid #cbd8c9;
  border-radius: 8px;
  background: #fff;
  color: #22251f;
  font: inherit;
  font-weight: 700;
}

.persona-sim__verdict {
  margin: 0;
  padding: 15px 18px;
  border-top: 1px solid #eadfca;
  background: #fff8e8;
  color: #453a21;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.persona-sim__verdict strong {
  color: #905f0b;
  font-weight: 900;
}

.persona-sim__answer {
  margin: 0;
  padding: 22px 24px 24px;
  border-top: 1px solid #eadfca;
  background:
    linear-gradient(180deg, rgba(247, 252, 247, 0.96), rgba(255, 252, 245, 0.96)),
    #f8fbf7;
  color: #233126;
}

.persona-sim__answer[hidden] {
  display: none;
}

.persona-sim__answer:focus {
  outline: none;
}

.persona-sim__answer-kicker,
.persona-sim__answer-title,
.persona-sim__answer-copy,
.persona-sim__answer-next {
  margin: 0;
}

.persona-sim__answer-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #2f7a4e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
}

.persona-sim__answer-title {
  margin-top: 12px;
  color: #1f3525;
  font-size: 1.32rem;
  font-weight: 900;
  line-height: 1.45;
}

.persona-sim__answer-copy {
  margin-top: 8px;
  color: #4d574d;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.8;
}

.persona-sim__answer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.persona-sim__answer-item {
  min-width: 0;
  padding: 14px;
  border: 1px solid #dfe7dc;
  border-radius: 8px;
  background: #fff;
}

.persona-sim__answer-item.is-selected {
  border-color: #79a9b5;
  background: #f1fbfc;
}

.persona-sim__answer-item.is-winner {
  border-color: #2f7a4e;
  box-shadow: inset 4px 0 0 #2f7a4e;
}

.persona-sim__answer-label,
.persona-sim__answer-metric,
.persona-sim__answer-caption {
  margin: 0;
}

.persona-sim__answer-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #23402b;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.45;
}

.persona-sim__answer-label span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(47, 122, 78, 0.1);
  color: #24633c;
  font-size: 0.68rem;
  font-weight: 900;
}

.persona-sim__answer-metric {
  margin-top: 10px;
  color: #a06d14;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}

.persona-sim__answer-caption {
  margin-top: 6px;
  color: #596158;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.65;
}

.persona-sim__answer-next {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #e0d0b1;
  border-radius: 8px;
  background: #fff8e8;
  color: #51462f;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.7;
}

.persona-sim__consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin: 0;
  padding: 32px 26px;
  background: linear-gradient(180deg, #f0f7f3 0%, #e9f3ec 100%);
  border-top: 1px solid #d8e7df;
  color: #1f2a24;
}

.persona-sim__consult[hidden] {
  display: none;
}

.persona-sim__consult-kicker {
  margin: 0;
  color: #1e4a36;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* ── FP プロフィール（写真センター＋資格でブランディング） ── */
.persona-sim__consult-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 460px;
  padding: 22px 18px 20px;
  border: 1px solid #d8e7df;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.08);
}

.persona-sim__consult-photo {
  width: 112px;
  height: 112px;
  margin-bottom: 4px;
  border: 5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 3px #d8e7df, 0 10px 24px rgba(45, 106, 79, 0.18);
}

.persona-sim__consult-name {
  margin: 0;
  color: #1f2a24;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.3;
}

.persona-sim__consult-role {
  margin: 0;
  color: #6b736c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.persona-sim__consult-creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.persona-sim__consult-creds li {
  padding: 5px 13px;
  border: 1.5px solid #2d6a4f;
  border-radius: 999px;
  background: #fff;
  color: #1e4a36;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.persona-sim__consult-creds li.is-top {
  border-color: #d99a1c;
  background: #f5cf77;
  color: #5a4108;
}

.persona-sim__consult-creds li.is-record {
  border-color: #c98a12;
  background: #fff5e0;
  color: #8a5a08;
}

.persona-sim__consult-specialty {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 0;
  max-width: 420px;
  color: #3f463f;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.55;
}

.persona-sim__consult-specialty-label {
  flex: 0 0 auto;
  padding: 3px 11px;
  border-radius: 999px;
  background: #2d6a4f;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.persona-sim__consult-authority {
  margin: 8px 0 0;
  color: #1e4a36;
  font-size: 0.82rem;
  font-weight: 800;
}

.persona-sim__consult-copy {
  margin: 0;
  max-width: 460px;
  color: #3f463f;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.75;
}

.persona-sim__consult-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 460px;
  min-height: 64px;
  padding: 12px 16px 12px 26px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8a23a, #ec7d18);
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(214, 120, 30, 0.36), 0 0 0 1px rgba(214, 120, 30, 0.18);
}

.persona-sim__consult-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #ec7d18;
  font-size: 1.45rem;
  line-height: 1;
}

.persona-sim__consult-button:hover,
.persona-sim__consult-button:focus-visible {
  background: linear-gradient(180deg, #f4971f, #d86f12);
  color: #fff;
}

.persona-sim__consult-button:focus-visible {
  outline: 4px solid rgba(214, 120, 30, 0.4);
  outline-offset: 3px;
}

[data-lp="smartasset"] .persona-sim__consult {
  padding: 26px 22px;
}

.persona-sim__note {
  margin: 0;
  padding: 12px 18px 18px;
  background: #fffdf8;
  color: #5d5c54;
  font-size: 0.82rem;
  line-height: 1.7;
}

.persona-sim__note a {
  color: #1f6b3d;
  font-weight: 800;
}

@media (max-width: 760px) {
  .persona-sim {
    left: auto;
    width: auto;
    margin: 24px 0 30px;
    transform: none;
  }

  .persona-sim__top {
    padding: 18px 14px 12px;
  }

  .persona-sim__title {
    font-size: 1.24rem;
  }

  .persona-sim__eyebrow {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .persona-sim__hook {
    margin-top: 10px;
    padding: 8px 10px;
    font-size: 0.82rem;
    text-align: left;
  }

  .persona-sim__inputs {
    grid-template-columns: 1fr;
  }

  /* モバイル微調整: カードを画面幅いっぱい近く（1枚＝約90%）に広げ、
     右に小さな peek を残す。カルーセル本体は共通 base 定義。 */
  .persona-sim__path {
    flex-basis: calc(100% - 30px);
    padding: 22px 18px;
  }

  .persona-sim__nav {
    width: 42px;
    height: 42px;
  }

  .persona-sim__nav--prev {
    left: 2px;
  }

  .persona-sim__nav--next {
    right: 2px;
  }

  .persona-sim__nav svg {
    width: 22px;
    height: 22px;
  }

  .persona-sim__icon {
    width: 48px;
    height: 48px;
  }

  .persona-sim__icon svg {
    width: 26px;
    height: 26px;
  }

  .persona-sim__path-badge {
    font-size: 1.24rem;
  }

  .persona-sim .persona-sim__path-title {
    padding-bottom: 12px;
    font-size: 1.16rem;
  }

  .persona-sim__bullets li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    min-height: 52px;
    padding: 8px 10px;
    font-size: 0.98rem;
  }

  .persona-sim__bullet-icon {
    width: 40px;
    height: 40px;
  }

  .persona-sim__bullet-icon svg {
    width: 23px;
    height: 23px;
  }

  .persona-sim__fork {
    padding: 14px 4px 18px;
  }

  .persona-sim__choice-note {
    align-items: flex-start;
    margin-top: 22px;
    padding: 10px 12px;
    font-size: 0.91rem;
    text-align: left;
  }

  .persona-sim__answer {
    padding: 18px 14px 20px;
  }

  .persona-sim__answer-title {
    font-size: 1.08rem;
  }

  .persona-sim__answer-copy {
    font-size: 0.86rem;
  }

  .persona-sim__answer-grid {
    grid-template-columns: 1fr;
  }

  .persona-sim__answer-metric {
    font-size: 1rem;
  }

  .persona-sim__consult {
    gap: 14px;
    padding: 22px 14px;
  }

  .persona-sim__consult-profile {
    padding: 18px 14px 16px;
    border-radius: 18px;
  }

  .persona-sim__consult-photo {
    width: 96px;
    height: 96px;
    border-width: 4px;
  }

  .persona-sim__consult-kicker {
    font-size: 0.86rem;
  }

  .persona-sim__consult-name {
    font-size: 1.16rem;
  }

  .persona-sim__consult-creds li {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .persona-sim__consult-copy {
    font-size: 0.85rem;
  }

  .persona-sim__consult-button {
    min-height: 58px;
  }

  .persona-sim__inputs {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .persona-sim__path,
  .persona-sim__reveal {
    transition: none;
  }
}
