:root {
  --wizard-bg: linear-gradient(180deg, #05070d 0%, #081120 38%, #060810 100%);
  --wizard-card: rgba(8, 14, 26, 0.88);
  --wizard-card-strong: rgba(11, 18, 32, 0.96);
  --wizard-border: rgba(255, 255, 255, 0.09);
  --wizard-muted: rgba(255, 255, 255, 0.68);
  --wizard-soft: rgba(255, 255, 255, 0.46);
  --wizard-cyan: #48d5ff;
  --wizard-cyan-deep: #1297de;
  --wizard-amber: #ffb347;
  --wizard-amber-deep: #ff8c2b;
  --wizard-mint: #7cf0c2;
  --wizard-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.wizard-page {
  position: relative;
  background: var(--wizard-bg);
}

.wizard-shell {
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--headerH) + 36px) clamp(20px, 4vw, 40px) clamp(72px, 7vw, 110px);
}

.wizard-shell--question {
  max-width: 940px;
  min-height: calc(100vh - var(--headerH));
  display: grid;
  align-content: center;
}

.wizard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.wizard-question-stage {
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
}

.wizard-question-card {
  width: 100%;
  max-width: 820px;
}

.wizard-question-card .wizard-card-head {
  text-align: center;
}

.wizard-question-card .wizard-actions-left {
  justify-content: center;
}

.wizard-question-note {
  max-width: 34ch;
  margin: 12px auto 0;
}

.wizard-info-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.wizard-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wizard-info-btn:hover,
.wizard-info-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(72, 213, 255, 0.24);
  background: rgba(72, 213, 255, 0.09);
  outline: none;
}

.wizard-question-card[aria-busy="true"] {
  pointer-events: none;
}

.wizard-question-card.is-exiting {
  animation: wizardQuestionOut 220ms ease forwards;
}

.wizard-question-card.is-entering {
  animation: wizardQuestionIn 220ms ease both;
}

.wizard-secondary-btn--compact {
  min-height: 42px;
  padding: 10px 14px;
}

.wizard-intro {
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--headerH) + 40px) clamp(20px, 4vw, 40px) 20px;
}

.wizard-intro-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(72, 213, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.96), rgba(8, 14, 26, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--wizard-shadow);
}

.wizard-intro-card h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.wizard-intro-card p {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--wizard-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.wizard-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 420px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--headerH) + 52px) clamp(20px, 4vw, 40px) clamp(44px, 6vw, 70px);
}

.wizard-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.wizard-hero-copy p {
  margin-top: 20px;
  max-width: 64ch;
  color: var(--wizard-muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.85;
}

.wizard-eyebrow,
.wizard-side-eyebrow,
.wizard-step-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wizard-amber);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.wizard-eyebrow::before,
.wizard-side-eyebrow::before,
.wizard-step-index::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wizard-amber), #ffe0a9);
  box-shadow: 0 0 0 6px rgba(255, 179, 71, 0.12);
}

.wizard-hero-pills,
.wizard-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.wizard-hero-pills span,
.wizard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
}

.wizard-chip--accent {
  background: rgba(72, 213, 255, 0.12);
  border-color: rgba(72, 213, 255, 0.24);
  color: #dff9ff;
}

.wizard-hero-panel {
  display: grid;
  gap: 18px;
}

.wizard-hero-card,
.wizard-side-card,
.wizard-card,
.wizard-compare,
.wizard-smart-mode {
  background: var(--wizard-card);
  border: 1px solid var(--wizard-border);
  border-radius: 28px;
  box-shadow: var(--wizard-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wizard-hero-card {
  padding: 24px;
}

.wizard-hero-card strong {
  display: block;
  font-size: 1.05rem;
}

.wizard-hero-card p {
  margin-top: 10px;
  color: var(--wizard-muted);
  line-height: 1.75;
}

.wizard-hero-card--accent {
  background:
    radial-gradient(circle at top right, rgba(72, 213, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(18, 30, 52, 0.98), rgba(9, 14, 24, 0.98));
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}

.wizard-main {
  display: grid;
  gap: 22px;
}

.wizard-sidebar {
  display: grid;
  gap: 18px;
}

.wizard-progress-wrap {
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--wizard-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.wizard-progress {
  position: relative;
  margin-top: 14px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wizard-progress-bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--wizard-amber) 0%, var(--wizard-amber-deep) 36%, var(--wizard-cyan) 100%);
  box-shadow: 0 10px 24px rgba(72, 213, 255, 0.26);
  transition: width 240ms ease;
}

@keyframes wizardQuestionIn {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wizardQuestionOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.wizard-smart-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.wizard-smart-mode strong {
  display: block;
  font-size: 1rem;
}

.wizard-smart-mode p {
  margin-top: 6px;
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-smart-mode.is-active {
  border-color: rgba(72, 213, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(72, 213, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 19, 33, 0.92), rgba(8, 13, 22, 0.92));
}

.wizard-card {
  padding: clamp(22px, 3vw, 32px);
}

.wizard-card-head h2,
.wizard-top-pick-copy h2,
.wizard-side-card h3,
.wizard-tech-card h3,
.wizard-summary-logic h3,
.wizard-alt-head h3,
.wizard-compare-head h3 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.wizard-card-head p,
.wizard-side-card p,
.wizard-summary-logic p,
.wizard-alt-head p,
.wizard-compare-head p {
  margin-top: 12px;
  color: var(--wizard-muted);
  line-height: 1.8;
}

.wizard-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.wizard-option-grid--distance {
  grid-template-columns: 1fr;
}

.wizard-option-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 0;
  padding: 20px 22px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.wizard-option-grid > .wizard-option-card:last-child {
  border-bottom: 0;
}

.wizard-option-card:hover,
.wizard-option-card:focus-visible {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.03);
  outline: none;
}

.wizard-option-card.is-selected {
  background:
    linear-gradient(90deg, rgba(72, 213, 255, 0.14), rgba(72, 213, 255, 0.03) 22%, transparent 68%);
}

.wizard-option-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--wizard-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.wizard-option-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.wizard-option-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.wizard-option-label {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wizard-option-copy {
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-option-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(124, 240, 194, 0.12);
  border: 1px solid rgba(124, 240, 194, 0.2);
  color: #d7fff0;
  font-size: 0.76rem;
  font-weight: 700;
}

.wizard-option-state {
  color: var(--wizard-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-option-card.is-selected .wizard-option-index,
.wizard-option-card:hover .wizard-option-index,
.wizard-option-card:focus-visible .wizard-option-index {
  border-color: rgba(72, 213, 255, 0.2);
  color: #e5fbff;
  background: rgba(72, 213, 255, 0.1);
}

.wizard-option-card.is-selected .wizard-option-state {
  color: #dff9ff;
}

.wizard-distance-shell {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.wizard-distance-manual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-distance-copy p,
.wizard-distance-tip {
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-distance-inputs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.wizard-distance-inputs label {
  display: grid;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--wizard-soft);
  font-weight: 700;
}

.wizard-distance-inputs input {
  width: 108px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 12, 22, 0.92);
  color: #fff;
  font-size: 1rem;
  padding: 0 14px;
}

.wizard-distance-tip {
  grid-column: 1 / -1;
}

.wizard-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wizard-tech-card {
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.wizard-tech-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 179, 71, 0.12);
  border: 1px solid rgba(255, 179, 71, 0.16);
  color: #ffe1b3;
  font-size: 0.76rem;
  font-weight: 800;
}

.wizard-tech-card p {
  margin-top: 10px;
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.wizard-actions-right,
.wizard-actions-left,
.wizard-result-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.wizard-primary-btn,
.wizard-secondary-btn,
.wizard-text-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
}

.wizard-primary-btn,
.wizard-secondary-btn {
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wizard-primary-btn {
  background: linear-gradient(135deg, var(--wizard-amber) 0%, var(--wizard-amber-deep) 45%, var(--wizard-cyan) 100%);
  color: #07111e;
  box-shadow: 0 16px 30px rgba(72, 213, 255, 0.2);
}

.wizard-primary-btn:hover,
.wizard-primary-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.wizard-primary-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.wizard-secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.wizard-secondary-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.wizard-text-btn {
  color: var(--wizard-cyan);
  font-weight: 700;
  background: transparent;
  padding: 0;
}

.wizard-info-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 8, 16, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wizard-info-sheet {
  width: min(100%, 560px);
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(72, 213, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(13, 21, 36, 0.98), rgba(8, 13, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  animation: wizardInfoIn 180ms ease both;
}

.wizard-info-sheet h3 {
  margin-top: 14px;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.wizard-info-sheet p {
  margin-top: 12px;
  color: var(--wizard-muted);
  line-height: 1.75;
}

.wizard-info-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.wizard-info-close:hover,
.wizard-info-close:focus-visible {
  border-color: rgba(72, 213, 255, 0.24);
  background: rgba(72, 213, 255, 0.09);
  outline: none;
}

@keyframes wizardInfoIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wizard-side-card {
  padding: 22px;
}

.wizard-side-note,
.wizard-side-tip,
.wizard-caution-box,
.wizard-summary-logic {
  margin-top: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-side-note strong,
.wizard-side-tip strong,
.wizard-caution-box strong,
.wizard-summary-logic strong {
  display: block;
}

.wizard-side-list,
.wizard-summary-logic ul,
.wizard-result-columns ul,
.wizard-caution-box ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-glossary {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-glossary h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.wizard-glossary-item {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.wizard-glossary-item summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
}

.wizard-glossary-item p {
  padding: 0 16px 16px;
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-summary-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.wizard-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-summary-item p {
  margin-top: 6px;
  color: var(--wizard-muted);
  line-height: 1.7;
}

.wizard-main--results {
  max-width: 980px;
  margin: 0 auto;
}

.wizard-results {
  display: grid;
  gap: 18px;
}

.wizard-results-head {
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-results-head p {
  margin-top: 10px;
  color: var(--wizard-muted);
  line-height: 1.75;
}

.wizard-results-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wizard-stock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.wizard-stock-pill.is-live {
  background: rgba(124, 240, 194, 0.14);
  border-color: rgba(124, 240, 194, 0.22);
  color: #d7fff0;
}

.wizard-result-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 16px 18px;
  border-radius: 22px;
  background: var(--wizard-card-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.wizard-result-row.is-top-pick {
  border-color: rgba(72, 213, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(72, 213, 255, 0.08), rgba(255, 255, 255, 0.02) 30%, rgba(11, 18, 32, 0.96) 100%);
}

.wizard-result-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 14px;
  border-radius: 18px;
  overflow: hidden;
  box-sizing: border-box;
  background:
    radial-gradient(circle at top right, rgba(72, 213, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(16, 29, 48, 0.95), rgba(8, 12, 20, 1));
}

.wizard-result-media--row {
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.wizard-result-media img,
.wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-result-media img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.wizard-result-fallback {
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.wizard-result-fallback span {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wizard-soft);
  font-weight: 700;
  font-size: 0.8rem;
}

.wizard-result-fallback img {
  width: 58px;
  height: auto;
  opacity: 0.82;
}

.wizard-result-row-main {
  display: grid;
  align-content: start;
  gap: 14px;
}

.wizard-result-row-head {
  display: grid;
  gap: 14px;
}

.wizard-result-rank {
  color: var(--wizard-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wizard-result-row-head h3 {
  margin-top: 6px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.wizard-result-row-head p {
  margin-top: 6px;
  color: var(--wizard-muted);
  line-height: 1.65;
}

.wizard-result-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  text-align: left;
}

.wizard-result-price-block strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.wizard-result-price-block span {
  display: inline-flex;
  color: var(--wizard-soft);
  text-decoration: line-through;
  font-weight: 700;
}

.wizard-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--wizard-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.wizard-result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-result-cta {
  margin-top: auto;
}

.wizard-result-cta .wizard-primary-btn {
  width: 100%;
  justify-content: center;
}

.wizard-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.wizard-compare {
  padding: 22px;
}

.wizard-compare-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
}

.wizard-compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 180px) repeat(var(--wizard-compare-count, 3), minmax(180px, 1fr));
  gap: 12px;
  min-width: max-content;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--wizard-muted);
}

.wizard-compare-row--head {
  background: rgba(72, 213, 255, 0.08);
  color: #fff;
}

.wizard-card--loading {
  display: grid;
  place-items: center;
  min-height: 320px;
  text-align: center;
}

.wizard-loading-spinner {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--wizard-cyan);
  animation: wizardSpin 1s linear infinite;
}

@keyframes wizardSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  .wizard-layout,
  .wizard-result-row,
  .wizard-distance-manual,
  .wizard-result-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .wizard-option-grid,
  .wizard-tech-grid,
  .wizard-result-columns,
  .wizard-option-grid--distance {
    grid-template-columns: 1fr;
  }

  .wizard-option-card {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .wizard-option-state {
    grid-column: 2;
    justify-self: start;
  }

  .wizard-smart-mode,
  .wizard-summary-item,
  .wizard-actions,
  .wizard-result-row-head,
  .wizard-result-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .wizard-compare-row {
    grid-template-columns: 1fr;
    min-width: 0;
  }
}

@media (max-width: 960px) {
  .wizard-results-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wizard-card,
  .wizard-side-card,
  .wizard-glossary,
  .wizard-compare,
  .wizard-top-pick,
  .wizard-smart-mode {
    border-radius: 22px;
  }

  .wizard-intro-card h1 {
    max-width: 12ch;
  }

  .wizard-actions-right,
  .wizard-actions-left,
  .wizard-result-cta {
    width: 100%;
  }

  .wizard-primary-btn,
  .wizard-secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .wizard-info-overlay {
    padding: 16px;
    place-items: end center;
  }

  .wizard-info-sheet {
    width: 100%;
    border-radius: 24px 24px 20px 20px;
  }
}

:root {
  --wizard-fire: #ff9d2f;
  --wizard-fire-hot: #ff5f1f;
  --wizard-fire-soft: rgba(255, 143, 41, 0.22);
  --wizard-premium-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(255, 140, 44, 0.08), transparent 24%),
    radial-gradient(circle at 20% 20%, rgba(72, 213, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #04060a 0%, #09111c 42%, #06080f 100%);
}

.wizard-page--boot {
  display: grid;
  place-items: center;
}

.wizard-boot-shell {
  width: min(820px, calc(100% - 40px));
  padding: clamp(28px, 6vw, 44px) 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: opacity 300ms var(--wizard-premium-ease), transform 300ms var(--wizard-premium-ease);
  will-change: transform, opacity;
}

.wizard-boot-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 154, 47, 0.2), rgba(255, 154, 47, 0.04));
  box-shadow: 0 0 44px rgba(255, 141, 44, 0.16);
}

.wizard-boot-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--wizard-fire);
  border-right-color: rgba(72, 213, 255, 0.72);
  box-shadow: 0 0 26px rgba(255, 132, 31, 0.32);
  animation: wizardBootSpin 940ms linear infinite;
}

.wizard-boot-shell h1 {
  margin-top: 14px;
  font-size: clamp(2.3rem, 4.4vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.wizard-boot-shell p {
  margin: 14px auto 0;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.8;
}

.wizard-shell--question {
  max-width: 1160px;
  padding-top: calc(var(--headerH) + 52px);
}

.wizard-toolbar {
  margin-bottom: 20px;
}

.wizard-progress-wrap {
  width: min(620px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wizard-progress-meta {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
}

.wizard-progress {
  height: 7px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.wizard-progress-bar {
  background: linear-gradient(90deg, var(--wizard-fire-hot) 0%, var(--wizard-fire) 46%, var(--wizard-cyan) 100%);
}

.wizard-question-stage {
  position: relative;
  min-height: min(72vh, 800px);
  overflow: visible;
}

.wizard-question-stage::before,
.wizard-question-stage::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.wizard-question-stage::before {
  top: 10%;
  left: -18%;
  width: min(420px, 42vw);
  height: min(420px, 42vw);
  background: radial-gradient(circle, rgba(255, 142, 44, 0.14) 0%, rgba(255, 142, 44, 0.04) 34%, transparent 72%);
}

.wizard-question-stage::after {
  top: 16%;
  right: -14%;
  width: min(340px, 34vw);
  height: min(340px, 34vw);
  background: radial-gradient(circle, rgba(72, 213, 255, 0.12) 0%, rgba(72, 213, 255, 0.04) 38%, transparent 72%);
}

.wizard-question-card,
.wizard-results,
.wizard-card--loading {
  transition:
    opacity 300ms var(--wizard-premium-ease),
    transform 300ms var(--wizard-premium-ease);
  will-change: transform, opacity;
}

.wizard-question-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 26px 56px;
  align-items: start;
  overflow: visible;
  max-width: 1060px;
  padding: 18px 0 16px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wizard-question-card.is-entering,
.wizard-question-card.is-exiting {
  animation: none;
}

.wizard-question-card::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 14px;
  width: 2px;
  height: clamp(180px, 34vh, 300px);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 165, 82, 0.9), rgba(255, 123, 47, 0.34) 58%, transparent 100%);
}

.wizard-question-card::after {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd08e 0%, var(--wizard-fire-hot) 100%);
  box-shadow: 0 0 24px rgba(255, 134, 39, 0.22);
}

.wizard-question-card .wizard-card-head {
  grid-column: 1;
  grid-row: 1 / span 2;
  text-align: left;
  max-width: 420px;
}

.wizard-question-card h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.wizard-question-note {
  max-width: 36ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.86;
}

.wizard-question-linkline {
  margin-top: 14px;
}

.wizard-understand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 164, 90, 0.94);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.wizard-understand-link:hover,
.wizard-understand-link:focus-visible {
  color: #ffd0a6;
  text-shadow: 0 0 18px rgba(255, 140, 40, 0.34);
  transform: translateX(2px);
  outline: none;
}

.wizard-option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  margin-top: 0;
  border: 0;
  background: transparent;
}

.wizard-option-grid--distance {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 24px;
}

.wizard-question-card > .wizard-option-grid,
.wizard-question-card > .wizard-distance-shell {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.wizard-option-card {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
  min-height: 0;
  padding: 20px 0 22px 16px;
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  transition:
    transform 180ms var(--wizard-premium-ease),
    opacity 180ms var(--wizard-premium-ease),
    color 180ms var(--wizard-premium-ease);
  will-change: transform, opacity;
}

.wizard-option-card::before,
.wizard-option-card::after {
  content: '';
  position: absolute;
  transition:
    opacity 180ms var(--wizard-premium-ease),
    transform 180ms var(--wizard-premium-ease),
    background 180ms var(--wizard-premium-ease);
}

.wizard-option-card::before {
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  border-radius: 999px;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.03));
}

.wizard-option-card::after {
  left: 14px;
  right: 0;
  bottom: 4px;
  height: 1px;
  opacity: 0.46;
  transform: scaleX(0.82);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 84%);
}

.wizard-option-card:hover,
.wizard-option-card:focus-visible {
  transform: translateX(6px);
  background: transparent;
  box-shadow: none;
  outline: none;
}

.wizard-option-card.is-selected {
  background: transparent;
  box-shadow: none;
}

.wizard-option-card:hover::before,
.wizard-option-card:focus-visible::before {
  opacity: 1;
  transform: scaleY(1.02);
  background: linear-gradient(180deg, rgba(255, 176, 103, 0.95), rgba(72, 213, 255, 0.28));
}

.wizard-option-card:hover::after,
.wizard-option-card:focus-visible::after {
  opacity: 0.88;
  transform: scaleX(1);
}

.wizard-option-card.is-selected::before {
  width: 2px;
  opacity: 1;
  background: linear-gradient(180deg, #ffd08e 0%, var(--wizard-fire) 30%, var(--wizard-fire-hot) 68%, rgba(72, 213, 255, 0.72) 100%);
  box-shadow: 0 0 18px rgba(255, 120, 32, 0.16);
}

.wizard-option-card.is-selected::after {
  opacity: 0.92;
  transform: scaleX(1);
  background: linear-gradient(90deg, rgba(255, 160, 82, 0.42), transparent 84%);
}

.wizard-option-check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 157, 47, 0.5);
  background: linear-gradient(180deg, rgba(255, 164, 69, 0.1), rgba(255, 94, 31, 0.03));
  box-shadow: none;
  transition:
    border-color 180ms var(--wizard-premium-ease),
    background 180ms var(--wizard-premium-ease),
    box-shadow 180ms var(--wizard-premium-ease),
    transform 180ms var(--wizard-premium-ease);
}

.wizard-option-check::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.95);
  transform: rotate(45deg) scale(0.15);
  opacity: 0;
  transition: transform 180ms var(--wizard-premium-ease), opacity 180ms var(--wizard-premium-ease);
}

.wizard-option-check-core {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.34), transparent 72%);
  opacity: 0.18;
  transition: opacity 180ms var(--wizard-premium-ease), transform 180ms var(--wizard-premium-ease);
}

.wizard-option-card:hover .wizard-option-check,
.wizard-option-card:focus-visible .wizard-option-check {
  transform: translateX(1px);
  box-shadow: 0 0 0 8px rgba(255, 140, 40, 0.06);
}

.wizard-option-card.is-selected .wizard-option-check {
  border-color: rgba(255, 192, 112, 0.92);
  background: linear-gradient(180deg, rgba(255, 171, 76, 0.52), rgba(255, 95, 31, 0.38));
  box-shadow:
    0 0 0 10px rgba(255, 150, 48, 0.08),
    0 0 18px rgba(255, 106, 22, 0.16);
}

.wizard-option-card.is-selected .wizard-option-check::before {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}

.wizard-option-card.is-selected .wizard-option-check-core {
  opacity: 0.56;
  transform: scale(1.04);
}

.wizard-option-topline {
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.wizard-option-label {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wizard-option-copy {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.82;
}

.wizard-option-badge {
  min-height: 24px;
  padding: 3px 10px;
  background: rgba(72, 213, 255, 0.08);
  border-color: rgba(72, 213, 255, 0.14);
  color: #d8f8ff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-option-index,
.wizard-option-state {
  display: none;
}

.wizard-distance-shell {
  grid-column: 2;
  grid-row: 1;
  gap: 22px;
  margin-top: 0;
}

.wizard-distance-manual {
  padding: 20px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-distance-copy p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.98rem;
  line-height: 1.78;
}

.wizard-distance-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wizard-distance-inputs label {
  display: grid;
  gap: 8px;
}

.wizard-distance-inputs span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.wizard-distance-inputs input {
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(4, 6, 10, 0.84);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 600;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wizard-distance-inputs input:focus {
  outline: none;
  border-color: rgba(255, 155, 52, 0.62);
  box-shadow: 0 0 0 4px rgba(255, 146, 41, 0.12);
}

.wizard-distance-tip {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.78;
}

.wizard-actions {
  grid-column: 2;
  grid-row: 2;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-primary-btn,
.wizard-secondary-btn {
  min-height: 52px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.wizard-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
}

.wizard-secondary-btn:hover,
.wizard-secondary-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: none;
  outline: none;
}

.wizard-secondary-btn[disabled] {
  opacity: 0.36;
  cursor: not-allowed;
}

.wizard-primary-btn {
  background: linear-gradient(135deg, #ffd08e 0%, var(--wizard-fire) 26%, var(--wizard-fire-hot) 66%, #ff7b2f 100%);
  box-shadow: 0 18px 34px rgba(255, 116, 22, 0.26);
}

.wizard-results {
  gap: 24px;
}

.wizard-results-head {
  max-width: 760px;
  padding: 0 0 8px;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.wizard-results-head h2 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.wizard-results-head p {
  margin-top: 14px;
  max-width: 58ch;
  font-size: 1.04rem;
  line-height: 1.84;
}

.wizard-results-list {
  gap: 22px;
}

.wizard-result-row {
  padding: 20px 22px;
  gap: 20px;
}

.wizard-result-row-head h3 {
  font-size: clamp(1.32rem, 2.2vw, 1.66rem);
}

.wizard-result-row-head p {
  font-size: 0.98rem;
  line-height: 1.74;
}

.wizard-result-price-block strong {
  font-size: 1.5rem;
}

.wizard-result-meta {
  gap: 12px;
  font-size: 0.94rem;
}

.wizard-result-cta .wizard-primary-btn {
  min-height: 50px;
}

.wizard-card-head,
.wizard-results-head,
.wizard-option-grid,
.wizard-distance-shell,
.wizard-actions,
.wizard-boot-shell {
  transition:
    opacity 220ms var(--wizard-premium-ease),
    transform 220ms var(--wizard-premium-ease);
}

.wizard-question-card.is-entering .wizard-card-head,
.wizard-question-card.is-entering .wizard-option-grid,
.wizard-question-card.is-entering .wizard-distance-shell,
.wizard-question-card.is-entering .wizard-actions {
  animation: wizardQuestionReveal 180ms var(--wizard-premium-ease) both;
}

@starting-style {
  .wizard-boot-shell,
  .wizard-question-card,
  .wizard-results-head {
    opacity: 0;
    transform: translateY(10px);
  }
}

::view-transition-old(wizard-stage),
::view-transition-new(wizard-stage),
::view-transition-old(wizard-progress),
::view-transition-new(wizard-progress) {
  animation-duration: 1ms;
  animation-timing-function: var(--wizard-premium-ease);
}

@keyframes wizardBootSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wizardOptionBuzz {
  25% { transform: translateX(1px); }
  50% { transform: translateX(-1px); }
  75% { transform: translateX(0.5px); }
  100% { transform: translateX(0) rotate(0); }
}

@keyframes wizardQuestionReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .wizard-question-card {
    display: block;
    max-width: 860px;
    padding-left: 18px;
  }

  .wizard-question-card .wizard-card-head {
    max-width: 640px;
  }

  .wizard-question-card > .wizard-option-grid,
  .wizard-question-card > .wizard-distance-shell {
    margin-top: 32px;
  }

  .wizard-question-card > .wizard-actions {
    margin-top: 24px;
  }

  .wizard-question-card::before {
    left: 0;
  }

  .wizard-question-card::after {
    left: -6px;
  }
}

@media (max-width: 860px) {
  .wizard-question-card h2,
  .wizard-boot-shell h1 {
    font-size: clamp(1.7rem, 8vw, 2.8rem);
  }

  .wizard-question-stage::before,
  .wizard-question-stage::after {
    display: none;
  }

  .wizard-option-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .wizard-option-card {
    padding-left: 0;
  }

  .wizard-option-card::before {
    left: -18px;
  }

  .wizard-option-card::after {
    left: 0;
  }

  .wizard-distance-inputs {
    grid-template-columns: 1fr;
  }
}

/* Final polish: no step animation, cleaner question flow, and larger result imagery. */
.wizard-shell,
.wizard-shell--question,
.wizard-main--results {
  max-width: none;
  width: 100%;
}

@media (min-width: 1200px) {
  .wizard-shell--question {
    width: auto;
    margin-left: 25%;
    margin-right: 25%;
    padding-left: 0;
    padding-right: 0;
  }
}

.wizard-question-stage {
  min-height: auto;
}

.wizard-question-stage::before,
.wizard-question-stage::after {
  display: none;
}

.wizard-question-card {
  display: block;
  max-width: 920px;
  padding: 16px 0 8px;
}

.wizard-question-card .wizard-card-head {
  max-width: 760px;
}

.wizard-question-card h2 {
  font-size: clamp(2.35rem, 4.5vw, 3.85rem);
  line-height: 0.98;
}

.wizard-question-note {
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.82;
}

.wizard-question-card > .wizard-option-grid,
.wizard-question-card > .wizard-distance-shell,
.wizard-question-card > .wizard-actions {
  grid-column: auto;
  grid-row: auto;
}

.wizard-question-card > .wizard-option-grid,
.wizard-question-card > .wizard-distance-shell {
  margin-top: 32px;
}

.wizard-question-card > .wizard-actions {
  margin-top: 24px;
}

.wizard-option-grid {
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 900px;
}

.wizard-option-grid--distance {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.wizard-option-card {
  padding: 18px 0 18px 16px;
}

.wizard-option-card:hover,
.wizard-option-card:focus-visible {
  transform: none;
}

.wizard-question-card,
.wizard-card-head,
.wizard-option-grid,
.wizard-distance-shell,
.wizard-actions,
.wizard-results,
.wizard-results-head,
.wizard-option-card {
  animation: none !important;
  transition: none !important;
}

.wizard-page--boot {
  display: block;
}

.wizard-boot-shell {
  width: 100%;
  max-width: none;
  padding: calc(var(--headerH) + 40px) 0 24px;
}

.wizard-boot-spinner {
  animation: none;
  box-shadow: none;
}

.wizard-main--results {
  max-width: none;
}

.wizard-results-list {
  grid-template-columns: 1fr;
  gap: 24px;
}

.wizard-result-row {
  grid-template-columns: minmax(360px, 34vw) minmax(0, 1fr);
  align-items: start;
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.wizard-results-list > .wizard-result-row:first-child {
  border-top: 0;
  padding-top: 10px;
}

.wizard-result-row.is-top-pick {
  border-top-color: rgba(255, 168, 97, 0.32);
  background: transparent;
}

.wizard-result-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.wizard-result-media--row {
  aspect-ratio: auto;
  min-height: 360px;
}

.wizard-result-media img {
  width: 100%;
  height: auto;
  max-width: min(100%, 560px);
  max-height: 340px;
  object-fit: contain;
}

.wizard-result-fallback {
  width: 100%;
  min-height: 240px;
}

.wizard-result-row-main {
  gap: 18px;
  min-width: 0;
}

.wizard-result-row-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  min-width: 0;
}

.wizard-result-row-head > div {
  min-width: 0;
}

.wizard-result-row-head h3 {
  font-size: clamp(1.4rem, 2.3vw, 1.82rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.wizard-result-row-head p {
  font-size: 1rem;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

.wizard-result-price-block strong {
  font-size: 1.62rem;
}

.wizard-result-meta {
  gap: 16px;
  font-size: 0.96rem;
}

.wizard-result-meta span {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.wizard-results-head {
  max-width: none;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.wizard-actions--results {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

@media (max-width: 900px) {
  .wizard-option-grid--distance {
    grid-template-columns: 1fr;
  }

  .wizard-result-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }

  .wizard-result-media,
  .wizard-result-media--row {
    min-height: 280px;
  }

  .wizard-result-media img {
    max-height: 240px;
  }

  .wizard-result-row-head {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wizard-boot-spinner,
  .wizard-question-card,
  .wizard-card-head,
  .wizard-option-card,
  .wizard-results-head {
    animation: none !important;
    transition: none !important;
  }
}

/* Results pass: centered stage with side-by-side recommendation blurbs. */
.wizard-shell--results {
  width: min(100%, 1500px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 3vw, 44px);
  padding-right: clamp(20px, 3vw, 44px);
}

.wizard-main--results {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.wizard-results {
  max-width: 1000px;
  margin: 0 auto;
  gap: 30px;
}

.wizard-results-head {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  border-bottom: 0;
}

.wizard-results-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 56ch;
}

.wizard-results-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.wizard-result-row {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 72, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(14, 20, 33, 0.95), rgba(8, 11, 18, 0.98));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.wizard-results-list > .wizard-result-row:first-child {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-result-row.is-top-pick {
  border-color: rgba(255, 168, 97, 0.3);
  background:
    radial-gradient(circle at top right, rgba(255, 171, 97, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(20, 26, 38, 0.98), rgba(10, 14, 22, 0.98));
}

.wizard-result-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 56%),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.wizard-result-media--row {
  aspect-ratio: 16 / 10;
  min-height: 240px;
}

.wizard-result-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 240px;
  object-fit: contain;
}

.wizard-result-fallback {
  min-height: 200px;
}

.wizard-result-row-main {
  gap: 16px;
}

.wizard-result-row-head {
  grid-template-columns: 1fr;
  gap: 14px;
}

.wizard-result-row-head h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.68rem);
  line-height: 1.18;
}

.wizard-result-row-head p {
  font-size: 0.98rem;
  line-height: 1.72;
}

.wizard-result-price-block {
  display: grid;
  justify-content: start;
  gap: 6px;
}

.wizard-result-price-block strong {
  font-size: 1.58rem;
}

.wizard-result-meta {
  gap: 10px;
  font-size: 0.9rem;
}

.wizard-result-meta span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.wizard-result-cta {
  margin-top: 4px;
}

.wizard-result-cta .wizard-primary-btn {
  width: auto;
  min-width: 160px;
}

.wizard-side-card--mount {
  max-width: 760px;
  margin: 0 auto;
}

.wizard-actions--results {
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 900px) {
  .wizard-shell--results {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard-main--results {
    max-width: none;
  }

  .wizard-results {
    gap: 24px;
  }

  .wizard-results-list {
    grid-template-columns: 1fr;
  }

  .wizard-result-row {
    padding: 22px;
  }

  .wizard-results-list > .wizard-result-row:first-child {
    padding-top: 22px;
  }
}

/* Hero results page: top recommendation first, supporting fits underneath. */
.wizard-results--story {
  max-width: 1320px;
  gap: 40px;
}

.wizard-results--story .wizard-results-head {
  max-width: 900px;
  gap: 0;
}

.wizard-chip-row--results-head {
  justify-content: center;
  margin-top: 18px;
}

.wizard-result-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 166, 95, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(18, 24, 36, 0.97), rgba(8, 11, 18, 0.98));
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.24);
}

.wizard-result-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.wizard-result-hero > .wizard-result-hero-media {
  order: 0;
}

.wizard-result-hero h3 {
  margin-top: 2px;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.wizard-result-hero-lead {
  margin: 0;
  color: var(--wizard-muted);
  font-size: 1.04rem;
  line-height: 1.82;
  max-width: 58ch;
}

.wizard-chip-row--hero {
  margin-top: -2px;
}

.wizard-result-meta--hero {
  gap: 12px;
}

.wizard-result-meta--hero span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.wizard-result-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.wizard-result-proof-card {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-result-proof-card--muted {
  background: rgba(255, 255, 255, 0.025);
}

.wizard-result-proof-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--wizard-muted);
}

.wizard-result-proof-list li {
  line-height: 1.7;
}

.wizard-result-hero-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.wizard-result-price-block--hero strong {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.wizard-result-hero-media {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.07), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.wizard-result-hero-media img,
.wizard-result-hero-media .wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-result-hero-media img {
  max-height: 390px;
  object-fit: contain;
}

.wizard-results-section {
  display: grid;
  gap: 24px;
}

.wizard-results-section-head {
  max-width: 900px;
}

.wizard-results-section-head h3 {
  margin-top: 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.wizard-results-section-head p {
  margin-top: 12px;
  color: var(--wizard-muted);
  line-height: 1.76;
}

.wizard-results-list--supporting {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}

.wizard-result-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 168, 97, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(15, 21, 34, 0.96), rgba(8, 12, 19, 0.98));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.wizard-result-card:hover,
.wizard-result-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 173, 102, 0.28);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.wizard-result-card-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.wizard-result-card-media img,
.wizard-result-card-media .wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-result-card-media img {
  max-height: 250px;
  object-fit: contain;
}

.wizard-result-card-copy {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 14px;
  min-width: 0;
}

.wizard-result-card-copy h3 {
  font-size: clamp(1.22rem, 1.5vw, 1.42rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.wizard-result-card-copy p {
  color: var(--wizard-muted);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.wizard-chip-row--card {
  margin-top: -2px;
}

.wizard-result-reasons {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--wizard-muted);
}

.wizard-result-reasons li {
  line-height: 1.66;
}

.wizard-result-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.wizard-result-card-footer .wizard-primary-btn {
  width: auto;
  min-width: 152px;
}

.wizard-side-card--mount {
  max-width: 1320px;
}

@media (max-width: 1100px) {
  .wizard-results--story {
    max-width: 1120px;
  }

  .wizard-result-hero-media {
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .wizard-results--story {
    gap: 28px;
  }

  .wizard-chip-row--results-head {
    justify-content: flex-start;
  }

  .wizard-results--story .wizard-results-head {
    text-align: left;
    margin: 0;
  }

  .wizard-result-hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px;
    gap: 22px;
  }

  .wizard-result-hero > .wizard-result-hero-media {
    order: -1;
  }

  .wizard-result-hero h3 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .wizard-result-hero-media {
    padding: 20px;
  }

  .wizard-result-card {
    padding: 22px;
  }

  .wizard-result-card-footer .wizard-primary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Final results override: full-width recommendation rows, not boxed grid tiles. */
.wizard-shell--results {
  width: min(100%, 1440px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

.wizard-main--results,
.wizard-results--story,
.wizard-side-card--mount {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-results--story {
  width: 100%;
  gap: 34px;
}

.wizard-results--story .wizard-results-head,
.wizard-results-section-head {
  max-width: 1040px;
}

.wizard-result-hero {
  width: 100%;
  grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
  gap: 32px;
  padding: 32px;
}

.wizard-result-hero-media {
  min-height: 440px;
}

.wizard-result-hero-media img {
  max-height: 410px;
}

.wizard-results-list--supporting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.wizard-result-card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
  padding: 26px 28px;
  border-radius: 28px;
}

.wizard-result-card-media {
  width: 100%;
  min-height: 300px;
  padding: 26px;
}

.wizard-result-card-media img {
  max-height: 290px;
}

.wizard-result-card-copy {
  grid-template-rows: auto auto auto auto 1fr auto;
  align-content: start;
  gap: 16px;
  width: 100%;
}

.wizard-result-card-copy h3 {
  font-size: clamp(1.34rem, 1.8vw, 1.72rem);
  line-height: 1.18;
  max-width: none;
}

.wizard-result-card-copy p,
.wizard-result-reasons li {
  font-size: 1rem;
  line-height: 1.7;
}

.wizard-result-card-copy p,
.wizard-result-reasons,
.wizard-chip-row--card,
.wizard-result-card-footer {
  max-width: none;
}

.wizard-result-card-footer {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .wizard-shell--results {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard-main--results,
  .wizard-results--story,
  .wizard-side-card--mount {
    max-width: none;
  }

  .wizard-result-hero,
  .wizard-result-card {
    grid-template-columns: 1fr;
  }

  .wizard-result-hero > .wizard-result-hero-media {
    order: -1;
  }
}

/* Results redesign: website-style hero plus full-width product listings. */
.wizard-shell--results {
  width: min(100%, 1480px);
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(28px, 4vw, 72px);
  padding-right: clamp(28px, 4vw, 72px);
}

.wizard-main--results,
.wizard-results--story,
.wizard-side-card--mount {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-results--story {
  gap: 32px;
}

.wizard-results--story .wizard-results-head {
  max-width: 980px;
  margin: 0;
  text-align: left;
}

.wizard-results--story .wizard-results-head p {
  margin-left: 0;
  margin-right: 0;
  max-width: 72ch;
}

.wizard-chip-row--results-head {
  justify-content: flex-start;
}

.wizard-result-hero {
  width: 100%;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  gap: 36px;
  padding: 34px;
}

.wizard-result-hero-copy {
  gap: 20px;
}

.wizard-result-hero-media {
  min-height: 440px;
  padding: 32px;
}

.wizard-result-hero-media img {
  max-height: 410px;
}

.wizard-result-proof-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.wizard-results-section {
  gap: 18px;
}

.wizard-results-section-head {
  max-width: 980px;
}

.wizard-results-list--supporting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.wizard-result-listing {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 168, 97, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(14, 21, 35, 0.97), rgba(8, 12, 19, 0.985));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.wizard-result-listing-media {
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.wizard-result-listing-media img,
.wizard-result-listing-media .wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-result-listing-media img {
  max-height: 240px;
  object-fit: contain;
}

.wizard-result-listing-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
  align-content: start;
  grid-template-rows: auto auto auto auto;
}

.wizard-result-listing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.wizard-result-listing-head h3 {
  margin-top: 8px;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.wizard-result-listing-head p {
  margin-top: 10px;
  color: var(--wizard-muted);
  font-size: 1rem;
  line-height: 1.72;
  max-width: none;
}

.wizard-chip-row--listing {
  margin-top: 2px;
}

.wizard-result-reasons--listing {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--wizard-muted);
}

.wizard-result-reasons--listing li {
  font-size: 0.98rem;
  line-height: 1.68;
}

.wizard-result-meta--listing {
  gap: 10px;
}

.wizard-result-meta--listing span {
  min-height: 34px;
  padding: 8px 12px;
}

.wizard-result-price-block--listing {
  display: grid;
  justify-items: end;
  gap: 6px;
  align-self: start;
}

.wizard-result-price-block--listing strong {
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.wizard-result-price-block--listing span {
  color: var(--wizard-soft);
  font-weight: 700;
  text-decoration: line-through;
}

.wizard-result-listing-actions {
  margin-top: 4px;
}

.wizard-result-listing-actions .wizard-primary-btn {
  min-width: 170px;
  justify-content: center;
}

.wizard-actions--results {
  width: 100%;
  max-width: 1280px;
  margin: 8px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  justify-content: space-between;
}

@media (max-width: 1180px) {
  .wizard-result-listing {
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  }

  .wizard-result-listing-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wizard-result-price-block--listing {
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .wizard-shell--results {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard-main--results,
  .wizard-results--story,
  .wizard-side-card--mount,
  .wizard-actions--results {
    max-width: none;
  }

  .wizard-result-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .wizard-result-hero > .wizard-result-hero-media {
    order: -1;
  }

  .wizard-result-listing {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .wizard-result-listing-media {
    min-height: 280px;
  }

  .wizard-result-listing-media img {
    max-height: 260px;
  }

  .wizard-result-listing-actions .wizard-primary-btn {
    width: 100%;
  }

  .wizard-actions--results {
    justify-content: stretch;
  }

  .wizard-actions--results .wizard-primary-btn,
  .wizard-actions--results .wizard-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Final results rebuild: dedicated showcase/listing layout with no legacy card squeeze. */
.wizard-shell--results {
  width: min(100%, 1500px);
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(28px, 4vw, 72px);
  padding-right: clamp(28px, 4vw, 72px);
}

.wizard-main--results,
.wizard-results--story,
.wizard-side-card--mount,
.wizard-actions--results {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-results--story {
  gap: 28px;
}

.wizard-results--story .wizard-results-head {
  max-width: 980px;
  margin: 0;
  text-align: left;
}

.wizard-results--story .wizard-results-head p {
  margin-left: 0;
  margin-right: 0;
  max-width: 72ch;
}

.wizard-chip-row--results-head {
  justify-content: flex-start;
}

.wizard-showcase-hero {
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  width: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 166, 95, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(18, 24, 36, 0.97), rgba(8, 11, 18, 0.985));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.22);
}

.wizard-showcase-hero-media {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.wizard-showcase-hero-media img,
.wizard-showcase-hero-media .wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-showcase-hero-media img {
  max-height: 450px;
  object-fit: contain;
}

.wizard-showcase-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.wizard-showcase-hero-copy h3 {
  margin-top: 2px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.wizard-showcase-hero-lead {
  margin: 0;
  color: var(--wizard-muted);
  font-size: 1.04rem;
  line-height: 1.82;
  max-width: 66ch;
}

.wizard-chip-row--showcase,
.wizard-chip-row--listing {
  margin-top: 2px;
}

.wizard-result-meta--showcase,
.wizard-result-meta--listing {
  gap: 10px;
}

.wizard-result-meta--showcase span,
.wizard-result-meta--listing span {
  min-height: 34px;
  padding: 8px 12px;
}

.wizard-showcase-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.wizard-showcase-panel {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-showcase-panel--muted {
  background: rgba(255, 255, 255, 0.025);
}

.wizard-showcase-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--wizard-muted);
}

.wizard-showcase-list li {
  line-height: 1.7;
}

.wizard-showcase-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.wizard-result-price-block--showcase strong,
.wizard-result-price-block--listing strong {
  font-size: clamp(1.65rem, 2vw, 2rem);
}

.wizard-result-price-block--showcase span,
.wizard-result-price-block--listing span {
  color: var(--wizard-soft);
  font-weight: 700;
  text-decoration: line-through;
}

.wizard-results-section {
  gap: 18px;
}

.wizard-results-section-head {
  max-width: 980px;
}

.wizard-results-list--supporting {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.wizard-showcase-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  width: 100%;
  min-height: 100%;
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 168, 97, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(14, 21, 35, 0.97), rgba(8, 12, 19, 0.985));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
}

.wizard-showcase-listing-media {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.wizard-showcase-listing-media img,
.wizard-showcase-listing-media .wizard-result-fallback {
  width: 100%;
  height: 100%;
}

.wizard-showcase-listing-media img {
  max-height: 250px;
  object-fit: contain;
}

.wizard-showcase-listing-copy {
  display: grid;
  gap: 16px;
  min-width: 0;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
}

.wizard-showcase-listing-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.wizard-showcase-listing-head h3 {
  margin-top: 8px;
  font-size: clamp(1.28rem, 1.6vw, 1.6rem);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.wizard-showcase-listing-head p {
  margin-top: 10px;
  color: var(--wizard-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: none;
}

.wizard-showcase-list--listing li {
  font-size: 0.96rem;
  line-height: 1.66;
}

.wizard-showcase-listing-actions {
  margin-top: auto;
}

.wizard-showcase-listing-actions .wizard-primary-btn {
  min-width: 170px;
  justify-content: center;
}

.wizard-actions--results {
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  justify-content: space-between;
}

@media (max-width: 1180px) {
  .wizard-showcase-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .wizard-showcase-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wizard-results-list--supporting {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .wizard-result-price-block--listing {
    justify-items: start;
  }
}

@media (max-width: 980px) {
  .wizard-shell--results {
    width: 100%;
    max-width: none;
    padding-left: 18px;
    padding-right: 18px;
  }

  .wizard-main--results,
  .wizard-results--story,
  .wizard-side-card--mount,
  .wizard-actions--results {
    max-width: none;
  }

  .wizard-showcase-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .wizard-showcase-hero-media {
    min-height: 320px;
    padding: 22px;
  }

  .wizard-showcase-hero-media img {
    max-height: 280px;
  }

  .wizard-showcase-listing {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .wizard-results-list--supporting {
    grid-template-columns: 1fr;
  }

  .wizard-showcase-listing-media {
    min-height: 280px;
  }

  .wizard-showcase-listing-media img {
    max-height: 260px;
  }

  .wizard-showcase-listing-actions .wizard-primary-btn {
    width: 100%;
  }

  .wizard-actions--results {
    justify-content: stretch;
  }

  .wizard-actions--results .wizard-primary-btn,
  .wizard-actions--results .wizard-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}
