:root {
  --advisor-forest: #1f407c;
  --advisor-forest-deep: #0f264d;
  --advisor-navy: #1f407c;
  --advisor-navy-dark: #0f264d;
  --advisor-navy-soft: #edf2fa;
  --advisor-water: #2d6f86;
  --advisor-water-dark: #24586c;
  --advisor-water-soft: #eef7f9;
  --advisor-brass: #f37021;
  --advisor-brass-dark: #9a3e00;
  --advisor-brass-soft: #fff1e8;
  --advisor-sage: #2f6653;
  --advisor-sage-soft: #edf7f2;
  --advisor-paper: #f7f8fa;
  --advisor-surface: #ffffff;
  --advisor-ink: #14213a;
  --advisor-muted: #566579;
  --advisor-muted-strong: #334155;
  --advisor-line: #dde3ea;
  --advisor-line-strong: #c4cdd8;
  --advisor-control: #7f8c9f;
  --advisor-danger: #923b30;
  --advisor-brand: var(--advisor-navy);
  --advisor-brand-deep: var(--advisor-navy-dark);
  --advisor-brand-soft: var(--advisor-navy-soft);
  --advisor-accent: var(--advisor-brass);
  --advisor-accent-dark: var(--advisor-brass-dark);
  --advisor-accent-soft: var(--advisor-brass-soft);
  --advisor-success: var(--advisor-sage);
  --advisor-success-soft: var(--advisor-sage-soft);
  --advisor-radius-sm: 6px;
  --advisor-radius-md: 9px;
  --advisor-radius-lg: 13px;
  --advisor-shadow:
    0 0 0 1px rgba(15, 38, 77, .1),
    0 2px 8px rgba(15, 38, 77, .07);
  --advisor-focus: 0 0 0 2px #fff, 0 0 0 4px var(--advisor-accent-dark);
  --advisor-motion-fast: 150ms;
  --advisor-motion-state: 180ms;
  --advisor-motion-screen: 220ms;
  --advisor-ease-out: cubic-bezier(.22, 1, .36, 1);
}

@supports (color: oklch(50% .1 180)) {
  :root {
    --advisor-forest: oklch(from #1f407c l c h);
    --advisor-forest-deep: oklch(from #0f264d l c h);
    --advisor-navy: oklch(from #1f407c l c h);
    --advisor-navy-dark: oklch(from #0f264d l c h);
    --advisor-navy-soft: oklch(from #edf2fa l c h);
    --advisor-water: oklch(from #2d6f86 l c h);
    --advisor-water-dark: oklch(from #24586c l c h);
    --advisor-water-soft: oklch(from #eef7f9 l c h);
    --advisor-brass: oklch(from #f37021 l c h);
    --advisor-brass-dark: oklch(from #9a3e00 l c h);
    --advisor-brass-soft: oklch(from #fff1e8 l c h);
    --advisor-sage: oklch(from #2f6653 l c h);
    --advisor-sage-soft: oklch(from #edf7f2 l c h);
    --advisor-paper: oklch(from #f7f8fa l c h);
    --advisor-ink: oklch(from #14213a l c h);
    --advisor-muted: oklch(from #566579 l c h);
    --advisor-muted-strong: oklch(from #334155 l c h);
    --advisor-line: oklch(from #dde3ea l c h);
    --advisor-line-strong: oklch(from #c4cdd8 l c h);
    --advisor-control: oklch(from #7f8c9f l c h);
    --advisor-danger: oklch(from #923b30 l c h);
  }
}

.advisor-shell,
.advisor-shell *,
.advisor-shell *::before,
.advisor-shell *::after {
  box-sizing: border-box;
}

.advisor-shell {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  grid-template-columns: clamp(360px, 38vw, 680px) minmax(0, 1fr);
  min-height: 100dvh;
  overflow: hidden;
  background: var(--advisor-paper);
  color: var(--advisor-ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .3s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .3s;
}

.advisor-guide-link { margin: 12px 0; }
.advisor-guide-link a { display: inline-block; padding: 10px 0; min-height: 44px; color: var(--advisor-brand); text-underline-offset: 3px; }
.advisor-guide-link a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.advisor-shell h1,
.advisor-shell h2,
.advisor-shell h3 {
  text-wrap: balance;
}

.advisor-shell p,
.advisor-shell li,
.advisor-shell dd,
.advisor-shell figcaption {
  text-wrap: pretty;
}

.advisor-active .advisor-shell {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.advisor-active > .vis,
.advisor-active > .panel {
  display: none;
}

.advisor-shell button,
.advisor-shell input,
.advisor-shell select {
  font: inherit;
}

.advisor-visual {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 58%) minmax(250px, 42%);
  min-width: 0;
  overflow: hidden;
  background: var(--advisor-forest-deep);
  color: #fff;
}

.advisor-shell[data-screen='welcome'] .advisor-visual {
  grid-template-rows: minmax(0, 52%) minmax(365px, 48%);
}

.advisor-visual-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe8e2;
}

.advisor-visual-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .22s ease, transform .5s cubic-bezier(.22, 1, .36, 1);
}

.advisor-visual-proof {
  position: absolute;
  left: clamp(24px, 4vw, 56px);
  bottom: 28px;
  max-width: min(360px, calc(100% - 48px));
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--advisor-radius-md);
  background: rgba(15, 38, 77, .94);
  color: #fff;
  box-shadow: 0 2px 8px rgba(15, 38, 77, .22);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.advisor-visual-proof > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--advisor-accent);
}

.advisor-visual-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 38px clamp(30px, 4vw, 62px) 42px;
  background: var(--advisor-forest-deep);
}

.advisor-visual-copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(30px, 4vw, 62px);
  width: 54px;
  height: 3px;
  background: var(--advisor-brass);
}

.advisor-kicker,
.advisor-step-label,
.advisor-section-kicker {
  color: var(--advisor-water);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-kicker {
  color: var(--advisor-accent);
}

.advisor-visual-title {
  max-width: 420px;
  margin-top: 13px;
  color: #fff;
  font-size: 34px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.advisor-visual-text {
  max-width: 48ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.58;
}

.advisor-visual-meta {
  max-width: 52ch;
  margin: 19px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: var(--advisor-accent);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
}

.advisor-visual-trust {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-meta {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-trust {
  display: block;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.advisor-visual-expert {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.advisor-visual-expert-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: rgba(243, 112, 33, .14);
  color: var(--advisor-accent);
  box-shadow: inset 0 0 0 1px rgba(243, 112, 33, .22);
}

.advisor-visual-expert-icon svg {
  width: 21px;
  height: 21px;
}

.advisor-visual-expert strong,
.advisor-visual-expert small,
.advisor-visual-facts strong,
.advisor-visual-facts small {
  display: block;
}

.advisor-visual-expert strong {
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.advisor-visual-expert small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 11.5px;
  line-height: 1.4;
}

.advisor-visual-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.advisor-visual-facts > span {
  min-width: 0;
  padding-right: 12px;
}

.advisor-visual-facts > span + span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.advisor-visual-facts strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.advisor-visual-facts small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: 10.5px;
  line-height: 1.35;
  text-wrap: pretty;
}

.advisor-panel {
  min-width: 0;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--advisor-surface);
}

.advisor-header {
  position: relative;
  z-index: 3;
  padding: 18px 32px 0;
  border-bottom: 1px solid var(--advisor-line);
  background: rgba(255, 255, 255, .98);
}

.advisor-header-row {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.advisor-brand {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.advisor-brand-logo {
  width: 110px;
  height: auto;
  display: block;
}

.advisor-help {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--advisor-line-strong);
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), border-color .18s ease, background-color .18s ease, color .18s ease;
}

.advisor-progress {
  margin-top: 15px;
  padding-bottom: 11px;
}

.advisor-shell[data-screen='welcome'] .advisor-progress {
  display: none;
}

.advisor-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.3;
}

.advisor-progress-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.advisor-progress-stages--direct {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advisor-progress-stage {
  min-width: 0;
  padding: 0 8px 8px;
  border-bottom: 2px solid var(--advisor-line);
  color: var(--advisor-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
  text-align: left;
  transition: border-color .2s ease, color .2s ease;
}

.advisor-progress-stage:first-child {
  padding-left: 0;
}

.advisor-progress-stage.is-current {
  border-bottom-width: 3px;
  border-bottom-color: var(--advisor-accent-dark);
  color: var(--advisor-navy-dark);
  font-weight: 780;
}

.advisor-progress-stage.is-done {
  border-bottom-color: var(--advisor-navy);
  color: var(--advisor-navy);
}

.advisor-progress-track {
  display: none;
}

.advisor-body {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: var(--advisor-surface);
}

.advisor-screen {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 42px 46px 48px;
}

.advisor-shell[data-screen='results'] .advisor-screen,
.advisor-shell[data-screen='direct'] .advisor-screen {
  width: min(1060px, 100%);
}

.advisor-shell[data-screen='welcome'] .advisor-screen {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.advisor-step-label {
  margin-bottom: 13px;
}

.advisor-title {
  max-width: 780px;
  margin: 0;
  color: var(--advisor-forest);
  font-size: 40px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.advisor-title-accent {
  color: inherit;
}

.advisor-subtitle {
  max-width: 68ch;
  margin: 15px 0 0;
  color: var(--advisor-muted);
  font-size: 15px;
  line-height: 1.62;
}

.advisor-button,
.advisor-info-button,
.advisor-direct-main,
.advisor-more {
  min-height: 46px;
  border-radius: var(--advisor-radius-sm);
  font-weight: 750;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), border-color .18s ease, background-color .18s ease, color .18s ease;
}

.advisor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--advisor-forest);
  background: var(--advisor-forest);
  color: #fff;
  font-size: 12px;
}

.advisor-button:not(.advisor-button--secondary):not(.advisor-button--text) > span,
.advisor-direct-main > span {
  color: var(--advisor-accent);
}

.advisor-button:disabled {
  border-color: var(--advisor-line);
  background: #e8ecf1;
  color: #6f7b8b;
  cursor: not-allowed;
}

.advisor-button--secondary {
  border-color: var(--advisor-control);
  background: #fff;
  color: var(--advisor-forest);
}

.advisor-button--text {
  min-height: 44px;
  padding-inline: 10px;
  border-color: transparent;
  background: transparent;
  color: var(--advisor-muted-strong);
}

.advisor-info-button {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--advisor-control);
  background: #fff;
  color: var(--advisor-muted-strong);
  font-size: 12px;
}

.advisor-info-button--inline {
  white-space: nowrap;
}

.advisor-direct-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--advisor-forest);
  background: var(--advisor-forest);
  color: #fff;
  font-size: 12px;
}

.advisor-more {
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--advisor-control);
  background: #fff;
  color: var(--advisor-forest);
  font-size: 12px;
}

.advisor-button:active,
.advisor-info-button:active,
.advisor-direct-main:active,
.advisor-more:active,
.advisor-google-link:active {
  transform: scale(.96);
}

.advisor-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.advisor-welcome-actions .advisor-button {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 13.5px;
}

.advisor-button-icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.advisor-button-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.advisor-welcome-start-note {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}

.advisor-welcome-start-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--advisor-sage);
}

.advisor-google-proof {
  display: grid;
  grid-template-columns: minmax(140px, .75fr) minmax(0, 1.6fr) minmax(150px, .75fr);
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border: 0;
  border-radius: var(--advisor-radius-md);
  background: #fff;
  box-shadow: var(--advisor-shadow);
}

.advisor-google-score {
  min-width: 0;
}

.advisor-google-stars,
.advisor-google-score-value {
  display: flex;
  align-items: center;
}

.advisor-google-stars {
  width: max-content;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  color: var(--advisor-brass-dark);
  line-height: 0;
}

.advisor-google-stars svg {
  display: block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke-width: 1.25;
}

.advisor-google-score-value {
  gap: 7px;
  margin-top: 5px;
}

.advisor-google-score-value strong {
  color: var(--advisor-forest);
  font-size: 23px;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.advisor-google-score-value small {
  color: var(--advisor-muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.advisor-google-quote {
  min-width: 0;
  margin: 0;
  padding: 0 20px;
  border-left: 1px solid var(--advisor-line);
  border-right: 1px solid var(--advisor-line);
}

.advisor-google-quote blockquote {
  margin: 0;
  color: var(--advisor-forest);
  font-size: 12.5px;
  font-weight: 680;
  line-height: 1.45;
  text-wrap: pretty;
}

.advisor-google-quote figcaption {
  margin-top: 5px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.35;
}

.advisor-google-link {
  min-width: 0;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 20px;
  color: var(--advisor-forest);
  text-decoration: none;
  transition: color .18s ease, transform .18s cubic-bezier(.22, 1, .36, 1);
}

.advisor-google-link strong,
.advisor-google-link > span {
  display: block;
}

.advisor-google-link strong {
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.advisor-google-link > span {
  margin-top: 5px;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
}

.advisor-welcome-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-lg);
  background: #fbfdfc;
}

.advisor-welcome-path > div {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 19px 17px 18px;
  background: rgba(255, 255, 255, .72);
}

.advisor-welcome-path > div:nth-child(1) {
  box-shadow: inset 0 3px 0 rgba(26, 66, 104, .45);
}

.advisor-welcome-path > div:nth-child(2) {
  box-shadow: inset 0 3px 0 rgba(49, 135, 154, .45);
}

.advisor-welcome-path > div:nth-child(3) {
  box-shadow: inset 0 3px 0 rgba(209, 132, 56, .5);
}

.advisor-welcome-path > div + div {
  border-left: 1px solid var(--advisor-line);
}

.advisor-welcome-path > div:nth-child(1),
.advisor-welcome-path > div:nth-child(2),
.advisor-welcome-path > div:nth-child(3) {
  background: transparent;
  box-shadow: none;
}

.advisor-welcome-path strong {
  margin-bottom: 2px;
  color: var(--advisor-brass-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.advisor-welcome-path-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-navy-soft);
  color: var(--advisor-navy);
}

.advisor-welcome-path > div:nth-child(2) .advisor-welcome-path-icon {
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-welcome-path > div:nth-child(3) .advisor-welcome-path-icon {
  background: var(--advisor-brass-soft);
  color: var(--advisor-brass-dark);
}

.advisor-welcome-path-icon svg {
  width: 20px;
  height: 20px;
}

.advisor-welcome-path > div:nth-child(1) strong {
  color: var(--advisor-navy);
}

.advisor-welcome-path > div:nth-child(2) strong {
  color: var(--advisor-water-dark);
}

.advisor-welcome-path > div:nth-child(3) strong {
  color: var(--advisor-brass-dark);
}

.advisor-welcome-path b,
.advisor-welcome-path small {
  display: block;
}

.advisor-welcome-path b {
  color: var(--advisor-forest);
  font-size: 13.5px;
  font-weight: 780;
  line-height: 1.25;
}

.advisor-welcome-path small {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.advisor-welcome-assurance {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-sage-soft);
  color: var(--advisor-muted-strong);
}

.advisor-welcome-assurance-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-brand);
}

.advisor-welcome-assurance-icon svg {
  width: 21px;
  height: 21px;
}

.advisor-welcome-assurance strong,
.advisor-welcome-assurance small {
  display: block;
}

.advisor-welcome-assurance strong {
  color: var(--advisor-forest);
  font-size: 13.5px;
  font-weight: 780;
  line-height: 1.35;
}

.advisor-welcome-assurance small {
  margin-top: 3px;
  color: var(--advisor-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.advisor-resume {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid var(--advisor-line-strong);
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-brand-soft);
  color: var(--advisor-muted-strong);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-resume button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 11px;
  border: 1px solid var(--advisor-brand);
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-brand);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), border-color .18s ease, background-color .18s ease;
}

.advisor-choice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 27px;
}

.advisor-choice {
  --advisor-choice-accent: var(--advisor-water-dark);
  --advisor-choice-soft: var(--advisor-water-soft);
  --advisor-choice-ink: var(--advisor-water-dark);
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 12px 13px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
  color: var(--advisor-ink);
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s cubic-bezier(.22, 1, .36, 1);
}

.advisor-choice.is-selected {
  border-color: var(--advisor-choice-accent);
  background: var(--advisor-choice-soft);
  box-shadow: inset 0 0 0 1px var(--advisor-choice-accent);
}

.advisor-choice-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-choice-soft);
  color: var(--advisor-choice-ink);
}

.advisor-choice.is-selected .advisor-choice-icon {
  background: #fff;
  color: var(--advisor-choice-ink);
}

.advisor-choice-icon svg {
  width: 21px;
  height: 21px;
}

.advisor-choice-copy,
.advisor-choice-title,
.advisor-choice-desc {
  display: block;
  min-width: 0;
}

.advisor-choice-title {
  color: var(--advisor-forest);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
}

.advisor-choice-desc {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.4;
}

.advisor-choice-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--advisor-control);
  border-radius: 50%;
  background: #fff;
}

.advisor-choice.is-selected .advisor-choice-check {
  position: relative;
  border-color: var(--advisor-choice-accent);
  background: var(--advisor-choice-accent);
}

.advisor-choice.is-selected .advisor-choice-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.advisor-hint {
  margin: 13px 0 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.advisor-legend {
  margin-bottom: 9px;
  color: var(--advisor-forest);
  font-size: 11px;
  font-weight: 780;
}

.advisor-pool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 28px;
}

.advisor-pool-controls {
  display: grid;
  align-content: start;
  gap: 24px;
}

.advisor-segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 3px;
  border: 1px solid var(--advisor-control);
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-paper);
}

.advisor-segmented button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 8px;
  border: 0;
  border-radius: var(--advisor-radius-sm);
  background: transparent;
  color: var(--advisor-muted-strong);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.advisor-segmented button.is-selected {
  background: var(--advisor-navy);
  color: #fff;
  box-shadow: 0 2px 5px rgba(10, 45, 76, .18);
  box-shadow: 0 2px 5px oklch(29% .07 250 / .18);
}

.advisor-segmented button > span {
  display: grid;
  place-items: center;
}

.advisor-segmented button svg {
  width: 17px;
  height: 17px;
}

.advisor-dimensions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 9px;
  align-items: end;
}

.advisor-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--advisor-muted-strong);
  font-size: 11px;
  font-weight: 700;
}

.advisor-input-wrap {
  position: relative;
}

.advisor-input-wrap input {
  width: 100%;
  height: 46px;
  padding: 0 36px 0 13px;
  border: 1px solid var(--advisor-control);
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-ink);
  font-size: 14px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  outline: none;
}

.advisor-input-wrap input[aria-invalid='true'] {
  border-color: var(--advisor-danger);
  box-shadow: 0 0 0 3px rgba(166, 72, 57, .12);
}

.advisor-input-unit {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--advisor-muted);
  font-size: 11px;
  transform: translateY(-50%);
}

.advisor-dim-x {
  padding-bottom: 14px;
  color: var(--advisor-muted);
  font-size: 14px;
}

.advisor-surface {
  margin-top: 9px;
  color: var(--advisor-water-dark);
  font-size: 11.5px;
  font-weight: 720;
  font-variant-numeric: tabular-nums;
}

.advisor-dimension-feedback {
  margin: -11px 0 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.advisor-dimension-feedback.is-error {
  color: var(--advisor-danger);
  font-weight: 700;
}

.advisor-pool-preview {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(180px, 1fr) auto;
  gap: 18px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-lg);
  background: #f3f8f7;
}

.advisor-pool-preview figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
}

.advisor-pool-preview figcaption > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-water-dark);
}

.advisor-pool-preview figcaption svg {
  width: 18px;
  height: 18px;
}

.advisor-pool-preview figcaption strong,
.advisor-pool-preview figcaption small,
.advisor-pool-preview > p strong,
.advisor-pool-preview > p span {
  display: block;
}

.advisor-pool-preview figcaption strong {
  color: var(--advisor-forest);
  font-size: 11px;
}

.advisor-pool-preview figcaption small {
  margin-top: 2px;
  color: var(--advisor-muted);
  font-size: 11px;
}

.advisor-pool-stage {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 26px 31px 32px;
}

.advisor-pool-shape {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 2 / 1;
  border: 5px solid #fff;
  border-radius: 9px;
  background: #9fd2dc;
  box-shadow: 0 0 0 1px #75aeba, inset 0 0 0 1px rgba(255, 255, 255, .5), 0 12px 24px rgba(36, 102, 116, .13);
}

.advisor-pool-shape--oval {
  border-radius: 50%;
}

.advisor-pool-shape--libre {
  border-radius: 43% 57% 39% 61% / 55% 38% 62% 45%;
}

.advisor-pool-length,
.advisor-pool-width {
  position: absolute;
  display: grid;
  gap: 1px;
  color: var(--advisor-muted-strong);
  text-align: center;
}

.advisor-pool-length {
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
}

.advisor-pool-width {
  top: 50%;
  right: -49px;
  transform: translateY(-50%);
}

.advisor-pool-length b,
.advisor-pool-width b {
  font-size: 11px;
  white-space: nowrap;
}

.advisor-pool-length small,
.advisor-pool-width small {
  color: var(--advisor-muted);
  font-size: 11px;
}

.advisor-pool-preview > p {
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-pool-preview > p strong {
  color: var(--advisor-forest);
  font-size: 11.5px;
}

.advisor-pool-preview > p span {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.advisor-results-head > div:first-child {
  min-width: 0;
}

.advisor-result-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
}

.advisor-results-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 29px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-paper);
}

.advisor-results-summary > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 15px 14px;
}

.advisor-results-summary > div:first-child {
  padding-left: 14px;
}

.advisor-results-summary > div + div {
  border-left: 1px solid var(--advisor-line);
}

.advisor-results-summary-copy {
  min-width: 0;
}

.advisor-results-summary-copy strong,
.advisor-results-summary-copy > span {
  display: block;
}

.advisor-results-summary-copy strong {
  color: var(--advisor-forest);
  font-size: 11.5px;
  font-weight: 780;
  line-height: 1.35;
}

.advisor-results-summary-copy > span {
  margin-top: 3px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.4;
}

.advisor-results-summary-icon,
.advisor-primary-fact-icon,
.advisor-decision-icon,
.advisor-family-story-fact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-results-summary-icon {
  width: 32px;
  height: 32px;
}

.advisor-results-summary-icon svg {
  width: 17px;
  height: 17px;
}

.advisor-primary-result {
  display: grid;
  grid-template-columns: minmax(260px, 40%) minmax(0, 1fr);
  margin-top: 28px;
  overflow: hidden;
  border: 0;
  border-radius: var(--advisor-radius-lg);
  background: #fff;
  box-shadow: var(--advisor-shadow);
}

.advisor-primary-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #dfe8e2;
  cursor: zoom-in;
}

.advisor-primary-media img,
.advisor-alternative-media img,
.advisor-direct-media img,
.advisor-family-media img,
.advisor-detail-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.advisor-primary-media img {
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}

.advisor-media-zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 38, 77, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--advisor-forest);
  box-shadow: 0 5px 16px rgba(15, 38, 77, .15);
  pointer-events: none;
  transition: transform .2s cubic-bezier(.22, 1, .36, 1), background-color .18s ease;
}

.advisor-media-note {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .94);
  color: var(--advisor-ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  pointer-events: none;
}

.advisor-media-zoom svg {
  width: 15px;
  height: 15px;
}

.advisor-primary-body {
  min-width: 0;
  padding: 27px 30px 24px;
}

.advisor-result-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.advisor-category-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-category-label svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.advisor-result-match {
  flex: 0 0 auto;
  padding: 5px 7px;
  border: 1px solid var(--advisor-line-strong);
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-muted-strong);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.25;
  white-space: nowrap;
}

.advisor-result-match--recommended,
.advisor-result-match--dimension-fit,
.advisor-result-match--compatible {
  border-color: #b9d2cd;
  background: #eef7f5;
  color: #285e52;
}

.advisor-result-match--recommended {
  border-color: #dfcaa0;
  border-color: oklch(84% .055 70);
  background: var(--advisor-brass-soft);
  color: var(--advisor-brass-dark);
}

.advisor-result-match--custom {
  border-color: var(--advisor-line-strong);
  background: #f1f3f6;
  color: var(--advisor-muted-strong);
}

.advisor-result-match--to-confirm {
  border-color: #d8dfe0;
  background: #f5f7f7;
  color: #5f6c6e;
}

.advisor-primary-body h2 {
  margin: 9px 0 0;
  color: var(--advisor-forest);
  font-size: 31px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.08;
}

.advisor-primary-lead {
  max-width: 56ch;
  margin: 10px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 13px;
  line-height: 1.52;
}

.advisor-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.advisor-benefits > span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid #d9e7e3;
  border-radius: var(--advisor-radius-sm);
  background: #f2f8f6;
  color: var(--advisor-muted-strong);
}

.advisor-benefits svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--advisor-water-dark);
}

.advisor-benefits b {
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
}

.advisor-primary-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 21px 0 0;
  border-top: 1px solid var(--advisor-line);
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-primary-facts > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: 9px;
  padding: 13px 14px 13px 0;
}

.advisor-primary-facts > div + div {
  padding-right: 0;
  padding-left: 14px;
  border-left: 1px solid var(--advisor-line);
}

.advisor-primary-facts dt {
  grid-column: 2;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-primary-facts dd {
  grid-column: 2;
  margin: 5px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-primary-fact-icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
}

.advisor-primary-fact-icon svg {
  width: 16px;
  height: 16px;
}

.advisor-primary-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 19px;
}

.advisor-primary-actions > div:first-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.advisor-primary-actions strong {
  color: var(--advisor-forest);
  font-size: 12px;
  line-height: 1.3;
}

.advisor-primary-actions > div:first-child span {
  color: var(--advisor-muted);
  font-size: 11px;
}

.advisor-result-buttons {
  display: flex;
  align-items: center;
  gap: 7px;
}

.advisor-primary-next {
  margin: 15px 0 0;
  padding: 13px 0 0 20px;
  border-top: 1px solid var(--advisor-line);
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-primary-next::before {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  margin: 0 8px 1px -20px;
  border: 2px solid var(--advisor-water);
  border-radius: 50%;
}

.advisor-primary-next strong {
  color: var(--advisor-muted-strong);
}

.advisor-alternatives {
  margin-top: 35px;
}

.advisor-alternatives-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.advisor-alternatives-head h2 {
  margin: 6px 0 0;
  color: var(--advisor-forest);
  font-size: 19px;
  font-weight: 760;
  line-height: 1.25;
}

.advisor-alternatives-head p {
  max-width: 320px;
  margin: 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-alternative-list {
  margin-top: 13px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-alternative {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) minmax(178px, auto);
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-alternative-media {
  position: relative;
  width: 108px;
  height: 82px;
  overflow: hidden;
  border: 0;
  border-radius: var(--advisor-radius-sm);
  padding: 0;
  background: #e2e9e5;
  cursor: zoom-in;
}

.advisor-alternative-copy {
  min-width: 0;
}

.advisor-alternative-copy h3 {
  margin: 6px 0 0;
  color: var(--advisor-forest);
  font-size: 15px;
  font-weight: 770;
  line-height: 1.25;
}

.advisor-alternative-copy p {
  max-width: 64ch;
  margin: 6px 0 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-alternative-copy .advisor-alternative-fit {
  color: var(--advisor-muted-strong);
}

.advisor-alternative-copy .advisor-alternative-check {
  margin-top: 7px;
  color: var(--advisor-muted);
}

.advisor-alternative-check strong {
  margin-right: 6px;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.advisor-alternative-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.advisor-alternative-actions > span {
  color: var(--advisor-muted-strong);
  font-size: 11px;
  font-weight: 720;
  text-align: right;
}

.advisor-alternative-actions > div {
  display: flex;
  gap: 6px;
}

.advisor-alternative-actions .advisor-button,
.advisor-alternative-actions .advisor-info-button {
  min-height: 40px;
  padding-inline: 11px;
  font-size: 11px;
}

.advisor-compare {
  margin-top: 32px;
  padding-top: 21px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-compare-title {
  margin: 0 0 14px;
  color: var(--advisor-forest);
  font-size: 18px;
  font-weight: 770;
  line-height: 1.3;
}

.advisor-compare table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.advisor-compare th,
.advisor-compare td {
  padding: 12px;
  border: 1px solid var(--advisor-line);
  color: var(--advisor-muted-strong);
  font-size: 11px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.advisor-compare th {
  background: var(--advisor-paper);
  color: var(--advisor-forest);
  font-weight: 780;
}

.advisor-compare th:first-child,
.advisor-compare td:first-child {
  width: 176px;
}

.advisor-compare-criterion {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--advisor-muted-strong);
  font-weight: 720;
}

.advisor-compare-criterion svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--advisor-water-dark);
}

.advisor-compare-mobile {
  display: none;
}

.advisor-result-media--fallback,
.advisor-direct-media--fallback,
.advisor-detail-media--fallback {
  display: grid;
  place-items: center;
  background: var(--advisor-paper);
}

.advisor-fallback-visual {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--advisor-water-dark);
}

.advisor-fallback-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: #fff;
}

.advisor-fallback-label {
  font-size: 11px;
  font-weight: 750;
}

.advisor-direct-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}

.advisor-direct-header > div {
  min-width: 0;
}

.advisor-direct-header .advisor-button {
  flex: 0 0 auto;
}

.advisor-family-list {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.advisor-family-item {
  display: grid;
  grid-template-columns: minmax(190px, 28%) minmax(0, 1fr) 160px;
  align-items: stretch;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
  transition: border-color .18s ease, transform .2s ease, box-shadow .2s ease;
}

.advisor-family-media {
  position: relative;
  min-width: 0;
  min-height: 188px;
  overflow: hidden;
  background: #e2e9e5;
}

.advisor-family-copy {
  min-width: 0;
  align-self: center;
  padding: 18px 21px;
}

.advisor-direct-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-direct-category svg {
  width: 17px;
  height: 17px;
}

.advisor-family-copy h2 {
  margin: 7px 0 0;
  color: var(--advisor-forest);
  font-size: 20px;
  font-weight: 770;
  line-height: 1.2;
}

.advisor-family-copy > p {
  margin: 6px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.5;
}

.advisor-family-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 13px 0 0;
  border-top: 1px solid var(--advisor-line);
}

.advisor-family-signals > div {
  min-width: 0;
  padding: 10px 11px 0 0;
}

.advisor-family-signals > div + div {
  padding-right: 0;
  padding-left: 11px;
  border-left: 1px solid var(--advisor-line);
}

.advisor-family-signals dt,
.advisor-family-signals dd {
  margin: 0;
}

.advisor-family-signals dt {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--advisor-water-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-family-signal-icon {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-family-signal-icon svg {
  width: 12px;
  height: 12px;
}

.advisor-family-signals dd {
  margin-top: 3px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.4;
}

.advisor-family-item > .advisor-direct-main {
  align-self: center;
  justify-self: end;
  width: calc(100% - 28px);
  margin-right: 14px;
}

.advisor-family-story {
  margin-top: 25px;
  padding: 18px 0;
  border-top: 1px solid var(--advisor-line);
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-family-story-lead {
  display: flex;
  align-items: center;
  gap: 12px;
}

.advisor-family-story-lead > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-family-story-lead > span svg {
  width: 22px;
  height: 22px;
}

.advisor-family-story-lead strong,
.advisor-family-story-lead p {
  display: block;
}

.advisor-family-story-lead strong {
  color: var(--advisor-forest);
  font-size: 12px;
}

.advisor-family-story-lead p {
  margin: 3px 0 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.advisor-family-story-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-family-story-facts > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-content: start;
  column-gap: 8px;
  padding: 13px 13px 0 0;
}

.advisor-family-story-facts > div + div {
  padding-left: 13px;
  border-left: 1px solid var(--advisor-line);
}

.advisor-family-story-facts strong,
.advisor-family-story-fact-copy {
  display: block;
}

.advisor-family-story-facts strong {
  align-self: center;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-family-story-fact-icon {
  width: 28px;
  height: 28px;
}

.advisor-family-story-fact-icon svg {
  width: 15px;
  height: 15px;
}

.advisor-family-story-fact-copy {
  grid-column: 1 / -1;
  margin-top: 7px;
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
  line-height: 1.45;
}

.advisor-family-story--shutters .advisor-family-story-facts {
  grid-template-columns: 1fr 1.15fr 1fr;
}

.advisor-family-story--bar-cover .advisor-family-story-lead > span {
  background: var(--advisor-brass-soft);
  color: #785c2b;
}

.advisor-family-story--deck {
  padding-top: 18px;
}

.advisor-height-scale {
  height: 70px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 16px;
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--advisor-line-strong);
}

.advisor-height-scale span {
  min-width: 92px;
  display: grid;
  place-items: end center;
  border: 1px solid #9db7ae;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: rgba(52, 127, 142, .08);
  color: var(--advisor-muted-strong);
  font-size: 11px;
  font-weight: 720;
}

.advisor-height-scale .is-low {
  height: 25px;
}

.advisor-height-scale .is-medium {
  height: 42px;
}

.advisor-height-scale .is-high {
  height: 62px;
}

.advisor-direct-groups {
  margin-top: 24px;
}

.advisor-direct-list {
  display: grid;
  gap: 9px;
}

.advisor-direct-item {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr) minmax(168px, auto);
  gap: 18px;
  align-items: center;
  min-height: 160px;
  padding: 10px;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.advisor-direct-item.advisor-family--mobile-deck,
.advisor-direct-item.advisor-family--bar-cover {
  grid-template-columns: minmax(220px, 34%) minmax(0, 1fr) minmax(180px, auto);
  min-height: 205px;
}

.advisor-direct-media {
  position: relative;
  width: 144px;
  height: 140px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--advisor-radius-sm);
  background: #e2e9e5;
}

button.advisor-direct-media {
  cursor: zoom-in;
}

button.advisor-direct-media img {
  transition: transform .24s cubic-bezier(.22, 1, .36, 1);
}

.advisor-family--mobile-deck > .advisor-direct-media,
.advisor-family--bar-cover > .advisor-direct-media {
  width: 100%;
  height: 185px;
}

.advisor-direct-copy {
  min-width: 0;
}

.advisor-direct-name,
.advisor-direct-desc {
  display: block;
}

.advisor-direct-name {
  margin-top: 7px;
  color: var(--advisor-forest);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.25;
}

.advisor-direct-desc {
  max-width: 62ch;
  margin-top: 6px;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.5;
}

.advisor-product-proof,
.advisor-primary-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--advisor-forest);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.4;
}

.advisor-product-proof {
  margin-top: 9px;
}

.advisor-primary-proof {
  margin: 12px 0 0;
}

.advisor-product-proof svg,
.advisor-primary-proof svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--advisor-water-dark);
}

.advisor-decision-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0 0;
  border-top: 1px solid var(--advisor-line);
}

.advisor-decision-facts > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: 7px;
  padding: 9px 9px 0 0;
}

.advisor-decision-facts > div + div {
  padding-right: 0;
  padding-left: 9px;
  border-left: 1px solid var(--advisor-line);
}

.advisor-decision-facts dt,
.advisor-decision-facts dd {
  margin: 0;
}

.advisor-decision-facts dt {
  grid-column: 2;
  color: var(--advisor-water-dark);
  font-size: 9.5px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-decision-facts dd {
  grid-column: 2;
  margin-top: 3px;
  color: var(--advisor-muted);
  font-size: 10.5px;
  line-height: 1.35;
}

.advisor-decision-icon {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.advisor-decision-icon svg {
  width: 13px;
  height: 13px;
}

.advisor-direct-buttons {
  display: grid;
  gap: 7px;
}

.advisor-direct-buttons .advisor-info-button,
.advisor-direct-buttons .advisor-direct-main {
  width: 100%;
}

.advisor-direct-notice {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #b8d3d1;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-water-soft);
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
  line-height: 1.5;
}

.advisor-footer {
  position: relative;
  z-index: 4;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 32px max(11px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--advisor-line);
  background: #fff;
  box-shadow: 0 -9px 22px rgba(15, 38, 77, .04);
}

.advisor-footer-note {
  max-width: 58ch;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-left: auto;
}

.advisor-footer-actions--direct {
  margin-left: 0;
}

.advisor-shell[data-screen='direct'] .advisor-footer {
  justify-content: flex-start;
}

.advisor-modal,
.advisor-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 9050;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 38, 77, .8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .2s;
}

.advisor-modal.is-open,
.advisor-detail-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.advisor-modal img {
  max-width: min(1180px, 92vw);
  max-height: 86dvh;
  display: block;
  object-fit: contain;
  border-radius: var(--advisor-radius-md);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.advisor-modal-close,
.advisor-detail-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: var(--advisor-forest-deep);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.advisor-modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
}

.advisor-detail-card {
  position: relative;
  width: min(1020px, 94vw);
  max-height: min(88dvh, 820px);
  display: grid;
  grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--advisor-radius-lg);
  background: #fff;
  box-shadow: 0 28px 78px rgba(0, 0, 0, .26);
}

.advisor-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: rgba(15, 38, 77, .12);
  background: rgba(255, 255, 255, .94);
  color: var(--advisor-forest);
  font-size: 21px;
}

.advisor-detail-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #e2e9e5;
}

.advisor-detail-body {
  min-width: 0;
  overflow-y: auto;
  padding: 34px 34px 28px;
  overscroll-behavior: contain;
}

.advisor-detail-topline {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  padding-right: 42px;
}

.advisor-detail-proof {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--advisor-forest);
  font-size: 10.5px;
  font-weight: 740;
  line-height: 1.35;
}

.advisor-detail-proof svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--advisor-water-dark);
}

.advisor-detail-title {
  margin: 9px 0 0;
  padding-right: 38px;
  color: var(--advisor-forest);
  font-size: 30px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.08;
}

.advisor-detail-lead {
  margin: 11px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
  line-height: 1.55;
}

.advisor-visual-expert small,
.advisor-visual-facts small {
  font-size: 11px;
}

.advisor-resume,
.advisor-resume button {
  font-size: 12px;
}

.advisor-footer-note {
  font-size: 11.5px;
}

.advisor-detail-benefits {
  margin-top: 15px;
}

.advisor-detail-decision {
  margin-top: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-detail-decision dd {
  color: var(--advisor-muted-strong);
  font-size: 11px;
}

.advisor-detail-section {
  margin-top: 19px;
  padding-top: 15px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-detail-section > strong,
.advisor-detail-fit > strong {
  display: block;
  color: var(--advisor-water-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-detail-section p {
  margin: 5px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.5;
}

.advisor-detail-section--notice {
  padding: 13px 14px;
  border: 1px solid #b8d3d1;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-water-soft);
}

.advisor-detail-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.advisor-detail-list li {
  position: relative;
  padding-left: 20px;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.48;
}

.advisor-detail-list li::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 2px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--advisor-water);
  border-bottom: 2px solid var(--advisor-water);
  transform: rotate(-45deg);
}

.advisor-detail-fit {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.advisor-detail-fit > strong {
  width: 100%;
}

.advisor-detail-fit > span {
  padding: 5px 7px;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-sm);
  color: var(--advisor-muted);
  font-size: 11px;
}

.advisor-detail-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-detail-offer strong,
.advisor-detail-offer small,
.advisor-detail-cta small {
  display: block;
}

.advisor-detail-offer strong {
  color: var(--advisor-forest);
  font-size: 12px;
  font-weight: 780;
}

.advisor-detail-offer small,
.advisor-detail-cta small {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.35;
}

.advisor-detail-cta {
  display: grid;
  justify-items: stretch;
  gap: 2px;
  text-align: center;
}

.advisor-entry-button {
  min-height: 40px;
  margin-left: auto;
  padding: 0 12px;
  border: 1px solid var(--advisor-brand);
  border-radius: var(--r, 5px);
  background: var(--advisor-brand);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), background-color .18s ease;
}

@media (max-width: 520px) {
  .advisor-entry-button {
    min-height: 44px;
    margin-left: 0;
    padding-inline: 10px;
  }
}

.guided-summary {
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid var(--advisor-line-strong);
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-brand-soft);
  color: var(--advisor-ink);
}

.guided-summary:focus-visible {
  outline: 0;
  border-color: var(--advisor-brand);
  box-shadow: 0 0 0 3px rgba(31, 64, 124, .14);
}

.guided-summary-kicker {
  color: var(--advisor-brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guided-summary-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 7px;
}

.guided-summary-title {
  color: var(--advisor-forest);
  font-size: 14px;
  font-weight: 780;
}

.guided-summary-meta,
.guided-summary-proof {
  margin-top: 5px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.48;
}

.guided-summary-proof {
  color: var(--advisor-muted-strong);
}

.guided-summary-row button {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 10px;
  border: 1px solid var(--advisor-control);
  border-radius: var(--advisor-radius-sm);
  background: #fff;
  color: var(--advisor-forest);
  font: inherit;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), border-color .18s ease, background-color .18s ease;
}

.advisor-help:active,
.advisor-resume button:active,
.advisor-entry-button:active,
.guided-summary-row button:active {
  transform: scale(.96);
}

.guided-summary-next {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--advisor-line);
}

.guided-summary-next strong {
  color: var(--advisor-brand);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guided-summary-next span {
  color: var(--advisor-muted-strong);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-input-wrap input:focus-visible,
.advisor-segmented button:focus-visible,
.advisor-choice:focus-visible,
.advisor-button:focus-visible,
.advisor-info-button:focus-visible,
.advisor-direct-main:focus-visible,
.advisor-more:focus-visible,
.advisor-help:focus-visible,
.advisor-brand:focus-visible,
.advisor-modal-close:focus-visible,
.advisor-detail-close:focus-visible,
.advisor-resume button:focus-visible,
.advisor-google-link:focus-visible,
.advisor-entry-button:focus-visible,
.guided-summary-row button:focus-visible,
.advisor-primary-media:focus-visible,
.advisor-alternative-media:focus-visible,
.advisor-direct-media:focus-visible {
  outline: 2px solid var(--advisor-accent-dark);
  outline-offset: 3px;
  box-shadow: var(--advisor-focus);
}

@media (hover: hover) {
  .advisor-help:hover,
  .advisor-button--secondary:hover,
  .advisor-info-button:hover,
  .advisor-more:hover {
    border-color: var(--advisor-brand);
    background: var(--advisor-brand-soft);
    color: var(--advisor-forest);
  }

  .advisor-button:not(:disabled):not(.advisor-button--secondary):not(.advisor-button--text):hover,
  .advisor-direct-main:not(:disabled):hover {
    border-color: var(--advisor-brand-deep);
    background: var(--advisor-brand-deep);
  }

  .advisor-button--text:hover {
    color: var(--advisor-brand);
  }

  .advisor-choice:hover {
    border-color: var(--advisor-brand);
  }

  .advisor-choice:hover {
    transform: translateY(-1px);
  }

  .advisor-primary-media:hover img {
    transform: scale(1.025);
  }

  .advisor-family-item:hover {
    border-color: var(--advisor-brand);
    transform: translateY(-1px);
  }

  .advisor-direct-item:hover {
    border-color: var(--advisor-brand);
  }

  button.advisor-direct-media:hover img {
    transform: scale(1.025);
  }

  button:hover > .advisor-media-zoom {
    transform: scale(1.08);
    background: #fff;
  }
}

@media (max-width: 1180px) {
  .advisor-shell {
    grid-template-columns: 330px minmax(0, 1fr);
  }

  .advisor-visual-copy {
    padding-inline: 30px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy {
    padding-block: 30px 28px;
  }

  .advisor-visual-expert strong,
  .advisor-visual-facts strong {
    font-size: 13px;
  }

  .advisor-visual-expert small {
    font-size: 11px;
  }

  .advisor-visual-facts small {
    font-size: 10px;
  }

  .advisor-visual-copy::before {
    left: 30px;
  }

  .advisor-visual-title {
    font-size: 29px;
  }

  .advisor-screen {
    padding-inline: 36px;
  }

  .advisor-title {
    font-size: 37px;
  }

  .advisor-primary-result {
    grid-template-columns: 245px minmax(0, 1fr);
  }

  .advisor-family-item {
    grid-template-columns: 180px minmax(0, 1fr) 160px;
  }

  .advisor-alternative {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .advisor-alternative-media {
    width: 96px;
  }

  .advisor-alternative-actions {
    grid-column: 2;
    justify-items: start;
  }
}

@media (min-width: 901px) and (max-width: 1080px) {
  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 0;
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 122px;
    height: 136px;
  }

  .advisor-direct-buttons {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.35fr;
  }
}

@media (max-width: 960px) {
  .advisor-shell {
    display: block;
    min-height: 100dvh;
    overflow-y: auto;
    background: #fff;
  }

  .advisor-visual {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual {
    height: 31dvh;
    min-height: 210px;
    display: block;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-media {
    height: 100%;
  }

  .advisor-visual-proof {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy {
    display: none;
  }

  .advisor-panel {
    height: 100dvh;
  }

  .advisor-shell[data-screen='welcome'] .advisor-panel {
    height: auto;
    min-height: 69dvh;
    overflow: visible;
  }

  .advisor-header {
    padding: 13px 20px 0;
  }

  .advisor-header-row {
    min-height: 36px;
  }

  .advisor-progress {
    margin-top: 11px;
    padding-bottom: 8px;
  }

  .advisor-progress-stages {
    display: none;
  }

  .advisor-progress-meta {
    margin-bottom: 0;
  }

  .advisor-progress-track {
    height: 2px;
    display: block;
    margin-top: 7px;
    overflow: hidden;
    background: var(--advisor-line);
  }

  .advisor-progress-fill {
    height: 100%;
    background: var(--advisor-accent-dark);
  }

  .advisor-screen,
  .advisor-shell[data-screen='results'] .advisor-screen,
  .advisor-shell[data-screen='direct'] .advisor-screen {
    padding: 31px 24px 38px;
  }

  .advisor-title {
    font-size: 34px;
  }

  .advisor-subtitle {
    font-size: 13.5px;
  }

  .advisor-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-pool-layout {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .8fr);
    gap: 22px;
  }

  .advisor-results-head,
  .advisor-direct-header {
    display: block;
  }

  .advisor-result-actions {
    margin-top: 17px;
  }

  .advisor-direct-header .advisor-button {
    margin-top: 12px;
  }

  .advisor-results-summary {
    margin-top: 23px;
  }

  .advisor-primary-result {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .advisor-primary-media {
    min-height: 230px;
    max-height: 290px;
  }

  .advisor-primary-body {
    padding: 22px;
  }

  .advisor-primary-body h2 {
    font-size: 27px;
  }

  .advisor-primary-actions {
    display: grid;
    align-items: stretch;
  }

  .advisor-primary-actions .advisor-result-buttons {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
  }

  .advisor-primary-actions .advisor-button,
  .advisor-primary-actions .advisor-info-button {
    width: 100%;
  }

  .advisor-family-item {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 0;
    padding: 10px;
  }

  .advisor-family-media {
    min-height: 142px;
    border-radius: var(--advisor-radius-sm);
  }

  .advisor-family-copy {
    padding: 4px 4px 4px 8px;
  }

  .advisor-family-item > .advisor-direct-main {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    margin: 0;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 0;
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 118px;
    height: 136px;
  }

  .advisor-direct-buttons {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.4fr;
  }

  .advisor-footer {
    padding-inline: 20px;
  }

  .advisor-detail-card {
    grid-template-columns: 36% minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .advisor-shell[data-screen='welcome'] .advisor-visual {
    height: 27dvh;
    min-height: 190px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-panel {
    min-height: 73dvh;
  }

  .advisor-screen,
  .advisor-shell[data-screen='results'] .advisor-screen,
  .advisor-shell[data-screen='direct'] .advisor-screen {
    padding: 28px 18px 34px;
  }

  .advisor-title {
    font-size: 31px;
  }

  .advisor-welcome-actions {
    display: grid;
  }

  .advisor-welcome-actions .advisor-button {
    width: 100%;
  }

  .advisor-welcome-start-note {
    min-height: 44px;
    margin-top: 12px;
    font-size: 12.5px;
  }

  .advisor-google-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    margin-top: 16px;
  }

  .advisor-google-score {
    grid-column: 1;
    grid-row: 1;
    padding-right: 12px;
  }

  .advisor-google-score-value strong {
    font-size: 21px;
  }

  .advisor-google-link {
    min-height: 52px;
    grid-column: 2;
    grid-row: 1;
    padding-left: 14px;
    border-left: 1px solid var(--advisor-line);
  }

  .advisor-google-quote {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 14px;
    padding: 14px 0 0;
    border-top: 1px solid var(--advisor-line);
    border-right: 0;
    border-left: 0;
  }

  .advisor-google-quote blockquote {
    font-size: 13px;
  }

  .advisor-google-quote figcaption {
    font-size: 12px;
  }

  .advisor-welcome-path {
    grid-template-columns: 1fr;
    margin-top: 29px;
  }

  .advisor-welcome-path > div,
  .advisor-welcome-path > div + div {
    padding: 14px 15px;
    border-left: 0;
  }

  .advisor-welcome-path > div + div {
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-welcome-path small {
    font-size: 13px;
  }

  .advisor-welcome-path b {
    font-size: 13.5px;
  }

  .advisor-welcome-assurance {
    align-items: flex-start;
    margin-top: 16px;
    padding: 13px;
  }

  .advisor-welcome-assurance strong {
    font-size: 14px;
  }

  .advisor-welcome-assurance small {
    font-size: 13px;
  }

  .advisor-choice-list {
    grid-template-columns: 1fr;
  }

  .advisor-choice {
    min-height: 78px;
  }

  .advisor-pool-layout {
    grid-template-columns: 1fr;
  }

  .advisor-pool-preview {
    grid-template-rows: auto minmax(165px, 1fr) auto;
  }

  .advisor-results-summary {
    grid-template-columns: 1fr 1fr;
  }

  .advisor-results-summary > div {
    padding: 12px 0;
  }

  .advisor-results-summary > div + div {
    padding-left: 12px;
  }

  .advisor-results-summary > div:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-primary-facts {
    grid-template-columns: 1fr;
  }

  .advisor-primary-facts > div,
  .advisor-primary-facts > div + div {
    padding: 12px 0;
    border-left: 0;
  }

  .advisor-primary-facts > div + div {
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-alternatives-head {
    display: block;
  }

  .advisor-alternatives-head p {
    margin-top: 7px;
  }

  .advisor-alternative {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 11px;
  }

  .advisor-alternative-media {
    width: 84px;
    height: 88px;
  }

  .advisor-alternative-actions {
    grid-column: 1 / -1;
    justify-items: stretch;
  }

  .advisor-alternative-actions > span {
    text-align: left;
  }

  .advisor-alternative-actions > div {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
  }

  .advisor-compare table {
    display: none;
  }

  .advisor-compare-mobile {
    display: grid;
    gap: 9px;
  }

  .advisor-compare-card {
    padding: 15px;
    border: 1px solid var(--advisor-line);
    border-radius: var(--advisor-radius-md);
    background: #fff;
  }

  .advisor-compare-card h3 {
    margin: 0;
    color: var(--advisor-forest);
    font-size: 14px;
    line-height: 1.3;
  }

  .advisor-compare-card p {
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 10px;
    margin: 10px 0 0;
    padding-top: 10px;
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-compare-card p > strong {
    display: flex;
    align-items: start;
    gap: 6px;
    color: var(--advisor-muted-strong);
    font-size: 11px;
    line-height: 1.4;
  }

  .advisor-compare-card p > strong svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    color: var(--advisor-water-dark);
  }

  .advisor-compare-card p > span {
    color: var(--advisor-muted);
    font-size: 11.5px;
    line-height: 1.45;
  }

  .advisor-family-item {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .advisor-family-media {
    min-height: 116px;
  }

  .advisor-family-copy h2 {
    font-size: 16px;
  }

  .advisor-family-copy > p {
    font-size: 11.5px;
  }

  .advisor-family-signals dd {
    font-size: 10.5px;
  }

  .advisor-family-story-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advisor-family-story-facts > div,
  .advisor-family-story-facts > div + div {
    padding: 10px 8px 0;
    border-top: 0;
  }

  .advisor-family-story-facts > div + div {
    border-left: 1px solid var(--advisor-line);
  }

  .advisor-family-story-facts strong {
    font-size: 9.5px;
  }

  .advisor-family-story-fact-copy {
    font-size: 10.5px;
  }

  .advisor-height-scale span {
    min-width: 0;
    flex: 1;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 96px;
    height: 126px;
  }

  .advisor-detail-modal {
    align-items: end;
    padding: 0;
  }

  .advisor-detail-card {
    width: 100%;
    max-height: 92dvh;
    grid-template-columns: 1fr;
    border-radius: var(--advisor-radius-lg) var(--advisor-radius-lg) 0 0;
  }

  .advisor-detail-media {
    min-height: 190px;
    max-height: 240px;
  }

  .advisor-detail-body {
    padding: 25px 20px max(24px, env(safe-area-inset-bottom));
  }

  .advisor-detail-title {
    font-size: 25px;
  }

  .advisor-footer {
    min-height: 62px;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
  }

  .advisor-footer-note {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-footer {
    display: none;
  }

  .advisor-footer-actions {
    width: 100%;
  }

  .advisor-footer-actions .advisor-button:last-child {
    flex: 1;
  }

  .advisor-footer .advisor-button {
    min-height: 44px;
    padding-inline: 14px;
  }

  .guided-summary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .guided-summary-row button {
    justify-self: end;
  }

  .guided-summary-next {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 430px) {
  .advisor-header {
    padding-inline: 15px;
  }

  .advisor-brand-logo {
    width: 98px;
  }

  .advisor-title {
    font-size: 28px;
  }

  .advisor-subtitle {
    font-size: 13px;
  }

  .advisor-primary-body {
    padding: 19px 16px;
  }

  .advisor-pool-preview {
    grid-template-rows: auto minmax(112px, 1fr) auto;
    gap: 12px;
    padding: 14px;
  }

  .advisor-pool-stage {
    min-height: 112px;
    padding: 16px 28px 26px;
  }

  .advisor-primary-actions .advisor-result-buttons,
  .advisor-alternative-actions > div {
    grid-template-columns: 1fr;
  }

  .advisor-direct-buttons {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }

  .advisor-family-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
  }

  .advisor-family-media {
    min-height: 108px;
  }

  .advisor-family-copy {
    padding-left: 2px;
  }

  .advisor-family-copy > p {
    display: block;
  }

  .advisor-family-story-facts > div {
    grid-template-columns: 1fr;
    grid-template-rows: 22px auto auto;
    row-gap: 3px;
  }

  .advisor-family-story-fact-icon {
    grid-row: 1;
    width: 22px;
    height: 22px;
  }

  .advisor-family-story-fact-icon svg {
    width: 13px;
    height: 13px;
  }

  .advisor-family-story-facts strong {
    grid-row: 2;
  }

  .advisor-family-story-fact-copy {
    grid-row: 3;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 11px;
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 84px;
    height: 112px;
  }

  .advisor-direct-media .advisor-media-zoom,
  .advisor-alternative-media .advisor-media-zoom {
    right: 5px;
    bottom: 5px;
    width: 26px;
    height: 26px;
  }

  .advisor-direct-media .advisor-media-zoom svg,
  .advisor-alternative-media .advisor-media-zoom svg {
    width: 13px;
    height: 13px;
  }

  .advisor-model-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-model-facts > div:nth-child(3) {
    display: grid;
    grid-column: 1 / -1;
    margin-top: 8px;
    padding: 8px 0 0;
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-decision-facts > div {
    grid-template-columns: 1fr;
    grid-template-rows: 20px auto auto;
    row-gap: 3px;
  }

  .advisor-decision-icon {
    grid-row: 1;
    width: 20px;
    height: 20px;
  }

  .advisor-decision-icon svg {
    width: 12px;
    height: 12px;
  }

  .advisor-decision-facts dt,
  .advisor-decision-facts dd {
    grid-column: 1;
  }

  .advisor-decision-facts dt {
    grid-row: 2;
  }

  .advisor-decision-facts dd {
    grid-row: 3;
  }

  .advisor-direct-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .advisor-compare-card p {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .advisor-detail-footer {
    display: grid;
  }

  .advisor-detail-cta {
    width: 100%;
  }

  .advisor-detail-footer .advisor-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-shell,
  .advisor-shell *,
  .advisor-shell *::before,
  .advisor-shell *::after {
    scroll-behavior: auto;
    transition-duration: .01ms;
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }
}

/* World-class experience V31 - shared brand welcome direction. */
:root {
  --dk-navy: #0f264d;
  --dk-blue: #1f407c;
  --dk-orange: #f37021;
  --dk-ink: #172033;
  --dk-muted: #526173;
  --dk-surface: #ffffff;
  --dk-surface-soft: #f5f7fa;
  --dk-line: #dce2ea;
  --dk-success: #16803c;
  --dk-space-1: .25rem;
  --dk-space-2: .5rem;
  --dk-space-3: .75rem;
  --dk-space-4: 1rem;
  --dk-space-6: 1.5rem;
  --dk-space-8: 2rem;
  --dk-space-12: 3rem;
  --dk-radius-sm: 6px;
  --dk-radius-md: 10px;
  --dk-ease: cubic-bezier(.22, 1, .36, 1);
}

.advisor-shell {
  grid-template-columns: minmax(25rem, 42vw) minmax(0, 1fr);
  background: var(--dk-surface-soft);
  color: var(--dk-ink);
  font-kerning: normal;
}

.advisor-shell[data-screen='welcome'] .advisor-visual {
  grid-template-rows: minmax(0, 60%) minmax(18rem, 40%);
  background: var(--dk-navy);
}

.advisor-shell[data-screen='welcome'] .advisor-visual-media::after {
  content: '';
  position: absolute;
  inset: 48% 0 0;
  background: rgba(15, 38, 77, .08);
  pointer-events: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-proof,
.advisor-shell[data-screen='welcome'] .advisor-visual-families {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--dk-space-3);
  padding: var(--dk-space-8) clamp(2rem, 3.5vw, 3.5rem);
}

.advisor-shell[data-screen='welcome'] .advisor-visual-welcome-kicker {
  color: #b7dbea;
  font-size: .75rem;
  letter-spacing: .04em;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-welcome-title {
  max-width: 15ch;
  color: #fff;
  font-size: 2.125rem;
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-welcome-text {
  max-width: 34rem;
  color: rgba(255, 255, 255, .84);
  font-size: 1rem;
  line-height: 1.55;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-trust {
  margin-top: var(--dk-space-3);
  padding-top: var(--dk-space-4);
  border-top-color: rgba(255, 255, 255, .2);
}

.advisor-shell[data-screen='welcome'] .advisor-panel {
  background: var(--dk-surface);
}

.advisor-shell[data-screen='welcome'] .advisor-header {
  min-height: 5.5rem;
  padding-inline: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--dk-line);
}

.advisor-shell[data-screen='welcome'] .advisor-header-row {
  min-height: 5.5rem;
}

.advisor-shell[data-screen='welcome'] .advisor-body {
  background: var(--dk-surface);
}

.advisor-shell[data-screen='welcome'] .advisor-screen {
  max-width: 62rem;
  padding: clamp(2.5rem, 5vh, 4.75rem) clamp(2rem, 4vw, 4rem) 4rem;
}

.advisor-shell[data-screen='welcome'] .advisor-step-label {
  margin-bottom: var(--dk-space-3);
  color: var(--dk-blue);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.advisor-shell[data-screen='welcome'] .advisor-title {
  max-width: 18ch;
  color: var(--dk-navy);
  font-size: 2.75rem;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -.03em;
}

.advisor-shell[data-screen='welcome'] .advisor-subtitle {
  max-width: 42rem;
  margin-top: var(--dk-space-4);
  color: var(--dk-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
  gap: var(--dk-space-3);
  margin-top: var(--dk-space-6);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button {
  min-height: 3.5rem;
  padding-inline: 1.5rem;
  border-radius: var(--dk-radius-sm);
  font-size: .9375rem;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button:first-child {
  background: var(--dk-navy);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button--secondary {
  border-color: #7f91a7;
  color: var(--dk-navy);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance {
  margin-top: var(--dk-space-6);
  padding-block: var(--dk-space-4);
  border-block: 1px solid var(--dk-line);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span {
  min-width: 0;
  padding-inline: var(--dk-space-4);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span:first-child {
  padding-left: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance b {
  color: var(--dk-navy);
  font-size: .8125rem;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance small {
  color: var(--dk-muted);
  font-size: .75rem;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path {
  margin-top: var(--dk-space-6);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div,
.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
  min-height: 3.5rem;
  padding-inline: var(--dk-space-4);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div:first-child {
  padding-left: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path-index {
  width: 2rem;
  height: 2rem;
  background: var(--dk-blue);
  color: #fff;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path b {
  color: var(--dk-navy);
  font-size: .8125rem;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path small {
  color: var(--dk-muted);
  font-size: .75rem;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
  gap: 0;
  margin-top: var(--dk-space-8);
  border-block: 1px solid var(--dk-line);
  background: var(--dk-surface-soft);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance,
.advisor-shell[data-screen='welcome'] .advisor-google-proof {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.advisor-welcome-products {
  margin-top: var(--dk-space-8);
}

@media (max-width: 960px) {
  .advisor-shell {
    grid-template-columns: 1fr;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual {
    display: grid;
    min-height: 12rem;
    grid-template-rows: 12rem;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-media {
    min-height: 12rem;
    height: 12rem;
    grid-row: 1;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-media img {
    object-position: center 62%;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy,
  .advisor-shell[data-screen='welcome'] .advisor-visual-welcome-text,
  .advisor-shell[data-screen='welcome'] .advisor-visual-trust,
  .advisor-shell[data-screen='welcome'] .advisor-visual-welcome-kicker {
    display: none;
  }
}

@media (max-width: 680px) {
  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding: 1.75rem 1.25rem 7rem;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 2rem;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span:first-child {
    padding: 0;
    border: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div:first-child {
    padding: 0;
    border: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div::after {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* Advisor findings: study-only results, useful media and progressive mobile detail. */
.advisor-studies {
  display: block;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-studies-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
}

.advisor-studies-head::-webkit-details-marker {
  display: none;
}

.advisor-studies-head h2 {
  margin: 5px 0 0;
  color: var(--advisor-brand-deep);
  font-size: 21px;
  line-height: 1.2;
}

.advisor-studies-head > p {
  max-width: 54ch;
  margin: 0;
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
  line-height: 1.5;
}

.advisor-studies-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-height: 44px;
  color: var(--advisor-brand);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.advisor-studies-toggle i {
  font-style: normal;
  transition: transform .18s ease;
}

.advisor-studies[open] .advisor-studies-toggle i {
  transform: rotate(180deg);
}

.advisor-studies-head:focus-visible {
  outline: 3px solid rgba(243, 112, 33, .32);
  outline-offset: 4px;
  border-radius: 4px;
}

.advisor-study-list {
  margin-top: 15px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-study-item {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 122px;
  padding: 14px 0;
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-study-item--group {
  grid-template-columns: 148px minmax(0, 1fr);
  align-items: stretch;
}

.advisor-study-media {
  width: 148px;
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: var(--advisor-paper);
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
}

.advisor-study-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.advisor-study-media--fallback {
  color: var(--advisor-brand);
}

.advisor-study-media--fallback svg {
  width: 36px;
  height: 36px;
}

.advisor-study-copy,
.advisor-study-group,
.advisor-study-variant > div {
  min-width: 0;
}

.advisor-study-group {
  display: grid;
  align-content: center;
}

.advisor-study-variant {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 5px 0;
}

.advisor-study-variant + .advisor-study-variant {
  margin-top: 8px;
  padding-top: 13px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-study-item h3 {
  margin: 7px 0 0;
  color: var(--advisor-brand-deep);
  font-size: 16px;
  line-height: 1.3;
}

.advisor-study-item p {
  max-width: 65ch;
  margin: 5px 0 0;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.45;
}

.advisor-study-item > .advisor-info-button,
.advisor-study-variant .advisor-info-button {
  justify-self: end;
  white-space: nowrap;
}

.advisor-detail-study-status {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 9px 13px;
  border: 1px solid var(--advisor-line-strong);
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand-deep);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
}

.advisor-modal-frame {
  width: min(1180px, calc(100vw - 56px), calc(86dvh * 1.5));
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--advisor-radius-md);
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.advisor-modal .advisor-modal-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.advisor-disclosure-hide {
  display: none;
}

details[open] > summary .advisor-disclosure-show {
  display: none;
}

details[open] > summary .advisor-disclosure-hide {
  display: inline;
}

.advisor-family-more,
.advisor-model-more {
  display: none;
}

@media (max-width: 720px) {
  .advisor-studies-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 8px;
  }

  .advisor-studies-head > p {
    max-width: none;
  }

  .advisor-studies-toggle {
    justify-content: flex-start;
  }

  .advisor-study-item,
  .advisor-study-item--group {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .advisor-study-media {
    width: 104px;
  }

  .advisor-study-item > .advisor-info-button {
    grid-column: 2;
  }

  .advisor-study-item .advisor-info-button,
  .advisor-study-variant .advisor-info-button {
    justify-self: start;
  }

  .advisor-study-variant {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .advisor-family-item {
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 10px;
  }

  .advisor-family-item .advisor-family-media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 104px;
    height: 100%;
    min-height: 128px;
  }

  .advisor-family-item .advisor-family-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 1px 0 0;
  }

  .advisor-family-item .advisor-family-copy > p,
  .advisor-family-item > .advisor-family-signals {
    display: none;
  }

  .advisor-family-item > .advisor-direct-main {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .advisor-family-more,
  .advisor-model-more {
    display: block;
    margin: 0;
    padding-top: 9px;
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-family-more {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .advisor-family-more summary,
  .advisor-model-more summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--advisor-brand);
    font-size: 12px;
    font-weight: 760;
    cursor: pointer;
    list-style: none;
  }

  .advisor-family-more summary::-webkit-details-marker,
  .advisor-model-more summary::-webkit-details-marker {
    display: none;
  }

  .advisor-family-more summary::after,
  .advisor-model-more summary::after {
    content: '+';
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--advisor-brand-soft);
    color: var(--advisor-brand);
    font-size: 17px;
    font-weight: 500;
  }

  .advisor-family-more[open] summary::after,
  .advisor-model-more[open] summary::after {
    transform: rotate(45deg);
  }

  .advisor-family-more summary:focus-visible,
  .advisor-model-more summary:focus-visible {
    outline: 2px solid var(--advisor-accent-dark);
    outline-offset: 3px;
  }

  .advisor-family-more-body,
  .advisor-model-more-body {
    padding: 3px 0 8px;
    animation: advisor-disclosure-in var(--advisor-motion-state) var(--advisor-ease-out) both;
  }

  .advisor-family-more-body > p,
  .advisor-model-more-body > p {
    margin: 0;
    color: var(--advisor-muted-strong);
    font-size: 12px;
    line-height: 1.5;
  }

  .advisor-family-more-body > dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 12px 0 0;
  }

  .advisor-family-more-body .advisor-family-signal {
    min-width: 0;
  }

  .advisor-family-more-body dt {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    color: var(--advisor-brand-deep);
    font-size: 11px;
    font-weight: 780;
    line-height: 1.25;
  }

  .advisor-family-more-body .advisor-family-signals dd,
  .advisor-family-more-body dd {
    margin: 4px 0 0;
    padding-left: 42px;
    color: var(--advisor-muted-strong);
    font-size: 11.5px;
    line-height: 1.4;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    padding: 10px;
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 104px;
    height: 100%;
    min-height: 128px;
  }

  .advisor-direct-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }

  .advisor-direct-copy > .advisor-direct-desc,
  .advisor-direct-copy > .advisor-product-proof,
  .advisor-direct-copy > .advisor-model-facts {
    display: none;
  }

  .advisor-direct-buttons {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr);
    align-self: end;
  }

  .advisor-model-more {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .advisor-model-more-body > .advisor-product-proof {
    margin-top: 10px;
  }

  .advisor-model-more-facts {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .advisor-modal,
  .advisor-detail-modal {
    padding: 12px;
  }

  .advisor-modal-frame {
    width: min(calc(100vw - 24px), calc(82dvh * 1.5));
  }
}

@media (max-width: 360px) {
  .guided-summary-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .guided-summary-row button {
    justify-self: start;
  }

  .advisor-family-item,
  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .advisor-family-item .advisor-family-media,
  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 84px;
    min-height: 112px;
  }

  .advisor-family-more-body > dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .advisor-family-story-facts,
  .advisor-family-story--shutters .advisor-family-story-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .advisor-family-story-facts > div,
  .advisor-family-story-facts > div + div {
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 3px 9px;
    padding: 12px 0;
    border-left: 0;
  }

  .advisor-family-story-facts > div + div {
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-family-story-fact-icon {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .advisor-family-story-facts strong {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .advisor-family-story-fact-copy {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-family-more-body,
  .advisor-model-more-body {
    animation: none;
  }
}

@supports not (height: 100dvh) {
  .advisor-shell,
  .advisor-panel {
    min-height: 100vh;
    height: 100vh;
  }
}

/* V3 - parcours raccourci, comparaison par familles et handoff fiable */
.advisor-progress-stages {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advisor-title[tabindex='-1']:focus {
  outline: 0;
  box-shadow: none;
}

.advisor-shell[data-screen='results'] .advisor-title {
  max-width: 820px;
  font-size: 36px;
  line-height: 1.1;
}

.advisor-help {
  border-color: #b7c8c0;
  color: var(--advisor-forest);
}

.advisor-shell[data-screen='welcome'] .advisor-header {
  padding-bottom: 12px;
}

.advisor-dimension-mode .advisor-segmented {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advisor-dimensions-later {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #c9dcda;
  border-radius: var(--advisor-radius-sm);
  background: #f2f8f7;
  color: var(--advisor-muted-strong);
}

.advisor-dimensions-later > svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--advisor-water-dark);
}

.advisor-dimensions-later strong,
.advisor-dimensions-later small {
  display: block;
}

.advisor-dimensions-later strong {
  color: var(--advisor-forest);
  font-size: 11.5px;
}

.advisor-dimensions-later small {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-pool-unknown {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-lg);
  background: #f6f8f5;
}

.advisor-pool-unknown-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-pool-unknown-icon svg {
  width: 27px;
  height: 27px;
}

.advisor-pool-unknown strong {
  color: var(--advisor-forest);
  font-size: 15px;
  line-height: 1.35;
}

.advisor-pool-unknown p {
  max-width: 40ch;
  margin: 8px 0 0;
  color: var(--advisor-muted);
  font-size: 12px;
  line-height: 1.55;
}

.advisor-family-overview {
  margin-top: 28px;
}

.advisor-family-overview-head {
  display: block;
  margin-bottom: 10px;
}

.advisor-family-overview-head .advisor-section-kicker {
  margin: 0;
}

.advisor-family-overview-head h2 {
  margin: 5px 0 0;
  color: var(--advisor-forest);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.3;
}

.advisor-family-overview-grid {
  display: grid;
  grid-template-columns: repeat(var(--advisor-family-count, 3), minmax(0, 1fr));
  border-top: 1px solid var(--advisor-line);
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-family-overview-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 14px;
}

.advisor-family-overview-item + .advisor-family-overview-item {
  border-left: 1px solid var(--advisor-line);
}

.advisor-family-overview-item.is-primary {
  background: #f3f8f6;
}

.advisor-progress-meta,
.advisor-pool-shape b,
.advisor-results-summary strong {
  font-variant-numeric: tabular-nums;
}

.advisor-primary-media img,
.advisor-alternative-media img,
.advisor-direct-media img,
.advisor-family-media img,
.advisor-detail-media img {
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
}

.advisor-family-overview-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  border: 1px solid var(--advisor-line);
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
}

.advisor-family-overview-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.advisor-family-overview-copy strong,
.advisor-family-overview-copy > span,
.advisor-family-overview-copy small {
  display: block;
}

.advisor-family-overview-item strong {
  color: var(--advisor-forest);
  font-size: 11.5px;
  line-height: 1.35;
}

.advisor-family-overview-copy > span {
  margin-top: 3px;
  color: var(--advisor-muted);
  font-size: 10.5px;
  line-height: 1.4;
}

.advisor-family-overview-item small {
  width: max-content;
  margin-top: 5px;
  padding: 2px 5px;
  border: 1px solid #c9dcda;
  border-radius: 4px;
  background: #fff;
  color: var(--advisor-water-dark);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.advisor-results-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 17px 0;
  border-top: 1px solid var(--advisor-line);
  border-bottom: 1px solid var(--advisor-line);
}

.advisor-results-explore strong,
.advisor-results-explore span {
  display: block;
}

.advisor-results-explore strong {
  color: var(--advisor-forest);
  font-size: 12px;
}

.advisor-results-explore span {
  margin-top: 4px;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.45;
}

.advisor-direct-item.is-unavailable {
  background: #f7f8f7;
}

.advisor-direct-item.is-unavailable .advisor-direct-media {
  opacity: .6;
  filter: saturate(.55);
}

.advisor-direct-main:disabled {
  border-color: var(--advisor-line-strong);
  background: #e6e9e7;
  color: #6e7b74;
  cursor: not-allowed;
}

.advisor-detail-section--blocked {
  padding: 13px 14px;
  border: 1px solid rgba(166, 72, 57, .32);
  border-radius: var(--advisor-radius-sm);
  background: #fbf3f1;
}

.advisor-detail-section--blocked > strong {
  color: var(--advisor-danger);
}

.guided-summary--warning {
  border-top-color: var(--advisor-danger);
  background: #fbf5f3;
}

.guided-summary--warning .guided-summary-kicker {
  color: var(--advisor-danger);
}

.advisor-choice.is-selected:focus-visible {
  outline-offset: 1px;
  box-shadow: var(--advisor-focus);
}

.advisor-segmented button[data-action='shape']:focus-visible,
.advisor-segmented button[data-action='dimensions-known']:focus-visible {
  outline: 2px solid var(--advisor-accent-dark);
  outline-offset: 2px;
}

@media (max-width: 1500px) {
  .advisor-results-head {
    display: block;
  }

  .advisor-result-actions {
    margin-top: 16px;
  }
}

@media (max-width: 1180px) {
  .advisor-direct-header {
    display: block;
  }

  .advisor-direct-header .advisor-button {
    margin-top: 12px;
  }

  .advisor-shell[data-screen='results'] .advisor-title {
    font-size: 33px;
  }
}

@media (max-width: 960px) {
  .advisor-help,
  .advisor-resume button {
    min-height: 44px;
  }

  .advisor-shell[data-screen='results'] .advisor-title {
    font-size: 31px;
  }

  .advisor-primary-actions [data-action='choose'] {
    display: none;
  }

  .advisor-primary-actions .advisor-result-buttons {
    grid-template-columns: 1fr;
  }

  .advisor-primary-media {
    min-height: 205px;
    max-height: 245px;
  }
}

@media (max-width: 680px) {
  .advisor-choice-list {
    gap: 7px;
    margin-top: 22px;
  }

  .advisor-choice {
    min-height: 70px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 9px 11px;
  }

  .advisor-choice-icon {
    width: 38px;
    height: 38px;
  }

  .advisor-pool-unknown {
    min-height: 180px;
    padding: 20px;
  }

  .advisor-family-overview-head {
    display: block;
  }

  .advisor-family-overview-head h2 {
    margin-top: 5px;
  }

  .advisor-family-overview-grid {
    grid-template-columns: 1fr;
  }

  .advisor-family-overview-item {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 11px 0;
  }

  .advisor-family-overview-item + .advisor-family-overview-item {
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-family-overview-item.is-primary {
    padding-inline: 10px;
  }

  .advisor-primary-result {
    box-shadow: var(--advisor-shadow);
  }

  .advisor-primary-media {
    min-height: 185px;
    max-height: 215px;
  }

  .advisor-results-explore {
    display: grid;
  }

  .advisor-results-explore .advisor-button {
    width: 100%;
  }

  .advisor-compare-card {
    padding: 13px;
  }

  .advisor-compare-card p {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
  }

  .advisor-detail-media {
    min-height: 175px;
    max-height: 215px;
  }

  .advisor-detail-card {
    height: 92dvh;
    max-height: 92dvh;
    grid-template-rows: minmax(175px, 26dvh) minmax(0, 1fr);
  }

  .advisor-detail-body {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .advisor-shell[data-screen='results'] .advisor-title {
    font-size: 27px;
  }

  .advisor-family-overview-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

}

@media (max-width: 360px) {
  .advisor-shell[data-screen='welcome'] .advisor-visual {
    height: 150px;
    min-height: 150px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-panel {
    min-height: calc(100dvh - 150px);
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    justify-content: flex-start;
    padding-top: 22px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 27px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-subtitle {
    margin-top: 11px;
    line-height: 1.5;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
    margin-top: 18px;
  }

  .advisor-results-summary > div {
    grid-template-columns: minmax(0, 1fr);
  }

  .advisor-results-summary-icon {
    display: none;
  }

  .advisor-primary-result .advisor-result-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 7px;
  }

  .advisor-primary-result .advisor-category-label {
    width: 100%;
  }
}

/* V4 - hiérarchie chromatique et empreinte visuelle des familles */
.advisor-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.advisor-help {
  border-color: var(--advisor-control);
  background: #fff;
  color: var(--advisor-navy-dark);
}

.advisor-choice--clean,
.advisor-choice--automatic,
.advisor-choice--safety,
.advisor-choice--season,
.advisor-choice--economy,
.advisor-choice--aesthetics,
.advisor-choice--space {
  --advisor-choice-accent: var(--advisor-navy);
  --advisor-choice-soft: var(--advisor-navy-soft);
  --advisor-choice-ink: var(--advisor-navy-dark);
}

.advisor-choice--unsure {
  --advisor-choice-accent: var(--advisor-muted-strong);
  --advisor-choice-soft: var(--advisor-paper);
  --advisor-choice-ink: var(--advisor-muted-strong);
}

.advisor-choice.is-selected .advisor-choice-title {
  color: var(--advisor-choice-ink);
}

.advisor-results-summary > div:nth-child(1) .advisor-results-summary-icon {
  background: var(--advisor-navy-soft);
  color: var(--advisor-navy);
}

.advisor-results-summary > div:nth-child(2) .advisor-results-summary-icon {
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
}

.advisor-results-summary > div:nth-child(3) .advisor-results-summary-icon {
  background: var(--advisor-sage-soft);
  color: var(--advisor-sage);
}

.advisor-prospect--covers,
.advisor-family-item--covers,
.advisor-family-story--covers,
.advisor-family--cover,
.advisor-family--coverseal,
.advisor-family--custom-cover {
  --advisor-family-accent: var(--advisor-navy);
  --advisor-family-soft: var(--advisor-navy-soft);
  --advisor-family-border: var(--advisor-line-strong);
}

.advisor-prospect--bar-cover,
.advisor-family-item--bar-cover,
.advisor-family-story--bar-cover,
.advisor-family--bar-cover {
  --advisor-family-accent: var(--advisor-navy);
  --advisor-family-soft: var(--advisor-navy-soft);
  --advisor-family-border: var(--advisor-line-strong);
}

.advisor-prospect--shutters,
.advisor-family-item--shutters,
.advisor-family-story--shutters,
.advisor-family--shutter {
  --advisor-family-accent: var(--advisor-navy);
  --advisor-family-soft: var(--advisor-navy-soft);
  --advisor-family-border: var(--advisor-line-strong);
}

.advisor-prospect--shelters,
.advisor-family-item--shelters,
.advisor-family-story--shelters,
.advisor-family--shelter {
  --advisor-family-accent: var(--advisor-navy);
  --advisor-family-soft: var(--advisor-navy-soft);
  --advisor-family-border: var(--advisor-line-strong);
}

.advisor-prospect--deck,
.advisor-family-item--deck,
.advisor-family-story--deck,
.advisor-family--mobile-deck {
  --advisor-family-accent: var(--advisor-navy);
  --advisor-family-soft: var(--advisor-navy-soft);
  --advisor-family-border: var(--advisor-line-strong);
}

.advisor-family-overview-item {
  background: #fff;
  background: color-mix(in oklch, #fff 70%, var(--advisor-family-soft, var(--advisor-paper)));
}

.advisor-family-overview-item.is-primary {
  background: var(--advisor-family-soft, var(--advisor-water-soft));
  box-shadow: inset 0 0 0 1px var(--advisor-family-border, var(--advisor-line-strong));
}

.advisor-family-overview-item .advisor-family-overview-icon,
.advisor-compare-family-icon {
  border-color: var(--advisor-family-border, var(--advisor-line-strong));
  background: #fff;
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-family-overview-item small {
  border-color: #dfcaa0;
  border-color: oklch(84% .055 70);
  background: var(--advisor-brass-soft);
  color: var(--advisor-brass-dark);
}

.advisor-primary-result {
  box-shadow:
    0 0 0 1px var(--advisor-family-border, var(--advisor-line-strong)),
    0 3px 8px rgba(15, 38, 77, .08);
  box-shadow:
    0 0 0 1px var(--advisor-family-border, var(--advisor-line-strong)),
    0 3px 8px rgba(15, 38, 77, .08);
}

.advisor-primary-body {
  background: #fff;
  background: color-mix(in oklch, #fff 82%, var(--advisor-family-soft, var(--advisor-paper)));
}

.advisor-primary-result .advisor-category-label,
.advisor-alternative .advisor-category-label,
.advisor-direct-item .advisor-category-label,
.advisor-detail-card .advisor-category-label {
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-primary-result .advisor-benefits > span {
  border-color: var(--advisor-family-border, var(--advisor-line));
  background: var(--advisor-family-soft, var(--advisor-water-soft));
}

.advisor-primary-result .advisor-benefits svg,
.advisor-primary-result .advisor-primary-facts dt,
.advisor-primary-result .advisor-primary-proof svg,
.advisor-direct-item .advisor-product-proof svg {
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-primary-result .advisor-primary-fact-icon,
.advisor-direct-item .advisor-decision-icon,
.advisor-detail-card .advisor-decision-icon {
  background: var(--advisor-family-soft, var(--advisor-water-soft));
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-family-item,
.advisor-direct-item {
  border-color: var(--advisor-line);
  border-color: color-mix(in oklch, var(--advisor-line) 60%, var(--advisor-family-border, var(--advisor-line)));
  background: #fff;
  background: color-mix(in oklch, #fff 92%, var(--advisor-family-soft, #fff));
}

.advisor-family-item {
  box-shadow: 0 1px 2px rgba(15, 38, 77, .04);
}

.advisor-family-item .advisor-direct-category,
.advisor-family-item .advisor-family-signals dt {
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-family-item .advisor-family-signal-icon {
  background: #fff;
  color: var(--advisor-family-accent, var(--advisor-water-dark));
  box-shadow: inset 0 0 0 1px var(--advisor-family-border, var(--advisor-line));
}

.advisor-family-story {
  padding-inline: 18px;
  border-color: var(--advisor-family-border, var(--advisor-line));
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-paper);
  background: color-mix(in oklch, #fff 48%, var(--advisor-family-soft, var(--advisor-paper)));
}

.advisor-family-story .advisor-family-story-lead > span,
.advisor-family-story-fact-icon {
  background: #fff;
  color: var(--advisor-family-accent, var(--advisor-water-dark));
  box-shadow: inset 0 0 0 1px var(--advisor-family-border, var(--advisor-line));
}

.advisor-family-story-facts {
  border-top-color: var(--advisor-family-border, var(--advisor-line));
}

.advisor-family-story-facts > div + div {
  border-left-color: var(--advisor-family-border, var(--advisor-line));
}

.advisor-family-story-facts strong {
  color: var(--advisor-family-accent, var(--advisor-water-dark));
}

.advisor-height-scale {
  border-bottom-color: var(--advisor-family-border, var(--advisor-line-strong));
}

.advisor-height-scale span {
  border-color: var(--advisor-family-accent, var(--advisor-water-dark));
  background: var(--advisor-family-soft, var(--advisor-water-soft));
  background: color-mix(in oklch, #fff 35%, var(--advisor-family-soft, var(--advisor-water-soft)));
}

.advisor-compare-product,
.advisor-compare-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.advisor-compare th[class*='advisor-prospect--'] {
  background: var(--advisor-family-soft, var(--advisor-paper));
}

.advisor-compare-family-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--advisor-family-border, var(--advisor-line));
  border-radius: var(--advisor-radius-sm);
}

.advisor-compare-family-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.3;
}

.advisor-compare-card {
  border-color: var(--advisor-family-border, var(--advisor-line));
  background: #fff;
  background: color-mix(in oklch, #fff 84%, var(--advisor-family-soft, #fff));
}

.advisor-compare-card h3 {
  color: var(--advisor-family-accent, var(--advisor-forest));
}

@media (hover: hover) {
  .advisor-google-link:hover {
    color: var(--advisor-water-dark);
  }

  .advisor-help:hover,
  .advisor-button--secondary:hover,
  .advisor-info-button:hover,
  .advisor-more:hover {
    border-color: var(--advisor-navy);
    background: var(--advisor-navy-soft);
    color: var(--advisor-navy-dark);
  }

  .advisor-button:not(:disabled):not(.advisor-button--secondary):not(.advisor-button--text):hover,
  .advisor-direct-main:not(:disabled):hover {
    border-color: var(--advisor-forest-deep);
    background: var(--advisor-forest-deep);
  }

  .advisor-choice:hover {
    border-color: var(--advisor-choice-accent);
    background: var(--advisor-choice-soft);
    background: color-mix(in oklch, #fff 45%, var(--advisor-choice-soft));
  }

  .advisor-family-item:hover,
  .advisor-direct-item:hover {
    border-color: var(--advisor-family-border, var(--advisor-line-strong));
  }

  .advisor-family-item:hover {
    box-shadow: 0 3px 8px rgba(15, 38, 77, .08);
    box-shadow: 0 3px 8px oklch(23% .044 160 / .08);
  }
}

@media (max-width: 680px) {
  .advisor-results-summary > div,
  .advisor-results-summary > div:first-child,
  .advisor-results-summary > div + div,
  .advisor-results-summary > div:nth-child(3) {
    padding: 12px;
  }

  .advisor-family-overview-item,
  .advisor-family-overview-item.is-primary {
    padding-inline: 10px;
  }

  .advisor-family-story {
    padding-inline: 13px;
  }
}

@media (max-width: 360px) {
  .advisor-family-item,
  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .advisor-family-media,
  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 100%;
    height: 142px;
    min-height: 142px;
  }

  .advisor-family-copy,
  .advisor-direct-copy {
    padding: 4px;
  }

  .advisor-family-item > .advisor-direct-main,
  .advisor-direct-buttons {
    grid-column: 1;
  }

  .advisor-direct-buttons {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }
}

/* Final qualification and mobile legibility pass. */
.advisor-shell[data-screen='welcome'] .advisor-help {
  display: none;
}

.advisor-hint + .advisor-choice-list {
  margin-top: 14px;
}

.advisor-choice:disabled {
  cursor: not-allowed;
  opacity: .58;
  filter: saturate(.45);
  transform: none;
}

.advisor-field-help {
  margin: 8px 0 0;
  color: var(--advisor-muted);
  font-size: 11.5px;
  line-height: 1.45;
  text-wrap: pretty;
}

@media (hover: hover) {
  .advisor-choice:disabled:hover {
    border-color: var(--advisor-line);
    background: #fff;
    transform: none;
  }
}

@media (max-width: 680px) {
  .advisor-subtitle {
    font-size: 14px;
  }

  .advisor-choice-title {
    font-size: 13px;
  }

  .advisor-choice-desc,
  .advisor-hint,
  .advisor-legend,
  .advisor-segmented button,
  .advisor-field-help,
  .advisor-dimensions-later strong,
  .advisor-dimensions-later small {
    font-size: 12px;
  }

  .advisor-segmented button {
    line-height: 1.25;
  }

  .advisor-pool-unknown p,
  .advisor-family-copy > p,
  .advisor-direct-desc {
    font-size: 12.5px;
  }

  .guided-summary-meta,
  .guided-summary-proof,
  .guided-summary-next span {
    font-size: 12px;
  }
}

/* V5 - clearer hierarchy, richer product presentation and purposeful motion. */
.advisor-body {
  background: var(--advisor-paper);
}

.advisor-screen {
  opacity: 1;
  filter: none;
  transform: none;
  transition:
    opacity var(--advisor-motion-screen) var(--advisor-ease-out),
    filter var(--advisor-motion-screen) var(--advisor-ease-out),
    transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-screen.is-entering {
  opacity: .86;
  filter: blur(1px);
  transform: translateY(8px);
}

.advisor-screen.is-entering .advisor-choice,
.advisor-screen.is-entering .advisor-family-item,
.advisor-screen.is-entering .advisor-alternative,
.advisor-screen.is-entering .advisor-direct-item {
  transform: translateY(4px);
  transition-delay: calc(var(--advisor-order, 0) * 18ms);
}

.advisor-visual-media img {
  transition:
    opacity var(--advisor-motion-screen) var(--advisor-ease-out),
    transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-visual-media img.is-changing {
  opacity: .42;
  transform: scale(1.012);
}

.advisor-progress-stage {
  font-size: 12px;
}

.advisor-progress-fill {
  width: 100%;
  transform-origin: left center;
  transition: transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-step-label {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  text-transform: none;
}

.advisor-step-label::before {
  content: '';
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
}

.advisor-shell:not([data-screen='welcome']) .advisor-step-label {
  display: none;
}

.advisor-section-kicker {
  font-size: 12px;
  text-transform: none;
}

.advisor-title {
  line-height: 1.08;
}

.advisor-subtitle {
  max-width: 64ch;
  color: var(--advisor-muted-strong);
  font-size: 16px;
  line-height: 1.55;
}

.advisor-button,
.advisor-direct-main {
  min-height: 48px;
}

.advisor-button > span,
.advisor-direct-main > span {
  transition: transform var(--advisor-motion-state) var(--advisor-ease-out);
}

.advisor-welcome-reassurance {
  display: flex;
  margin-top: 18px;
  overflow: hidden;
  border-block: 1px solid var(--advisor-line);
}

.advisor-welcome-reassurance > span {
  min-height: 42px;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 0;
  background: transparent;
  color: var(--advisor-muted-strong);
}

.advisor-welcome-reassurance > span + span {
  border-left: 1px solid var(--advisor-line);
}

.advisor-welcome-reassurance svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--advisor-brand);
}

.advisor-welcome-reassurance b {
  font-size: 11.5px;
  font-weight: 720;
  line-height: 1.3;
}

.advisor-welcome-path {
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
}

.advisor-welcome-path > div,
.advisor-welcome-path > div + div {
  min-height: 88px;
  padding: 15px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.advisor-welcome-path > div + div {
  border-left: 1px solid var(--advisor-line);
}

.advisor-welcome-path-icon {
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
  box-shadow: none;
}

.advisor-welcome-path > div:nth-child(2) .advisor-welcome-path-icon,
.advisor-welcome-path > div:nth-child(3) .advisor-welcome-path-icon {
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
}

.advisor-welcome-path strong {
  color: var(--advisor-accent-dark);
}

.advisor-welcome-path > div:nth-child(1) strong,
.advisor-welcome-path > div:nth-child(2) strong,
.advisor-welcome-path > div:nth-child(3) strong {
  color: var(--advisor-accent-dark);
}

.advisor-welcome-path small {
  color: var(--advisor-muted-strong);
  font-size: 12px;
}

.advisor-welcome-proof-grid {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(360px, 1.35fr);
  gap: 0;
  margin-top: 15px;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
}

.advisor-welcome-assurance,
.advisor-google-proof {
  min-height: 112px;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.advisor-welcome-assurance {
  align-items: flex-start;
  padding: 16px;
  background: var(--advisor-brand-soft);
  border-right: 1px solid var(--advisor-line);
}

.advisor-welcome-assurance-icon {
  width: 42px;
  height: 42px;
}

.advisor-welcome-assurance strong {
  font-size: 14px;
}

.advisor-welcome-assurance small {
  font-size: 12px;
}

.advisor-google-proof {
  grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
  grid-template-areas:
    'score link'
    'quote quote';
  gap: 12px 16px;
  align-content: center;
  padding: 14px 16px;
  background: #fff;
}

.advisor-google-score {
  grid-area: score;
}

.advisor-google-link {
  grid-area: link;
  min-height: 42px;
  align-items: flex-end;
  padding-left: 14px;
  border-left: 1px solid var(--advisor-line);
  text-align: right;
}

.advisor-google-quote {
  grid-area: quote;
  margin: 0;
  padding: 11px 0 0;
  border: 0;
  border-top: 1px solid var(--advisor-line);
}

.advisor-google-quote blockquote {
  font-size: 12px;
}

.advisor-hint {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
  font-weight: 650;
}

.advisor-hint-count {
  min-width: 40px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding-inline: 7px;
  border-radius: 999px;
  background: var(--advisor-forest);
  color: #fff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  transition:
    background-color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

.advisor-detail-more {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-detail-more summary {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--advisor-forest);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

.advisor-detail-more summary::-webkit-details-marker {
  display: none;
}

.advisor-detail-more summary::after {
  content: '+';
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--advisor-water-soft);
  color: var(--advisor-water-dark);
  font-size: 17px;
  font-weight: 500;
  transition: transform var(--advisor-motion-state) var(--advisor-ease-out);
}

.advisor-detail-more[open] summary::after {
  transform: rotate(45deg);
}

.advisor-detail-more summary:focus-visible {
  outline: 2px solid var(--advisor-accent-dark);
  outline-offset: 3px;
}

.advisor-detail-more .advisor-detail-list {
  margin-top: 8px;
  animation: advisor-disclosure-in var(--advisor-motion-state) var(--advisor-ease-out) both;
}

.advisor-hint + .advisor-choice-list {
  margin-top: 16px;
}

.advisor-choice-list {
  gap: 9px;
}

.advisor-shell[data-screen='priorities'] .advisor-screen {
  padding-top: 36px;
  padding-bottom: 38px;
}

.advisor-choice {
  min-height: 92px;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  gap: 13px;
  padding: 14px;
  border-color: var(--advisor-line);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 38, 77, .04);
}

.advisor-choice.is-selected {
  border-color: var(--advisor-choice-accent);
  background: var(--advisor-choice-soft);
  box-shadow: inset 0 0 0 1px var(--advisor-choice-accent);
}

.advisor-choice-icon {
  width: 48px;
  height: 48px;
  transition:
    background-color var(--advisor-motion-state) var(--advisor-ease-out),
    color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-state) var(--advisor-ease-out);
}

.advisor-choice-icon svg {
  width: 23px;
  height: 23px;
  transition: transform var(--advisor-motion-state) var(--advisor-ease-out);
}

.advisor-choice-title {
  font-size: 14px;
}

.advisor-choice-desc {
  margin-top: 5px;
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
}

.advisor-choice-check {
  width: 22px;
  height: 22px;
  transition:
    background-color var(--advisor-motion-state) var(--advisor-ease-out),
    border-color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

.advisor-choice.is-selected .advisor-choice-check::after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
}

.advisor-pool-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, .82fr);
  gap: 34px;
}

.advisor-pool-controls {
  gap: 21px;
}

.advisor-segmented {
  gap: 3px;
  padding: 4px;
  background: var(--advisor-brand-soft);
}

.advisor-segmented button {
  min-height: 48px;
  font-size: 12.5px;
  transition:
    background-color var(--advisor-motion-state) var(--advisor-ease-out),
    box-shadow var(--advisor-motion-state) var(--advisor-ease-out),
    color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

.advisor-segmented button svg {
  width: 20px;
  height: 20px;
}

@keyframes advisor-disclosure-in {
  from { opacity: .86; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.advisor-pool-disclosure {
  display: grid;
  gap: 21px;
}

.advisor-dimensions-later {
  min-height: 64px;
  padding: 12px;
  border: 0;
  background: var(--advisor-water-soft);
}

.advisor-dimensions-later strong,
.advisor-dimensions-later small {
  font-size: 12px;
}

.advisor-pool-unknown {
  align-content: center;
  gap: 24px;
  padding: 30px;
  border-color: #bfdadc;
  background: var(--advisor-water-soft);
}

.advisor-pool-unknown-visual {
  display: flex;
  align-items: center;
  gap: 9px;
}

.advisor-pool-unknown-visual > span {
  width: 58px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-md);
  background: rgba(255, 255, 255, .84);
  color: var(--advisor-brand);
  box-shadow: inset 0 0 0 1px rgba(15, 95, 111, .13);
}

.advisor-pool-unknown-visual > span:nth-child(2) {
  color: var(--advisor-brand);
}

.advisor-pool-unknown-visual > span:nth-child(3) {
  color: var(--advisor-brand);
}

.advisor-pool-unknown-visual > span.is-measure {
  width: 62px;
  height: 62px;
}

.advisor-pool-unknown-visual > span.is-pool {
  width: 84px;
  height: 52px;
}

.advisor-pool-unknown-visual svg {
  width: 28px;
  height: 28px;
}

.advisor-pool-unknown strong {
  font-size: 17px;
}

.advisor-pool-unknown p {
  color: var(--advisor-muted-strong);
  font-size: 13px;
}

.advisor-pool-preview {
  border: 0;
  background: var(--advisor-water-soft);
  box-shadow: inset 0 0 0 1px #bfdadc;
}

.advisor-pool-shape {
  background: #72bfce;
  box-shadow:
    0 0 0 1px #4d98a8,
    inset 0 0 0 1px rgba(255, 255, 255, .55),
    0 8px 18px rgba(36, 102, 116, .16);
  transition: border-radius var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-results-summary {
  gap: 6px;
  margin-top: 24px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.advisor-results-summary > div,
.advisor-results-summary > div:first-child,
.advisor-results-summary > div + div {
  padding: 13px;
  border: 0;
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-paper);
}

.advisor-results-summary > div:nth-child(1) {
  background: var(--advisor-navy-soft);
}

.advisor-results-summary > div:nth-child(2) {
  background: var(--advisor-water-soft);
}

.advisor-results-summary > div:nth-child(3) {
  background: var(--advisor-sage-soft);
}

.advisor-results-summary-copy strong {
  font-size: 12.5px;
}

.advisor-results-summary-copy > span {
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
}

.advisor-primary-result {
  margin-top: 22px;
  box-shadow:
    0 0 0 1px var(--advisor-family-border, var(--advisor-line-strong)),
    0 5px 8px rgba(15, 38, 77, .08);
}

.advisor-primary-body {
  padding: 30px 32px 26px;
}

.advisor-primary-lead {
  color: var(--advisor-muted-strong);
  font-size: 14px;
}

.advisor-benefits > span {
  min-height: 34px;
  padding: 6px 9px;
}

.advisor-benefits b,
.advisor-primary-facts dd,
.advisor-primary-next {
  font-size: 12px;
}

.advisor-primary-facts dt,
.advisor-category-label,
.advisor-direct-category,
.advisor-family-signals dt,
.advisor-decision-facts dt,
.advisor-family-story-facts strong,
.advisor-detail-section > strong,
.advisor-detail-fit > strong {
  letter-spacing: 0;
  text-transform: none;
}

.advisor-primary-facts dt,
.advisor-category-label,
.advisor-direct-category {
  font-size: 11.5px;
}

.advisor-alternatives {
  margin-top: 34px;
}

.advisor-alternatives-head p {
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
}

.advisor-alternative-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 15px;
  border: 0;
}

.advisor-alternative {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-content: start;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--advisor-radius-lg);
  background: #fff;
  box-shadow:
    0 0 0 1px var(--advisor-family-border, var(--advisor-line)),
    0 2px 6px rgba(15, 38, 77, .07);
}

.advisor-alternative-media {
  width: 100%;
  height: 150px;
  border-radius: 0;
}

.advisor-alternative-copy {
  padding: 16px 17px 12px;
}

.advisor-alternative-copy h3 {
  font-size: 17px;
}

.advisor-alternative-copy p {
  font-size: 12px;
}

.advisor-alternative-actions {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 17px 16px;
}

.advisor-alternative-actions > span {
  text-align: left;
}

.advisor-alternative-actions > div {
  display: flex;
}

.advisor-results-explore {
  padding: 17px;
  border: 0;
  border-radius: var(--advisor-radius-md);
  background: var(--advisor-navy-soft);
}

.advisor-results-explore span {
  color: var(--advisor-muted-strong);
  font-size: 12px;
}

.advisor-result-map {
  margin-top: 24px;
}

.advisor-result-map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.advisor-result-map-head strong {
  color: var(--advisor-forest);
  font-size: 13px;
}

.advisor-result-map-head span {
  color: var(--advisor-muted);
  font-size: 11.5px;
}

.advisor-result-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--advisor-line);
  border-radius: var(--advisor-radius-md);
  background: #fff;
}

.advisor-result-map-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 24px 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 15px 14px;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.advisor-result-map-item + .advisor-result-map-item {
  border-left: 1px solid var(--advisor-line);
}

.advisor-result-map-item:first-child {
  background: var(--advisor-brand-soft);
  box-shadow: inset 3px 0 0 var(--advisor-brand);
}

.advisor-result-map-rank {
  align-self: start;
  padding-top: 3px;
  color: var(--advisor-muted);
  font-size: 10.5px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.advisor-result-map-item:first-child .advisor-result-map-rank {
  color: var(--advisor-brass-dark);
}

.advisor-result-map-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--advisor-radius-sm);
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
  box-shadow: inset 0 0 0 1px rgba(31, 64, 124, .1);
}

.advisor-result-map-item:first-child .advisor-result-map-icon {
  background: #fff;
}

.advisor-result-map-icon svg {
  width: 21px;
  height: 21px;
}

.advisor-result-map-copy,
.advisor-result-map-copy strong,
.advisor-result-map-copy small {
  min-width: 0;
  display: block;
}

.advisor-result-map-copy strong {
  color: var(--advisor-forest);
  font-size: 13px;
  line-height: 1.3;
}

.advisor-result-map-copy small {
  margin-top: 4px;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.4;
}

.advisor-family-list {
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.advisor-family-item {
  min-height: 188px;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr);
  border: 0;
  background: #fff;
  box-shadow:
    0 0 0 1px var(--advisor-line),
    0 2px 6px rgba(15, 38, 77, .05);
}

.advisor-family-item--covers,
.advisor-family-item--shelters,
.advisor-family-item--shutters,
.advisor-family-item--bar-cover,
.advisor-family-item--deck {
  grid-column: 1;
}

.advisor-family-item--covers .advisor-family-media,
.advisor-family-item--shelters .advisor-family-media,
.advisor-family-item--deck .advisor-family-media,
.advisor-family-item--shutters .advisor-family-media,
.advisor-family-item--bar-cover .advisor-family-media {
  grid-column: 1;
  grid-row: 1;
  min-height: 188px;
}

.advisor-family-copy {
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  padding: 18px 19px 14px;
}

.advisor-family-item .advisor-direct-category svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.advisor-family-copy h2 {
  font-size: 21px;
}

.advisor-family-copy > p {
  color: var(--advisor-muted-strong);
  font-size: 12.5px;
}

.advisor-family-signals dt {
  font-size: 11px;
}

.advisor-family-signals dd {
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
}

.advisor-family-item > .advisor-direct-main {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: auto;
  min-width: 150px;
  margin: 0 18px 0 0;
}

.advisor-direct-item {
  min-height: 176px;
  border: 0;
  box-shadow:
    0 0 0 1px var(--advisor-line),
    0 2px 6px rgba(15, 38, 77, .04);
}

.advisor-direct-name {
  font-size: 17px;
}

.advisor-direct-desc,
.advisor-product-proof {
  font-size: 12.5px;
}

.advisor-decision-facts dt {
  font-size: 11px;
}

.advisor-decision-facts dd {
  color: var(--advisor-muted-strong);
  font-size: 11.5px;
}

.advisor-family-story-facts strong {
  font-size: 11.5px;
}

.advisor-family-story-fact-copy {
  font-size: 12px;
}

.advisor-modal img,
.advisor-detail-card {
  opacity: .86;
  transform: translateY(12px) scale(.985);
  transition:
    opacity var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-modal.is-open img,
.advisor-detail-modal.is-open .advisor-detail-card {
  opacity: 1;
  transform: none;
}

.advisor-modal-close,
.advisor-detail-close {
  transition:
    background-color var(--advisor-motion-state) var(--advisor-ease-out),
    color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

@media (hover: hover) {
  .advisor-button:not(:disabled):hover > span,
  .advisor-direct-main:not(:disabled):hover > span {
    transform: translateX(3px);
  }

  .advisor-choice:hover {
    transform: translateY(-2px);
  }

  .advisor-choice:hover .advisor-choice-icon svg {
    transform: translateY(-1px) scale(1.04);
  }

  .advisor-family-item:hover {
    transform: none;
  }

  .advisor-family-item:hover .advisor-family-media img {
    transform: scale(1.02);
  }
}

.advisor-choice:active .advisor-choice-icon,
.advisor-segmented button:active,
.advisor-modal-close:active,
.advisor-detail-close:active {
  transform: scale(.96);
}

.advisor-family-media img {
  transition: transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

@media (max-width: 1180px) {
  .advisor-welcome-proof-grid {
    grid-template-columns: 1fr;
  }

  .advisor-welcome-assurance,
  .advisor-google-proof {
    min-height: 0;
  }

  .advisor-welcome-assurance {
    border-right: 0;
    border-bottom: 1px solid var(--advisor-line);
  }

  .advisor-family-list {
    grid-template-columns: 1fr;
  }

  .advisor-family-item--covers,
  .advisor-family-item--shelters,
  .advisor-family-item--shutters,
  .advisor-family-item--bar-cover,
  .advisor-family-item--deck {
    grid-column: 1;
    grid-template-columns: 170px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .advisor-family-item--covers .advisor-family-media,
  .advisor-family-item--shelters .advisor-family-media,
  .advisor-family-item--shutters .advisor-family-media,
  .advisor-family-item--bar-cover .advisor-family-media,
  .advisor-family-item--deck .advisor-family-media {
    grid-row: 1 / 3;
    min-height: 170px;
  }

  .advisor-family-item--covers > .advisor-direct-main,
  .advisor-family-item--shelters > .advisor-direct-main,
  .advisor-family-item--shutters > .advisor-direct-main,
  .advisor-family-item--bar-cover > .advisor-direct-main,
  .advisor-family-item--deck > .advisor-direct-main {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 960px) {
  .advisor-shell[data-screen='welcome'] .advisor-body {
    overflow: visible;
    scrollbar-gutter: auto;
  }

  .advisor-progress-track {
    height: 4px;
    border-radius: 999px;
  }

  .advisor-progress-fill {
    border-radius: inherit;
  }

  .advisor-title {
    font-size: 35px;
  }

  .advisor-subtitle {
    font-size: 15px;
  }

  .advisor-alternative-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .advisor-screen,
  .advisor-shell[data-screen='results'] .advisor-screen,
  .advisor-shell[data-screen='direct'] .advisor-screen {
    padding-inline: 17px;
  }

  .advisor-title {
    font-size: 30px;
  }

  .advisor-subtitle {
    font-size: 14.5px;
  }

  .advisor-welcome-reassurance {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advisor-welcome-reassurance > span:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-welcome-path {
    gap: 6px;
  }

  .advisor-welcome-path > div,
  .advisor-welcome-path > div + div {
    min-height: 0;
    padding: 12px 13px;
    border: 0;
    border-radius: 0;
  }

  .advisor-welcome-path > div + div {
    border-top: 1px solid var(--advisor-line);
  }

  .advisor-google-proof {
    grid-template-areas: 'score link';
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
  }

  .advisor-google-quote {
    display: none;
  }

  .advisor-choice-list {
    gap: 9px;
  }

  .advisor-choice {
    min-height: 84px;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    padding: 12px;
  }

  .advisor-choice-icon {
    width: 44px;
    height: 44px;
  }

  .advisor-choice-title {
    font-size: 14px;
  }

  .advisor-choice-desc {
    font-size: 12.5px;
  }

  .advisor-pool-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .advisor-pool-unknown {
    min-height: 210px;
    padding: 22px;
  }

  .advisor-results-summary {
    gap: 6px;
  }

  .advisor-results-summary > div,
  .advisor-results-summary > div:first-child,
  .advisor-results-summary > div + div,
  .advisor-results-summary > div:nth-child(3) {
    padding: 12px;
    border: 0;
  }

  .advisor-results-summary > div:nth-child(3) {
    margin-top: 0;
  }

  .advisor-result-map-head {
    align-items: flex-end;
  }

  .advisor-result-map-grid {
    grid-template-columns: 1fr;
  }

  .advisor-result-map-item + .advisor-result-map-item {
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-result-map-item {
    grid-template-columns: 24px 40px minmax(0, 1fr);
    padding: 12px;
  }

  .advisor-result-map-icon {
    width: 40px;
    height: 40px;
  }

  .advisor-primary-body {
    padding: 20px 17px;
  }

  .advisor-alternative-media {
    height: 174px;
  }

  .advisor-family-item--covers,
  .advisor-family-item--shelters,
  .advisor-family-item--shutters,
  .advisor-family-item--bar-cover,
  .advisor-family-item--deck {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 168px minmax(0, 1fr) auto;
    min-height: 0;
  }

  .advisor-family-item--covers .advisor-family-media,
  .advisor-family-item--shelters .advisor-family-media,
  .advisor-family-item--shutters .advisor-family-media,
  .advisor-family-item--bar-cover .advisor-family-media,
  .advisor-family-item--deck .advisor-family-media {
    grid-row: 1;
    width: 100%;
    min-height: 168px;
  }

  .advisor-family-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 16px 16px 12px;
  }

  .advisor-family-item--covers > .advisor-direct-main,
  .advisor-family-item--shelters > .advisor-direct-main,
  .advisor-family-item--shutters > .advisor-direct-main,
  .advisor-family-item--bar-cover > .advisor-direct-main,
  .advisor-family-item--deck > .advisor-direct-main {
    grid-column: 1;
    grid-row: 3;
    justify-self: stretch;
    width: auto;
    margin: 0 16px 16px;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    padding: 10px;
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 104px;
    height: 100%;
    min-height: 128px;
  }

  .advisor-direct-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }

  .advisor-direct-buttons {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: minmax(0, 1fr);
    align-self: end;
  }

  .advisor-model-more {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .advisor-detail-footer {
    position: sticky;
    bottom: -1px;
    z-index: 2;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    align-items: stretch;
    margin: 16px -17px 0;
    padding: 12px 17px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--advisor-line);
    background: #fff;
    box-shadow: 0 -6px 14px rgba(15, 38, 77, .06);
  }
}

@media (max-width: 430px) {
  .advisor-title,
  .advisor-shell[data-screen='results'] .advisor-title {
    font-size: 28px;
  }

  .advisor-welcome-reassurance {
    grid-template-columns: 1fr;
  }

  .advisor-welcome-reassurance > span:last-child {
    grid-column: 1;
  }

  .advisor-welcome-reassurance > span + span {
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-results-summary {
    grid-template-columns: 1fr;
  }

  .advisor-results-summary > div:nth-child(3) {
    grid-column: 1;
  }

  .advisor-result-map-item {
    grid-template-columns: 22px 40px minmax(0, 1fr);
  }

  .advisor-alternative-actions {
    display: grid;
    justify-items: stretch;
  }

  .advisor-alternative-actions > div {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Brand discipline: blue carries product UI; water is reserved for pool data. */
.advisor-google-link > span,
.advisor-google-link:hover,
.advisor-detail-section > strong,
.advisor-detail-fit > strong {
  color: var(--advisor-brand);
}

.advisor-detail-benefits > span {
  border-color: var(--advisor-line-strong);
  background: var(--advisor-brand-soft);
}

.advisor-detail-benefits svg,
.advisor-detail-proof svg,
.advisor-compare-criterion svg,
.advisor-compare-card p > strong svg {
  color: var(--advisor-brand);
}

.advisor-detail-list li::before {
  border-left-color: var(--advisor-brand);
  border-bottom-color: var(--advisor-brand);
}

.advisor-detail-more summary::after {
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
}

.advisor-detail-section--notice {
  border-color: var(--advisor-line-strong);
  background: var(--advisor-brand-soft);
}

.advisor-detail-section--notice > strong {
  color: var(--advisor-brand-deep);
}

.advisor-detail-media,
.advisor-primary-media,
.advisor-alternative-media,
.advisor-direct-media,
.advisor-family-media,
.advisor-result-media--fallback,
.advisor-direct-media--fallback,
.advisor-detail-media--fallback {
  background: var(--advisor-paper);
}

.advisor-fallback-visual {
  color: var(--advisor-brand);
}

.advisor-direct-notice {
  border-color: var(--advisor-line-strong);
  background: var(--advisor-brand-soft);
}

.advisor-results-summary > div,
.advisor-results-summary > div:first-child,
.advisor-results-summary > div:nth-child(2),
.advisor-results-summary > div:nth-child(3) {
  background: var(--advisor-paper);
}

.advisor-results-summary > div:first-child {
  background: var(--advisor-brand-soft);
}

.advisor-results-summary > div:nth-child(1) .advisor-results-summary-icon,
.advisor-results-summary > div:nth-child(2) .advisor-results-summary-icon,
.advisor-results-summary > div:nth-child(3) .advisor-results-summary-icon {
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
}

/* Decision components: one visual language, with hierarchy carried by layout. */
.advisor-family-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--advisor-line);
}

.advisor-family-item {
  grid-template-rows: minmax(0, 1fr) auto;
}

.advisor-family-item .advisor-family-media {
  grid-row: 1 / 3;
}

.advisor-family-item .advisor-family-copy {
  grid-row: 1;
  padding-bottom: 8px;
}

.advisor-family-item > .advisor-family-signals {
  grid-column: 2 / 4;
  grid-row: 2;
  align-self: end;
  margin: 0 18px 16px 19px;
}

.advisor-family-signals > .advisor-family-signal {
  min-width: 0;
  padding: 0 15px 0 0;
}

.advisor-family-signals > .advisor-family-signal + .advisor-family-signal {
  padding: 0 0 0 15px;
  border-left: 1px solid var(--advisor-line);
}

.advisor-family-signal-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  align-self: start;
  border-radius: 8px;
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
  box-shadow: inset 0 0 0 1px rgba(31, 64, 124, .1);
}

.advisor-family-signal-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
}

.advisor-family-signals dt {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--advisor-brand-deep);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.25;
}

.advisor-family-signals dt > span:last-child {
  padding-top: 1px;
}

.advisor-family-signals dd {
  margin-top: 3px;
  padding-left: 42px;
  color: var(--advisor-muted-strong);
  font-size: 12px;
  line-height: 1.4;
}

.advisor-family-item .advisor-family-signal-icon {
  background: var(--advisor-brand-soft);
  color: var(--advisor-brand);
  box-shadow: inset 0 0 0 1px rgba(31, 64, 124, .1);
}

@media (min-width: 721px) and (max-width: 1180px) {
  .advisor-family-item {
    grid-template-columns: 170px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .advisor-family-item .advisor-family-media {
    grid-column: 1;
    grid-row: 1 / 4;
    min-height: 220px;
  }

  .advisor-family-item .advisor-family-copy {
    grid-column: 2;
    grid-row: 1;
    padding-bottom: 8px;
  }

  .advisor-family-item > .advisor-family-signals {
    grid-column: 2;
    grid-row: 2;
    margin: 0 18px 14px 19px;
  }

  .advisor-family-item > .advisor-direct-main {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    width: auto;
    margin: 0 18px 16px 19px;
  }
}

@media (min-width: 961px) and (max-width: 1080px) {
  .advisor-result-map-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .advisor-result-map-item + .advisor-result-map-item {
    border-top: 1px solid var(--advisor-line);
    border-left: 0;
  }

  .advisor-result-map-item {
    grid-template-columns: 24px 40px minmax(0, 1fr);
    padding: 11px 12px;
  }

  .advisor-result-map-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 430px) {
  .advisor-family-signals {
    grid-template-columns: minmax(0, 1fr);
  }

  .advisor-family-signals > .advisor-family-signal,
  .advisor-family-signals > .advisor-family-signal + .advisor-family-signal {
    padding: 0;
    border-left: 0;
  }

  .advisor-family-signals > .advisor-family-signal + .advisor-family-signal {
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid var(--advisor-line);
  }
}

@media (max-width: 720px) {
  .advisor-family-item {
    grid-template-columns: 104px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 8px 12px;
    min-height: 0;
    padding: 10px;
  }

  .advisor-family-item .advisor-family-media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 104px;
    height: 100%;
    min-height: 128px;
  }

  .advisor-family-item .advisor-family-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 1px 0 0;
  }

  .advisor-family-item .advisor-family-copy > p,
  .advisor-family-item > .advisor-family-signals {
    display: none;
  }

  .advisor-family-item > .advisor-direct-main {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .advisor-family-item > .advisor-family-more {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

@media (max-width: 360px) {
  .advisor-family-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .advisor-family-item .advisor-family-media {
    width: 84px;
    min-height: 112px;
  }

  .advisor-direct-item,
  .advisor-direct-item.advisor-family--mobile-deck,
  .advisor-direct-item.advisor-family--bar-cover {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .advisor-direct-media,
  .advisor-family--mobile-deck > .advisor-direct-media,
  .advisor-family--bar-cover > .advisor-direct-media {
    width: 84px;
    min-height: 112px;
  }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .advisor-shell[data-screen='welcome'] .advisor-visual {
    height: 56px;
    min-height: 56px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-panel {
    min-height: calc(100dvh - 56px);
  }

  .advisor-shell[data-screen='welcome'] .advisor-header {
    padding-top: 4px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    justify-content: flex-start;
    padding-top: 12px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-step-label {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 24px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-subtitle {
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-screen,
  .advisor-screen.is-entering,
  .advisor-pool-disclosure,
  .advisor-dimensions-later,
  .advisor-pool-preview,
  .advisor-modal img,
  .advisor-detail-card {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* V6 - accueil premium inspiré de la maquette validée. */
.advisor-visual-welcome {
  display: none;
}

.advisor-header-branding {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.advisor-header-context {
  display: none;
  align-items: center;
  gap: 9px;
  color: var(--advisor-muted-strong);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.advisor-header-context i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #2e9fbd;
  font-style: normal;
}

.advisor-header-context svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.advisor-shell[data-screen='welcome'] {
  grid-template-columns: 43.65vw minmax(0, 1fr);
}

.advisor-shell[data-screen='welcome'] .advisor-visual {
  grid-template-rows: minmax(0, 52.7%) minmax(360px, 47.3%);
}

.advisor-shell[data-screen='welcome'] .advisor-visual-media img {
  object-position: 50% 50%;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-proof {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-copy {
  justify-content: flex-start;
  padding: 36px clamp(38px, 3.3vw, 58px) 34px;
  background: #062d58;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-copy::before {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-copy > .advisor-kicker,
.advisor-shell[data-screen='welcome'] .advisor-visual-copy > .advisor-visual-title,
.advisor-shell[data-screen='welcome'] .advisor-visual-copy > .advisor-visual-text,
.advisor-shell[data-screen='welcome'] .advisor-visual-copy > .advisor-visual-meta {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-footer {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-body {
  scrollbar-color: transparent transparent;
}

.advisor-shell[data-screen='welcome'] .advisor-body::-webkit-scrollbar-track,
.advisor-shell[data-screen='welcome'] .advisor-body::-webkit-scrollbar-thumb {
  background: transparent;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-welcome {
  display: block;
}

.advisor-visual-welcome-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(13px);
  color: #78d1e4;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.3;
  text-transform: uppercase;
}

.advisor-visual-welcome-kicker > span {
  width: 36px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.advisor-visual-welcome-title {
  max-width: 410px;
  margin-top: 17px;
  transform: translateX(13px);
  color: #fff;
  font-size: 27px;
  font-weight: 760;
  line-height: 1.12;
  text-wrap: balance;
}

.advisor-visual-families {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.advisor-visual-families > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 0 13px;
  text-align: center;
}

.advisor-visual-families > div + div {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.advisor-visual-families > div > span {
  width: 62px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #c5d5e4;
}

.advisor-visual-families svg {
  width: 58px;
  height: 46px;
  stroke-width: 1.45;
}

.advisor-visual-families strong,
.advisor-visual-families small {
  display: block;
}

.advisor-visual-families strong {
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.3;
}

.advisor-visual-families small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .76);
  font-size: 11px;
  line-height: 1.45;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-trust {
  display: block;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts {
  margin-top: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts > span {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding-right: 15px;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts > span + span {
  padding-left: 15px;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #6fd0e2;
  font-style: normal;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts i svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.4;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts b {
  min-width: 0;
  font-weight: inherit;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts strong {
  font-size: 13px;
  line-height: 1.25;
}

.advisor-shell[data-screen='welcome'] .advisor-visual-facts small {
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 1.35;
}

.advisor-shell[data-screen='welcome'] .advisor-header {
  min-height: 90px;
  display: flex;
  align-items: center;
  padding: 0 clamp(40px, 4.25vw, 68px);
  border-bottom-color: #dce4ed;
}

.advisor-shell[data-screen='welcome'] .advisor-header-row {
  width: 100%;
  min-height: 89px;
  justify-content: flex-start;
}

.advisor-shell[data-screen='welcome'] .advisor-header-branding {
  gap: 31px;
}

.advisor-shell[data-screen='welcome'] .advisor-header-context {
  display: inline-flex;
}

@media (min-width: 961px) {
  .advisor-shell[data-screen='welcome'] .advisor-header-branding {
    transform: translateX(-20px);
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-context {
    font-size: 15px;
  }
}

.advisor-shell[data-screen='welcome'] .advisor-brand-logo {
  width: 136px;
}

.advisor-shell[data-screen='welcome'] .advisor-body {
  background: #fff;
}

.advisor-shell[data-screen='welcome'] .advisor-screen {
  position: relative;
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding: 62px clamp(40px, 4.25vw, 68px) 0;
}

.advisor-shell[data-screen='welcome'] .advisor-resume {
  position: absolute;
  top: 7px;
  right: clamp(40px, 4.25vw, 68px);
  width: min(520px, calc(100% - 80px));
  min-height: 44px;
  margin: 0;
  padding: 4px 5px 4px 12px;
}

.advisor-shell[data-screen='welcome'] .advisor-resume button {
  min-height: 44px;
}

.advisor-shell[data-screen='welcome'] .advisor-step-label {
  display: none;
}

.advisor-shell[data-screen='welcome'] .advisor-title {
  max-width: 690px;
  color: #0b2f61;
  font-size: 47px;
  font-weight: 760;
  line-height: 1.04;
}

.advisor-shell[data-screen='welcome'] .advisor-subtitle {
  max-width: 640px;
  margin-top: 17px;
  color: #53647c;
  font-size: 15.5px;
  line-height: 1.55;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
  gap: 14px;
  margin-top: 24px;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button {
  min-height: 60px;
  padding-inline: 26px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 540;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button:first-child {
  min-width: 275px;
  border-color: #042e5e;
  background: #042e5e;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button--secondary {
  min-width: 234px;
  border-color: #173e71;
  color: #123667;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 31px;
  overflow: visible;
  border: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span {
  min-height: 52px;
  gap: 14px;
  padding: 0 18px;
  color: #0b2f61;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span:first-child {
  padding-left: 8px;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span + span {
  border-left: 1px solid #dce4ed;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance svg {
  width: 28px;
  height: 28px;
  color: #0b2f61;
  stroke-width: 1.6;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span:first-child svg {
  color: #2da8c4;
}

.advisor-welcome-reassurance > span > span,
.advisor-welcome-reassurance b,
.advisor-welcome-reassurance small {
  display: block;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance b {
  font-size: 13px;
  font-weight: 720;
  line-height: 1.3;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance small {
  margin-top: 4px;
  color: #334d70;
  font-size: 12px;
  line-height: 1.3;
}

.advisor-shell[data-screen='welcome'] .advisor-resume {
  margin-top: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 31px;
  border-color: #d7e0ea;
  border-radius: 6px;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div,
.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
  position: relative;
  min-height: 98px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 18px 44px 18px 19px;
  border: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
  border-left: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path > div:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: 8px;
  color: #0b2f61;
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.advisor-welcome-path-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e9eef5;
  color: #0b2f61;
  font-size: 18px;
  font-weight: 520;
  font-variant-numeric: tabular-nums;
}

.advisor-welcome-path > div:first-child .advisor-welcome-path-index {
  background: #118ca3;
  color: #fff;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path b {
  color: #0b2f61;
  font-size: 13px;
  font-weight: 740;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-path small {
  margin-top: 6px;
  color: #344f72;
  font-size: 11.5px;
  line-height: 1.35;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
  height: 172px;
  min-height: 172px;
  grid-template-columns: minmax(290px, 38.5%) minmax(0, 61.5%);
  margin: 30px calc(clamp(40px, 4.25vw, 68px) * -1) 0;
  padding: 18px 60px;
  overflow: visible;
  border: 0;
  border-top: 1px solid #e1e7ef;
  border-bottom: 1px solid #e1e7ef;
  border-radius: 0;
  background: #f6f9fc;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance,
.advisor-shell[data-screen='welcome'] .advisor-google-proof {
  height: 100%;
  min-height: 0;
  background: transparent;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance {
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0 20px 0 0;
  border-right: 1px solid #d7e0ea;
  border-bottom: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance-photo {
  width: 94px;
  height: 94px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: #e8eef6;
  box-shadow: 0 0 0 1px rgba(11, 47, 97, .08);
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance strong {
  color: #0b2f61;
  font-size: 14px;
  line-height: 1.45;
}

.advisor-shell[data-screen='welcome'] .advisor-welcome-assurance small {
  margin-top: 7px;
  color: #50647e;
  font-size: 10.5px;
  line-height: 1.45;
}

.advisor-shell[data-screen='welcome'] .advisor-google-proof {
  grid-template-columns: minmax(190px, 42.5%) minmax(0, 57.5%);
  grid-template-areas: 'score quote';
  align-items: center;
  gap: 0;
  padding: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-google-link {
  min-width: 0;
  min-height: 118px;
  grid-area: score;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 9px;
  padding: 0 26px;
  border-left: 0;
  border-right: 1px solid #d7e0ea;
  color: #0b2f61;
  text-align: left;
  text-decoration: none;
}

.advisor-shell[data-screen='welcome'] .advisor-google-score {
  grid-area: auto;
  display: grid;
  gap: 5px;
}

.advisor-shell[data-screen='welcome'] .advisor-google-stars {
  flex-wrap: nowrap;
  gap: 3px;
  color: #dc6613;
}

.advisor-shell[data-screen='welcome'] .advisor-google-stars svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke-width: 1.25;
}

.advisor-shell[data-screen='welcome'] .advisor-google-score-value {
  align-items: baseline;
  gap: 8px;
}

.advisor-shell[data-screen='welcome'] .advisor-google-score-value strong {
  color: #0b2f61;
  font-size: 31px;
  font-weight: 760;
  line-height: 1;
}

.advisor-shell[data-screen='welcome'] .advisor-google-score-value small {
  color: #344f72;
  font-size: 10px;
}

.advisor-google-volume {
  grid-area: auto;
  display: block;
  color: #0b2f61;
  font-size: 10.5px;
  font-weight: 720;
  line-height: 1.35;
}

.advisor-shell[data-screen='welcome'] .advisor-google-quote {
  position: relative;
  min-width: 0;
  grid-area: quote;
  align-self: center;
  margin: 0;
  padding: 3px 0;
  border: 0;
}

.advisor-shell[data-screen='welcome'] .advisor-google-quote::before {
  content: none;
  position: absolute;
  top: -5px;
  left: 17px;
  color: #2da8c4;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.advisor-shell[data-screen='welcome'] .advisor-google-quote blockquote {
  max-width: 32ch;
  color: #183b6a;
  font-size: 13px;
  font-weight: 520;
  line-height: 1.5;
}

.advisor-shell[data-screen='welcome'] .advisor-google-quote figcaption {
  margin-top: 9px;
  color: #50647e;
  font-size: 10.5px;
}

.advisor-welcome-products {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 27px;
  margin: 0 calc(clamp(40px, 4.25vw, 68px) * -1);
  padding: 60px 60px 54px;
  background: #fbfcfe;
}

.advisor-welcome-products h2 {
  margin: 4px 0 0;
  color: #0b2f61;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.22;
}

.advisor-welcome-product-strip {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.advisor-welcome-product-strip button {
  position: relative;
  min-width: 0;
  height: 144px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #d8e0e9;
  border-radius: 6px;
  background: #fff;
  color: #fff;
  cursor: pointer;
  transition:
    border-color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

.advisor-welcome-product-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
  transition: transform var(--advisor-motion-screen) var(--advisor-ease-out);
}

.advisor-welcome-product-strip button > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 10px 9px;
  background: linear-gradient(to bottom, transparent, rgba(4, 46, 94, .92));
  color: #fff;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.3;
  text-align: left;
}

.advisor-welcome-products-arrow {
  position: absolute;
  top: 82px;
  right: 47px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d7e0ea;
  border-radius: 50%;
  background: #fff;
  color: #0b2f61;
  box-shadow: 0 2px 6px rgba(15, 38, 77, .08);
  cursor: pointer;
  transition:
    border-color var(--advisor-motion-state) var(--advisor-ease-out),
    transform var(--advisor-motion-fast) var(--advisor-ease-out);
}

.advisor-welcome-products-arrow svg {
  width: 20px;
  height: 20px;
}

.advisor-welcome-product-strip button:focus-visible,
.advisor-welcome-products-arrow:focus-visible {
  outline: 2px solid var(--advisor-accent-dark);
  outline-offset: 3px;
}

@media (hover: hover) {
  .advisor-welcome-product-strip button:hover,
  .advisor-welcome-products-arrow:hover {
    border-color: var(--advisor-brand);
    transform: translateY(-2px);
  }

  .advisor-welcome-product-strip button:hover img {
    transform: scale(1.025);
  }
}

.advisor-welcome-product-strip button:active,
.advisor-welcome-products-arrow:active {
  transform: scale(.96);
}

@media (min-width: 961px) and (max-width: 1320px) {
  .advisor-shell[data-screen='welcome'] {
    grid-template-columns: 40vw minmax(0, 1fr);
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy {
    padding-inline: 30px;
  }

  .advisor-visual-welcome-title {
    font-size: 23px;
  }

  .advisor-visual-families > div {
    padding-inline: 8px;
  }

  .advisor-visual-families small {
    font-size: 9.5px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-facts > span {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 7px;
    padding-right: 9px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-facts > span + span {
    padding-left: 9px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-facts i,
  .advisor-shell[data-screen='welcome'] .advisor-visual-facts i svg {
    width: 27px;
    height: 27px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-facts strong {
    font-size: 11px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-facts small {
    font-size: 9px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header,
  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding-inline: 38px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding-top: 46px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 40px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button:first-child,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button--secondary {
    min-width: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span {
    padding-inline: 12px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid,
  .advisor-welcome-products {
    margin-inline: -38px;
    padding-inline: 38px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
    grid-template-columns: minmax(240px, 38.5%) minmax(0, 61.5%);
    padding-inline: 38px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-link {
    padding-inline: 18px;
  }

  .advisor-welcome-products {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
  }

  .advisor-welcome-products-arrow {
    right: 18px;
  }
}

@media (min-width: 1321px) {
  .advisor-visual-families {
    margin-right: 10px;
    margin-left: -18px;
  }
}

@media (min-width: 961px) and (max-height: 780px) {
  .advisor-shell[data-screen='welcome'] .advisor-visual {
    grid-template-rows: minmax(0, 50%) minmax(0, 50%);
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .advisor-visual-welcome-title {
    margin-top: 10px;
    font-size: 22px;
  }

  .advisor-visual-families {
    margin-top: 15px;
  }

  .advisor-visual-families > div > span,
  .advisor-visual-families svg {
    width: 38px;
    height: 34px;
  }

  .advisor-visual-families strong {
    margin-top: 6px;
    font-size: 11px;
  }

  .advisor-visual-families small {
    margin-top: 4px;
    font-size: 9px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-trust {
    margin-top: 15px;
    padding-top: 13px;
  }
}

@media (min-width: 961px) and (max-width: 1100px) {
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
    min-height: 88px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 9px;
    padding: 13px 24px 13px 12px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div:not(:last-child)::after {
    right: 3px;
    font-size: 18px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path-index {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path b {
    font-size: 12px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path small {
    margin-top: 4px;
    font-size: 10px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-assurance {
    height: auto;
    min-height: 104px;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid #d7e0ea;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-assurance-photo {
    width: 72px;
    height: 72px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-proof {
    height: 126px;
    min-height: 126px;
  }
}

@media (max-width: 960px) {
  .advisor-shell[data-screen='welcome'] {
    scrollbar-width: none;
  }

  .advisor-shell[data-screen='welcome']::-webkit-scrollbar {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header {
    min-height: 70px;
    padding: 0 24px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-row {
    min-height: 69px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-branding {
    gap: 20px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-brand-logo {
    width: 116px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-context {
    font-size: 12px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding: 34px 32px 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-resume {
    position: static;
    width: auto;
    min-height: 0;
    margin-top: 18px;
    padding: 13px 14px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-resume button {
    min-height: 44px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    max-width: 690px;
    font-size: 40px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid,
  .advisor-welcome-products {
    margin-inline: -32px;
    padding-inline: 32px;
  }

  .advisor-welcome-products {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
  }

  .advisor-welcome-products-arrow {
    right: 16px;
  }
}

@media (max-width: 680px) {
  .advisor-shell[data-screen='welcome'] .advisor-header {
    min-height: 64px;
    padding-inline: 18px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-row {
    min-height: 63px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-branding {
    gap: 13px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-brand-logo {
    width: 105px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-context {
    gap: 5px;
    font-size: 11px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-context i,
  .advisor-shell[data-screen='welcome'] .advisor-header-context svg {
    width: 15px;
    height: 15px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding: 27px 18px 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 32px;
    line-height: 1.08;
  }

  .advisor-shell[data-screen='welcome'] .advisor-subtitle {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.5;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
    gap: 9px;
    margin-top: 21px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button:first-child,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions .advisor-button--secondary {
    min-width: 0;
    min-height: 50px;
    font-size: 14px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span:first-child {
    min-height: 50px;
    padding: 9px 4px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance > span + span {
    border-top: 1px solid #dce4ed;
    border-left: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
    min-height: 72px;
    padding: 13px 44px 13px 14px;
    border: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div + div {
    border-top: 1px solid #dce4ed;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-path > div:not(:last-child)::after {
    content: '↓';
    right: 14px;
    font-size: 18px;
  }

  .advisor-welcome-path-index {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-proof-grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    margin: 24px -18px 0;
    padding: 18px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-assurance {
    height: auto;
    min-height: 108px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid #d7e0ea;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-assurance-photo {
    width: 56px;
    height: 56px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-proof {
    height: auto;
    min-height: 112px;
    grid-template-columns: minmax(130px, 42%) minmax(0, 58%);
    padding-top: 15px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-link {
    min-height: 96px;
    padding: 0 16px 0 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-score-value strong {
    font-size: 27px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-quote {
    display: block;
    padding-left: 30px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-quote::before {
    left: 11px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-google-quote blockquote {
    font-size: 11.5px;
  }

  .advisor-welcome-products {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 -18px;
    padding: 24px 18px 46px;
  }

  .advisor-welcome-products h2 {
    font-size: 20px;
  }

  .advisor-welcome-product-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-snap-type: x proximity;
  }

  .advisor-welcome-product-strip button {
    width: 178px;
    height: 130px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .advisor-welcome-products-arrow {
    display: none;
  }
}

@media (max-width: 360px) {
  .advisor-shell[data-screen='welcome'] .advisor-header-context {
    display: none;
  }

  .advisor-shell[data-screen='welcome'] .advisor-title {
    font-size: 28px;
  }
}

@media (max-width: 960px) and (max-height: 560px) and (orientation: landscape) {
  .advisor-shell[data-screen='welcome'] .advisor-header {
    min-height: 54px;
    padding-top: 0;
  }

  .advisor-shell[data-screen='welcome'] .advisor-header-row {
    min-height: 53px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-brand-logo {
    width: 94px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-screen {
    padding-top: 18px;
  }

  .advisor-shell[data-screen='welcome'] .advisor-welcome-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-welcome-product-strip button,
  .advisor-welcome-product-strip img,
  .advisor-welcome-products-arrow {
    transition-duration: .01ms;
  }
}

/* Final mobile composition: a shallow photo header, then the task. */
@media (max-width: 960px) {
  .advisor-shell[data-screen='welcome'] .advisor-visual {
    height: 12rem;
    min-height: 12rem;
    grid-template-rows: 12rem !important;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-media {
    height: 12rem;
    min-height: 12rem;
    grid-row: 1;
  }

  .advisor-shell[data-screen='welcome'] .advisor-visual-copy {
    display: none !important;
  }
}

/* Final mobile readability pass: prospect-facing copy remains comfortably legible. */
@media (max-width: 820px) {
  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance b,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-reassurance small,
  .advisor-shell[data-screen='welcome'] .advisor-resume span,
  .advisor-shell[data-screen='welcome'] .advisor-resume button,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path b,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-path small,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-assurance small,
  .advisor-shell[data-screen='welcome'] .advisor-google-score-value small,
  .advisor-shell[data-screen='welcome'] .advisor-google-volume,
  .advisor-shell[data-screen='welcome'] .advisor-google-quote blockquote,
  .advisor-shell[data-screen='welcome'] .advisor-google-quote figcaption,
  .advisor-shell[data-screen='welcome'] .advisor-welcome-product-strip button > span,
  .visual-lightbox-caption {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .advisor-shell[data-screen='welcome'] .advisor-header-context {
    display: none;
  }
}

.advisor-priority-study {
  margin: 0 0 24px;
  padding: 20px;
  border: 1px solid #a5cdd3;
  border-left: 4px solid #247b87;
  border-radius: 8px;
  background: #f2f9fa;
  color: #0f264d;
}
.advisor-priority-study > strong { font-size: 18px; }
.advisor-priority-study p { margin: 8px 0 16px; font-size: 15px; line-height: 1.6; }
.advisor-priority-study .advisor-button { white-space: normal; }
.advisor-result-map-grid:has(> :only-child) { grid-template-columns: minmax(0, 1fr); }
.advisor-detail-cta a.advisor-button { text-decoration: none; text-align: center; }

/* A named shortcut keeps manual covers visible without adding another family. */
.advisor-bab-shortcut {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin: 8px 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--advisor-brand);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.advisor-bab-shortcut svg { width: 24px; height: 24px; flex-shrink: 0; }
.advisor-bab-shortcut:hover span:first-of-type { text-decoration: underline; text-underline-offset: 3px; }
.advisor-bab-shortcut:focus-visible { outline: 2px solid var(--advisor-accent-dark); outline-offset: 3px; }
