:root {
  --wellth-slate-950: #182634;
  --wellth-slate-900: #26394c;
  --wellth-slate-700: #4c5d70;
  --wellth-blue: #0573c7;
  --wellth-gold: #fdb83d;
  --wellth-coral: #f88370;
  --wellth-cream: #fbe5c0;
  --wellth-paper: #fbfaf7;
  --wellth-white: #fff;
  --wellth-border: rgba(38, 57, 76, 0.19);
  --wellth-focus: #0573c7;
}

.wellth-assessment,
.wellth-assessment * {
  box-sizing: border-box;
}

.wellth-assessment {
  width: min(100%, 1180px);
  margin: 0 auto;
  color: var(--wellth-slate-950);
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
}

.wellth-assessment button,
.wellth-assessment a {
  font: inherit;
}

.wellth-assessment button {
  color: inherit;
}

.wellth-assessment svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.wellth-assessment button:focus-visible,
.wellth-assessment a:focus-visible,
.wellth-assessment [tabindex="-1"]:focus-visible {
  outline: 3px solid var(--wellth-focus);
  outline-offset: 4px;
}

.wellth-assessment__loading,
.wellth-assessment__noscript {
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--wellth-border);
  background: var(--wellth-paper);
}

.wellth-assessment__panel {
  overflow: hidden;
  border: 1px solid var(--wellth-border);
  border-radius: 2px;
  background: var(--wellth-white);
  box-shadow: 0 30px 90px rgba(24, 38, 52, 0.09);
}

.wellth-assessment__progress {
  padding: 1.25rem clamp(1.4rem, 4vw, 3.4rem) 0;
  background: var(--wellth-slate-950);
  color: var(--wellth-white);
}

.wellth-assessment__progress > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wellth-assessment__progress progress {
  display: block;
  width: 100%;
  height: 5px;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.17);
  color: var(--wellth-gold);
  accent-color: var(--wellth-gold);
}

.wellth-assessment__progress progress::-webkit-progress-bar {
  background: rgba(255, 255, 255, 0.17);
}

.wellth-assessment__progress progress::-webkit-progress-value {
  background: var(--wellth-gold);
}

.wellth-assessment__progress progress::-moz-progress-bar {
  background: var(--wellth-gold);
}

.wellth-assessment__question {
  min-height: 440px;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.4rem, 6vw, 5.7rem) clamp(2rem, 4vw, 3.25rem);
}

.wellth-assessment__eyebrow {
  margin: 0 0 1rem;
  color: #c64f3e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wellth-assessment h2 {
  max-width: 900px;
  margin: 0;
  color: var(--wellth-slate-950);
  font-size: clamp(1.65rem, 3.4vw, 3.15rem);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.08;
  text-wrap: balance;
}

.wellth-assessment__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.wellth-assessment__choice {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.45rem 0.75rem;
  min-height: 142px;
  padding: 1.25rem;
  border: 1px solid var(--wellth-border);
  border-radius: 2px;
  background: var(--wellth-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.wellth-assessment__choice:hover {
  border-color: rgba(5, 115, 199, 0.58);
  box-shadow: 0 14px 30px rgba(24, 38, 52, 0.08);
  transform: translateY(-2px);
}

.wellth-assessment__choice.is-selected {
  border-color: var(--wellth-blue);
  background: #f3f9fd;
  box-shadow: inset 0 0 0 1px var(--wellth-blue);
}

.wellth-assessment__choice-marker {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(38, 57, 76, 0.36);
  border-radius: 50%;
  color: var(--wellth-white);
}

.wellth-assessment__choice.is-selected .wellth-assessment__choice-marker {
  border-color: var(--wellth-blue);
  background: var(--wellth-blue);
}

.wellth-assessment__choice strong {
  align-self: center;
  color: var(--wellth-slate-950);
  font-size: 1rem;
  line-height: 1.25;
}

.wellth-assessment__choice small {
  color: var(--wellth-slate-700);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wellth-assessment__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem clamp(1.4rem, 4vw, 3.4rem);
  border-top: 1px solid var(--wellth-border);
  background: #f8f7f3;
}

.wellth-assessment__controls button,
.wellth-assessment__result-actions button,
.wellth-assessment__cta,
.wellth-assessment__noscript a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.78rem 1.15rem;
  border: 0;
  border-radius: 2px;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}

.wellth-assessment__back {
  background: transparent;
}

.wellth-assessment__next,
.wellth-assessment__cta,
.wellth-assessment__noscript a {
  background: var(--wellth-gold);
  color: var(--wellth-slate-950);
}

.wellth-assessment button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.wellth-assessment__privacy {
  margin: 0;
  padding: 0.9rem 1.4rem;
  background: var(--wellth-slate-950);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.wellth-assessment__privacy strong {
  color: var(--wellth-white);
}

.wellth-assessment__result {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--wellth-border);
  border-radius: 2px;
  background: var(--wellth-white);
  box-shadow: 0 30px 90px rgba(24, 38, 52, 0.09);
}

.wellth-assessment__score {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.2rem);
  background: var(--wellth-slate-950);
  color: var(--wellth-white);
}

.wellth-assessment__score > span {
  color: var(--wellth-gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wellth-assessment__score > strong {
  display: flex;
  align-items: flex-end;
  margin: 1.6rem 0 1.2rem;
  color: var(--wellth-white);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 650;
  letter-spacing: -0.085em;
  line-height: 0.76;
}

.wellth-assessment__score > strong small {
  padding: 0 0 0.5rem 0.3rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.18em;
  letter-spacing: 0;
}

.wellth-assessment__score > p {
  max-width: 14rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.45;
}

.wellth-assessment__result-copy {
  padding: clamp(2.2rem, 6vw, 5.5rem);
}

.wellth-assessment__summary {
  max-width: 720px;
  margin: 1.25rem 0 2.5rem;
  color: var(--wellth-slate-700);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
}

.wellth-assessment__result-copy h3 {
  margin: 0 0 1rem;
  color: var(--wellth-slate-950);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wellth-assessment__priorities {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wellth-assessment__priorities li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--wellth-border);
}

.wellth-assessment__priorities li > span {
  color: var(--wellth-blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.wellth-assessment__priorities strong {
  display: block;
  color: var(--wellth-slate-950);
  font-size: 0.96rem;
}

.wellth-assessment__priorities p {
  margin: 0.3rem 0 0;
  color: var(--wellth-slate-700);
  font-size: 0.84rem;
  line-height: 1.55;
}

.wellth-assessment__disclaimer {
  margin: 1.6rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--wellth-coral);
  background: #fff8f5;
  color: var(--wellth-slate-700);
  font-size: 0.72rem;
  line-height: 1.55;
}

.wellth-assessment__result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.wellth-assessment__result-actions button {
  border: 1px solid var(--wellth-border);
  background: var(--wellth-white);
}

.wellth-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 900px) {
  .wellth-assessment__question {
    min-height: 0;
  }

  .wellth-assessment__choices {
    grid-template-columns: 1fr;
  }

  .wellth-assessment__choice {
    min-height: 0;
  }

  .wellth-assessment__result {
    grid-template-columns: 1fr;
  }

  .wellth-assessment__score {
    min-height: 0;
    padding-block: 3rem;
  }

  .wellth-assessment__score > p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .wellth-assessment__progress {
    padding-inline: 1rem;
  }

  .wellth-assessment__question,
  .wellth-assessment__result-copy {
    padding-inline: 1.1rem;
  }

  .wellth-assessment__controls {
    align-items: stretch;
    padding-inline: 1rem;
  }

  .wellth-assessment__controls button {
    flex: 1 1 0;
    padding-inline: 0.75rem;
  }

  .wellth-assessment__privacy {
    text-align: left;
  }

  .wellth-assessment__score {
    padding: 2.5rem 1.2rem;
  }

  .wellth-assessment__score > strong {
    font-size: clamp(4.6rem, 28vw, 7.2rem);
  }

  .wellth-assessment__result-actions {
    display: grid;
  }

  .wellth-assessment__result-actions > * {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wellth-assessment *,
  .wellth-assessment *::before,
  .wellth-assessment *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .wellth-assessment__choice.is-selected,
  .wellth-assessment__choice-marker {
    border: 2px solid ButtonText;
  }
}

