.what-page-v2 {
  display: grid;
  gap: 16px;
  color: var(--eiv-plum, #403a5c);
}

.what-hero-v2 {
  min-height: 184px;
  border-color: var(--eiv-border, #e5dde9);
}

.what-hero-v2 img {
  width: min(250px, 32vw);
  height: 150px;
}

.what-mode-switch-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.what-mode-card {
  display: grid;
  min-height: 78px;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 18px;
  background: #fff;
  color: var(--eiv-plum, #403a5c);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(64, 58, 92, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.what-mode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(105, 201, 195, 0.8);
  box-shadow: 0 12px 24px rgba(64, 58, 92, 0.09);
}

.what-mode-card.is-active {
  border-color: var(--eiv-raspberry, #c64b67);
  background: var(--eiv-raspberry-pale, #fbecef);
  box-shadow: 0 10px 24px rgba(198, 75, 103, 0.12);
}

.what-mode-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
  color: var(--eiv-turquoise-deep, #287f86);
}

.what-mode-card.is-active .what-mode-card__icon {
  background: #fff;
  color: var(--eiv-raspberry, #c64b67);
}

.what-mode-card__icon--surprise {
  font-size: 22px;
  font-weight: 900;
}

.what-mode-card strong,
.what-mode-card small {
  display: block;
}

.what-mode-card strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.what-mode-card small {
  color: var(--eiv-text-muted, #7b768c);
  font-size: 10px;
}

.what-intro-v2 {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 23px;
  border: 1px solid rgba(243, 164, 131, 0.46);
  border-radius: 22px;
  background: var(--eiv-cream, #fff8f3);
}

.what-intro-v2 h2 {
  margin: 3px 0 8px;
  font-size: clamp(26px, 3.1vw, 40px);
  line-height: 1.05;
}

.what-intro-v2 p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 12px;
}

.what-intro-v2 > strong {
  display: grid;
  width: 128px;
  min-width: 128px;
  height: 90px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 18px;
  background: #fff;
  color: var(--eiv-raspberry, #c64b67);
  font-size: 30px;
}

.what-intro-v2 > strong small {
  display: block;
  max-width: 98px;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 8px;
  line-height: 1.3;
  text-align: center;
}

.what-guided-v2,
.what-results-v2,
.what-choice-detail-v2,
.what-surprise-v2 {
  display: grid;
  gap: 14px;
}

.what-step-summary-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.what-step-summary-v2 span {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(105, 201, 195, 0.48);
  border-radius: 13px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
  color: var(--eiv-turquoise-deep, #287f86);
  font-size: 10px;
  font-weight: 900;
}

.what-step-summary-v2 .icon {
  width: 18px;
  height: 18px;
}

.what-empty-callout {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border: 1px solid rgba(198, 75, 103, 0.26);
  border-radius: 17px;
  background: var(--eiv-raspberry-pale, #fbecef);
}

.what-empty-callout > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  color: var(--eiv-raspberry, #c64b67);
}

.what-empty-callout strong,
.what-empty-callout p {
  display: block;
  margin: 0;
}

.what-empty-callout p {
  margin-top: 4px;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 10px;
}

.what-criteria-card-v2 {
  display: grid;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(243, 164, 131, 0.48);
  border-radius: 22px;
  background: var(--eiv-cream, #fff8f3);
}

.what-field {
  display: grid;
  gap: 7px;
}

.what-field > span,
.what-field--scope > span {
  font-size: 11px;
  font-weight: 900;
}

.what-field select,
.what-field input,
.what-field--scope select {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 13px;
  background: #fff;
  color: var(--eiv-plum, #403a5c);
  font: inherit;
}

.what-question-v2 {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(229, 221, 233, 0.95);
  border-radius: 18px;
  background: #fff;
}

.what-question-v2__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--eiv-coral-pale, #fcebe5);
  color: var(--eiv-raspberry, #c64b67);
}

.what-question-v2__icon .icon {
  width: 21px;
  height: 21px;
}

.what-question-v2 h3 {
  margin: 2px 0 10px;
  font-size: 14px;
}

.what-question-help {
  margin: -4px 0 10px;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 9px;
}

.what-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.what-choice-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.what-choice-option {
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 13px;
  background: #fff;
  color: var(--eiv-plum, #403a5c);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.what-choice-option:hover {
  transform: translateY(-1px);
  border-color: var(--eiv-turquoise, #69c9c3);
}

.what-choice-option.is-selected {
  border-color: var(--eiv-raspberry, #c64b67);
  background: var(--eiv-coral-pale, #fcebe5);
  color: var(--eiv-plum, #403a5c);
  box-shadow: inset 0 0 0 1px rgba(198, 75, 103, 0.12);
}

.what-main-cta-v2 {
  width: min(390px, 100%);
  justify-self: center;
  min-height: 50px;
}

.what-results-v2__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 3px;
}

.what-results-v2__heading h2 {
  margin: 3px 0 4px;
}

.what-results-v2__heading p:last-child {
  margin: 0;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 10px;
}

.what-result-section-v2 {
  display: grid;
  gap: 10px;
}

.what-result-section-v2__title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.what-result-section-v2__title > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--eiv-turquoise, #69c9c3);
}

.what-result-section-v2--near .what-result-section-v2__title > span {
  background: var(--eiv-coral, #f3a483);
}

.what-result-section-v2--unknown .what-result-section-v2__title > span {
  background: #b9a9d2;
}

.what-result-section-v2__title h3 {
  margin: 0;
  font-size: 13px;
}

.what-result-section-v2__title b {
  display: grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 10px;
}

.what-result-list-v2 {
  display: grid;
  gap: 12px;
}

.what-result-card-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr) auto;
  align-items: stretch;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-left: 5px solid var(--eiv-turquoise, #69c9c3);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(64, 58, 92, 0.05);
}

.what-result-card-v2--near {
  border-left-color: var(--eiv-coral, #f3a483);
}

.what-result-card-v2--unknown {
  border-left-color: #b9a9d2;
}

.what-result-card-v2__open {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.what-result-card-v2__open > img {
  width: 116px;
  height: 92px;
  border-radius: 15px;
  object-fit: cover;
}

.what-result-card-v2__copy {
  display: grid;
  gap: 5px;
}

.what-result-card-v2__copy > strong {
  font-size: 16px;
}

.what-result-card-v2__copy > small {
  color: var(--eiv-text-muted, #7b768c);
  font-size: 9px;
  line-height: 1.45;
}

.what-result-card-v2__top,
.what-choice-detail-v2__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.what-category-chip,
.what-agreement-badge {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
}

.what-category-chip {
  background: var(--eiv-coral-pale, #fcebe5);
  color: var(--eiv-raspberry, #c64b67);
}

.what-agreement-badge--love {
  background: var(--eiv-turquoise-pale, #e8f7f6);
  color: var(--eiv-turquoise-deep, #287f86);
}

.what-agreement-badge--compromise {
  background: var(--eiv-lilac-pale, #f1edf6);
  color: var(--eiv-plum, #403a5c);
}

.what-category-chip .icon,
.what-agreement-badge .icon {
  width: 15px;
  height: 15px;
}

.what-practical-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.what-practical-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 999px;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 8px;
  font-weight: 700;
}

.what-practical-meta .icon {
  width: 13px;
  height: 13px;
  color: var(--eiv-turquoise-deep, #287f86);
}

.what-result-card-v2__match {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
  font-size: 9px;
}

.what-result-card-v2--near .what-result-card-v2__match {
  background: var(--eiv-cream, #fff8f3);
}

.what-result-card-v2--unknown .what-result-card-v2__match {
  background: var(--eiv-lilac-pale, #f1edf6);
}

.what-result-card-v2__match b {
  font-size: 10px;
}

.what-result-card-v2__match ul {
  margin: 0;
  padding-left: 15px;
  color: var(--eiv-text-muted, #7b768c);
}

.what-result-card-v2__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.what-result-card-v2__actions .button {
  white-space: nowrap;
}

.what-more-v2 {
  width: min(360px, 100%);
  justify-self: center;
}

.what-results-end-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border-radius: 15px;
  background: var(--eiv-lilac-pale, #f1edf6);
  font-size: 10px;
}

.what-results-empty-v2 {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 22px;
  background: #fff;
  text-align: center;
}

.what-results-empty-v2 > span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 20px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
  color: var(--eiv-turquoise-deep, #287f86);
}

.what-results-empty-v2 h2,
.what-results-empty-v2 p {
  margin: 0;
}

.what-results-empty-v2 p {
  max-width: 500px;
  color: var(--eiv-text-muted, #7b768c);
}

.what-results-empty-v2 > div {
  display: flex;
  gap: 9px;
}

.what-back-link-v2,
.what-source-link-v2 {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--eiv-raspberry, #c64b67);
  cursor: pointer;
  font-weight: 900;
}

.what-choice-detail-v2__card {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.54fr);
  overflow: hidden;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 22px;
  background: #fff;
}

.what-choice-detail-v2__card > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.what-choice-detail-v2__card > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
}

.what-choice-detail-v2__card h2,
.what-choice-detail-v2__card p {
  margin: 0;
}

.what-choice-detail-v2__card h2 {
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.05;
}

.what-choice-detail-v2__card p {
  color: var(--eiv-text-muted, #7b768c);
}

.what-choice-agreement-v2 {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
}

.what-choice-agreement-v2 span {
  color: var(--eiv-text-muted, #7b768c);
  font-size: 9px;
}

.what-choice-actions-v2 {
  display: grid;
  gap: 9px;
  padding: 17px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 20px;
  background: var(--eiv-cream, #fff8f3);
}

.what-choice-actions-v2 h3 {
  margin: 0 0 3px;
}

.what-choice-actions-v2 > button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 13px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 16px;
  background: #fff;
  color: var(--eiv-plum, #403a5c);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.what-choice-actions-v2 > button:hover {
  transform: translateY(-2px);
  border-color: var(--eiv-turquoise, #69c9c3);
  box-shadow: 0 10px 20px rgba(64, 58, 92, 0.08);
}

.what-choice-actions-v2 > button > span:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--eiv-raspberry-pale, #fbecef);
  color: var(--eiv-raspberry, #c64b67);
}

.what-choice-actions-v2 strong,
.what-choice-actions-v2 small {
  display: block;
}

.what-choice-actions-v2 small {
  margin-top: 3px;
  color: var(--eiv-text-muted, #7b768c);
  font-size: 9px;
}

.what-surprise-intro-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 19px;
  border: 1px solid rgba(105, 201, 195, 0.52);
  border-radius: 20px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
}

.what-surprise-intro-v2 > span {
  display: grid;
  width: 58px;
  height: 58px;
  min-width: 58px;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: var(--eiv-raspberry, #c64b67);
  font-size: 25px;
}

.what-surprise-intro-v2 h2,
.what-surprise-intro-v2 p {
  margin: 0;
}

.what-surprise-intro-v2 h2 {
  margin: 3px 0 5px;
}

.what-surprise-intro-v2 p:last-child {
  color: var(--eiv-text-muted, #7b768c);
  font-size: 10px;
}

.what-surprise-layout-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 14px;
}

.what-surprise-controls-v2,
.what-wheel-card-v2 {
  display: grid;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 21px;
  background: #fff;
}

.what-surprise-count-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: 14px;
  background: var(--eiv-lilac-pale, #f1edf6);
}

.what-surprise-count-v2 strong {
  font-size: 23px;
}

.what-surprise-count-v2 span {
  color: var(--eiv-text-muted, #7b768c);
  font-size: 9px;
}

.what-wheel-card-v2 {
  place-items: center;
  align-content: center;
  text-align: center;
}

.what-wheel-v2 {
  position: relative;
  width: 210px;
  height: 210px;
  border: 16px solid var(--eiv-coral, #f3a483);
  border-radius: 50%;
  background: var(--eiv-cream, #fff8f3);
  box-shadow: 0 0 0 8px var(--eiv-turquoise, #69c9c3), 0 15px 28px rgba(64, 58, 92, 0.12);
  transition: transform 1.45s cubic-bezier(0.18, 0.78, 0.22, 1);
}

.what-wheel-v2.is-spinning {
  transform: rotate(1440deg);
}

.what-wheel-v2 > span,
.what-wheel-v2 > b {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--eiv-raspberry, #c64b67);
  font-size: 17px;
}

.what-wheel-v2 > span:nth-child(1) { top: 12px; left: 72px; }
.what-wheel-v2 > span:nth-child(2) { top: 44px; right: 15px; }
.what-wheel-v2 > span:nth-child(3) { bottom: 42px; right: 16px; }
.what-wheel-v2 > span:nth-child(4) { bottom: 11px; left: 72px; }
.what-wheel-v2 > span:nth-child(5) { bottom: 43px; left: 14px; }
.what-wheel-v2 > span:nth-child(6) { top: 44px; left: 14px; }
.what-wheel-v2 > b { top: 72px; left: 72px; width: 50px; height: 50px; background: var(--eiv-raspberry, #c64b67); color: #fff; font-size: 23px; }

.what-wheel-card-v2 > p {
  min-height: 34px;
  margin: 0;
  color: var(--eiv-text-muted, #7b768c);
  font-weight: 800;
}

.what-spin-button-v2 {
  width: min(280px, 100%);
}

.what-surprise-result-v2 {
  scroll-margin-top: 110px;
  padding: 17px;
  border: 1px solid rgba(198, 75, 103, 0.26);
  border-radius: 22px;
  background: var(--eiv-raspberry-pale, #fbecef);
}

.what-surprise-result-v2__card {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 0.6fr);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.what-surprise-result-v2__card > img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.what-surprise-result-v2__card > div {
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 22px;
}

.what-surprise-result-v2__card h2,
.what-surprise-result-v2__card p {
  margin: 0;
}

.what-surprise-result-v2__card h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.what-surprise-result-v2__card p {
  color: var(--eiv-text-muted, #7b768c);
}

.what-surprise-result-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.what-dialog-layer-v2 {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.what-dialog-backdrop-v2 {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(64, 58, 92, 0.48);
  backdrop-filter: blur(5px);
}

.what-dialog-v2,
.what-plan-dialog-v2 {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(64, 58, 92, 0.25);
}

.what-dialog-v2 {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
}

.what-dialog-v2 > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.what-dialog-v2 > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 27px;
}

.what-dialog-v2 h2,
.what-dialog-v2 p {
  margin: 0;
}

.what-dialog-v2 h2 {
  font-size: clamp(24px, 3vw, 38px);
}

.what-dialog-v2 p {
  color: var(--eiv-text-muted, #7b768c);
}

.what-dialog-v2__close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  background: #fff;
}

.what-dialog-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.what-dialog-tags-v2 span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--eiv-lilac-pale, #f1edf6);
  font-size: 8px;
  font-weight: 800;
}

.what-dialog-collection-v2 {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
}

.what-plan-dialog-v2 {
  display: grid;
  width: min(520px, 100%);
  gap: 13px;
  padding: 28px;
  text-align: center;
}

.what-plan-dialog-v2__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  justify-self: center;
  border-radius: 18px;
  background: var(--eiv-turquoise-pale, #e8f7f6);
  color: var(--eiv-turquoise-deep, #287f86);
}

.what-plan-dialog-v2 h2,
.what-plan-dialog-v2 p {
  margin: 0;
}

.what-plan-dialog-v2 p {
  color: var(--eiv-text-muted, #7b768c);
}

.what-plan-dialog-v2 label {
  display: grid;
  gap: 7px;
  text-align: left;
  font-weight: 900;
}

.what-plan-dialog-v2 input {
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--eiv-border, #e5dde9);
  border-radius: 13px;
  color: var(--eiv-plum, #403a5c);
  font: inherit;
}

.what-plan-dialog-v2 > div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 1100px) {
  .what-choice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .what-result-card-v2 { grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr); }
  .what-result-card-v2__actions { grid-column: 1 / -1; flex-direction: row; justify-content: flex-end; }
}

@media (max-width: 780px) {
  .what-mode-switch-v2,
  .what-surprise-layout-v2,
  .what-choice-detail-v2__card,
  .what-surprise-result-v2__card,
  .what-dialog-v2 { grid-template-columns: 1fr; }
  .what-intro-v2 { align-items: flex-start; }
  .what-intro-v2 > strong { width: 100px; min-width: 100px; height: 78px; }
  .what-step-summary-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .what-result-card-v2 { grid-template-columns: 1fr; }
  .what-result-card-v2__open { grid-template-columns: 92px minmax(0, 1fr); }
  .what-result-card-v2__open > img { width: 92px; height: 82px; }
  .what-result-card-v2__actions { grid-column: auto; }
  .what-choice-detail-v2__card > img,
  .what-surprise-result-v2__card > img,
  .what-dialog-v2 > img { min-height: 220px; max-height: 300px; }
}

@media (max-width: 560px) {
  .what-hero-v2 img { width: 110px; height: 90px; }
  .what-mode-card { grid-template-columns: 42px minmax(0, 1fr); padding: 11px; }
  .what-mode-card__icon { width: 40px; height: 40px; }
  .what-intro-v2 { display: grid; }
  .what-intro-v2 > strong { width: 100%; min-width: 0; height: auto; grid-template-columns: auto auto; justify-content: center; gap: 7px; }
  .what-step-summary-v2 { grid-template-columns: 1fr; }
  .what-empty-callout { grid-template-columns: 42px minmax(0, 1fr); }
  .what-empty-callout .button { grid-column: 1 / -1; }
  .what-question-v2 { grid-template-columns: 1fr; }
  .what-choice-grid,
  .what-choice-grid--3 { grid-template-columns: 1fr; }
  .what-results-v2__heading { align-items: flex-start; flex-direction: column; }
  .what-result-card-v2__open { grid-template-columns: 1fr; }
  .what-result-card-v2__open > img { width: 100%; height: 170px; }
  .what-result-card-v2__actions { flex-direction: column; }
  .what-results-end-v2,
  .what-results-empty-v2 > div,
  .what-surprise-result-v2__actions,
  .what-plan-dialog-v2 > div { align-items: stretch; flex-direction: column; }
  .what-choice-actions-v2 > button { grid-template-columns: 42px minmax(0, 1fr); }
  .what-choice-actions-v2 > button > b { display: none; }
  .what-dialog-layer-v2 { padding: 10px; }
  .what-dialog-v2,
  .what-plan-dialog-v2 { max-height: calc(100vh - 20px); border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .what-mode-card,
  .what-choice-option,
  .what-choice-actions-v2 > button,
  .what-wheel-v2 { transition: none; }
  .what-wheel-v2.is-spinning { transform: none; }
}
