:root {
  color-scheme: light;
  --bg: #eef6f3;
  --surface: #ffffff;
  --surface-2: #f7fbfa;
  --ink: #172321;
  --muted: #60706d;
  --line: #d7e5e0;
  --teal: #0f766e;
  --teal-dark: #0a4f4a;
  --green: #33a06f;
  --blue: #3978d4;
  --coral: #e96f53;
  --amber: #e5a943;
  --shadow: 0 24px 70px rgba(15, 79, 74, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(51, 160, 111, 0.18), transparent 30rem),
    linear-gradient(135deg, #edf7f3 0%, #f7fbfa 45%, #eef5fb 100%);
}

button,
a,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.journey {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 28px;
  display: none;
  flex-direction: column;
  gap: 24px;
  background: #0b3f3c;
  color: #ecfffb;
  overflow-y: auto;
}

.brand {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 228px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal-dark);
  padding: 8px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  margin-top: 4px;
  color: #afcfca;
  font-size: 13px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  width: 100%;
  min-height: 66px;
  padding: 12px;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-areas:
    "num title"
    "num meta";
  gap: 2px 12px;
  text-align: left;
  color: #d6ebe7;
  background: transparent;
  border: 1px solid rgba(236, 255, 251, 0.12);
  border-radius: var(--radius);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.step:hover,
.step.is-active {
  background: rgba(236, 255, 251, 0.1);
  border-color: rgba(236, 255, 251, 0.32);
}

.step.is-active {
  transform: translateX(4px);
}

.step span {
  grid-area: num;
  align-self: center;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(236, 255, 251, 0.1);
  color: #bceee0;
  font-size: 13px;
  font-weight: 800;
}

.step strong {
  grid-area: title;
  font-size: 15px;
}

.step small {
  grid-area: meta;
  color: #a9c8c3;
  font-size: 12px;
}

.rail-card {
  margin-top: auto;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(236, 255, 251, 0.1);
  border: 1px solid rgba(236, 255, 251, 0.18);
}

.rail-card span,
.section-tag,
.page-label {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.rail-card span {
  color: #9fe2d1;
}

.rail-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

.rail-card p {
  margin: 8px 0 0;
  color: #bdd8d4;
  font-size: 14px;
  line-height: 1.5;
}

.main {
  min-width: 0;
  padding: 16px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.topbar-actions [data-reset] {
  display: none;
}

.language-switch {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 3px;
  gap: 3px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-option {
  width: 30px;
  min-width: 30px;
  height: 28px;
  min-height: 28px;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.lang-option.is-active {
  background: #e2f8ef;
  box-shadow: inset 0 0 0 2px var(--teal);
}

.topbar h1 {
  max-width: 760px;
  margin: 7px 0 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

.public-heading {
  display: grid;
  gap: 12px;
}

.public-logo {
  width: min(220px, 56vw);
  height: auto;
  display: block;
  border-radius: 8px;
}

.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;
}

.view {
  display: none;
}

.view.is-visible {
  display: block;
}

.hero-grid,
.result-layout,
.vsl-layout,
.commerce-grid,
.upsell-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  align-items: stretch;
}

.quiz-direct {
  display: grid;
  place-items: center;
}

.result-layout {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.intro-panel,
.quiz-card,
.result-main,
.profile-meter,
.vsl-side,
.offer-panel,
.checkout-card,
.upsell-panel,
.members-header,
.welcome-band {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 229, 224, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro-panel {
  min-height: 640px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trust-row span {
  padding: 8px 10px;
  color: var(--teal-dark);
  background: #e2f8ef;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

#quiz-title,
#result-title,
#vsl-title {
  margin: 0;
  font-size: 48px;
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-panel > p,
.result-main > p,
.vsl-side > p,
.offer-panel > p,
.upsell-panel p,
.members-header p,
.welcome-band p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.support-copy {
  max-width: 690px;
}

.medical-note {
  display: block;
  max-width: 720px;
  margin-top: 20px;
  color: #66736f;
  font-size: 13px;
  line-height: 1.55;
}

.primary-action,
.ghost-action,
.outline-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.primary-action {
  width: fit-content;
  margin-top: 28px;
  color: #ffffff;
  background: var(--coral);
  border: 1px solid #d9573d;
  box-shadow: 0 14px 26px rgba(233, 111, 83, 0.25);
}

.primary-action:hover,
.ghost-action:hover,
.outline-action:hover {
  transform: translateY(-1px);
}

#learnMore {
  width: min(100%, 540px);
  min-height: 58px;
  padding: 12px 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #f0563d, #c93424);
  border-color: #b92c1f;
  font-size: 16px;
  line-height: 1.18;
  text-align: center;
  box-shadow: 0 18px 34px rgba(201, 52, 36, 0.34);
}

#learnMore:hover {
  box-shadow: 0 22px 42px rgba(201, 52, 36, 0.4);
}

.ghost-action {
  color: var(--teal-dark);
  background: #e9f7f3;
  border: 1px solid #cae8df;
}

.outline-action {
  flex: 0 0 auto;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
}

.quiz-card {
  width: min(720px, 100%);
  min-height: min(640px, calc(100vh - 106px));
  padding: clamp(20px, 4vw, 34px);
  display: flex;
  flex-direction: column;
}

.progress-line {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.progress-line div {
  height: 9px;
  overflow: hidden;
  background: #e6f1ee;
  border-radius: 999px;
}

.progress-line i {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: inherit;
  transition: width 180ms ease;
}

.quiz-card h3 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0;
}

.answer-list {
  display: grid;
  gap: 12px;
}

.answer-list:has(.gender-card) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.answer-list:has(.tile-card) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.answer {
  min-height: 66px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  font-size: 15px;
  line-height: 1.35;
}

.answer::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #9abbb4;
  flex: 0 0 auto;
}

.answer.is-selected {
  background: #e1f7ed;
  border-color: #8fd8ba;
}

.answer.is-selected::before {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 4px #e1f7ed;
  background: var(--teal);
}

.gender-card {
  min-height: 330px;
  padding: 0;
  display: grid;
  align-content: stretch;
  overflow: hidden;
  background: #f3fbfa;
  border-width: 2px;
  box-shadow: 0 16px 34px rgba(15, 79, 74, 0.1);
}

.gender-card::before {
  display: none;
}

.gender-card:nth-child(2) {
  background: #fff4ef;
  border-color: #f2c8be;
}

.gender-card.is-selected {
  background: #e8f8f4;
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.2);
}

.gender-card:nth-child(2).is-selected {
  background: #fff0ea;
  border-color: var(--coral);
  box-shadow: 0 18px 38px rgba(233, 111, 83, 0.2);
}

.gender-art {
  min-height: 260px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.gender-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gender-label {
  min-height: 58px;
  margin: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0e9b9b, #087c80);
  border-radius: 8px;
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(8, 124, 128, 0.2);
}

.gender-card:nth-child(2) .gender-label {
  background: linear-gradient(135deg, #fb765f, #e95c48);
  box-shadow: 0 12px 22px rgba(233, 92, 72, 0.2);
}

.tile-card {
  min-height: 128px;
  padding: 14px;
  display: grid;
  place-items: center;
  gap: 9px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f2fbf8);
  border-width: 2px;
}

.tile-card::before {
  display: none;
}

.tile-card .answer-icon {
  width: 48px;
  height: 48px;
  font-size: 28px;
  background: #e2f8ef;
  border-color: #cbeee1;
}

.tile-card > span:last-child {
  font-weight: 850;
  line-height: 1.2;
}

.tile-card.is-selected {
  background: #e1f7ed;
  border-color: var(--teal);
  box-shadow: 0 14px 26px rgba(15, 118, 110, 0.16);
}

.answer-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.14);
  font-size: 22px;
}

.lead-field {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lead-field-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #e2f8ef;
  font-size: 26px;
}

.lead-field input {
  width: 100%;
  min-width: 0;
  height: 48px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfe2dc;
  border-radius: var(--radius);
  padding: 0 14px;
  font-size: 18px;
  font-weight: 750;
  outline: none;
}

.lead-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.quiz-actions {
  margin-top: 18px;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.result-main,
.vsl-side,
.offer-panel,
.checkout-card,
.profile-meter,
.upsell-panel article,
.app-preview,
.members-header,
.welcome-band {
  padding: 30px;
}

.result-main h1,
.vsl-side h1,
.result-main h2,
.vsl-side h2,
.offer-panel h2,
.upsell-panel h2,
.members-header h2 {
  margin-top: 10px;
  font-size: 40px;
}

#result .result-main {
  padding: 24px;
}

#result-title {
  font-size: clamp(29px, 6vw, 38px);
  line-height: 1.04;
}

#result .result-main > p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.42;
}

#transition-copy {
  margin-top: 14px;
  font-weight: 850;
}

#result #learnMore {
  margin-top: 14px;
}

.insight-box {
  margin-top: 16px;
  padding: 14px;
  background: #eaf7f2;
  border: 1px solid #cde9df;
  border-radius: var(--radius);
}

.insight-box p {
  margin: 6px 0 0;
  color: #41524f;
  font-size: 14px;
  line-height: 1.42;
}

.life-compare {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.life-compare article {
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff8f5;
}

.life-compare article:last-child {
  background: #eaf7f2;
  border-color: #cde9df;
}

.life-compare span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
}

.life-compare article:last-child span {
  color: var(--teal);
}

.life-compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.life-compare li {
  position: relative;
  padding-left: 20px;
  color: #45534f;
  font-size: 13px;
  line-height: 1.32;
}

.life-compare li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--coral);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.life-compare article:last-child li::before {
  content: "✓";
  background: var(--teal);
}

.change-panel {
  margin-top: 14px;
  padding: 15px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 82, 77, 0.96), rgba(15, 118, 110, 0.96)),
    #07524d;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(7, 82, 77, 0.2);
}

.change-panel strong {
  display: block;
  font-size: clamp(20px, 5vw, 27px);
  line-height: 1.08;
  letter-spacing: 0;
}

.change-panel ul {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.change-panel li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.34;
}

.change-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #07524d;
  background: #baf3d8;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 950;
}

.profile-meter {
  display: grid;
  align-content: center;
  gap: 28px;
}

#result .profile-meter {
  display: none;
}

.meter-ring {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 58%, transparent 59%),
    conic-gradient(var(--coral) 0 72%, #dce9e6 72% 100%);
}

.meter-ring span,
.meter-ring small {
  grid-area: 1 / 1;
}

.meter-ring span {
  margin-top: -18px;
  font-size: 54px;
  font-weight: 900;
}

.meter-ring small {
  margin-top: 72px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.profile-meter ul,
.module-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-meter li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: #4b5e5a;
  border-top: 1px solid var(--line);
}

.profile-meter li span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.video-frame {
  overflow: hidden;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #081f1e;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.review-section {
  margin-top: 22px;
  padding: clamp(20px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 229, 224, 0.88);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-section h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.08;
}

.review-section > p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.review-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-card img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(15, 79, 74, 0.14);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  font-size: 15px;
}

.review-card span {
  margin-top: 3px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
}

.review-card p {
  margin: 0;
  color: #40524f;
  font-size: 14px;
  line-height: 1.55;
}

.placeholder {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-row {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 18px;
  align-items: center;
}

.cover {
  min-height: 150px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  color: #ffffff;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24), 0 18px 38px rgba(10, 79, 74, 0.18);
}

.cover strong {
  font-size: 22px;
  line-height: 1;
}

.cover span {
  font-size: 12px;
  line-height: 1.25;
}

.cover-main {
  background: linear-gradient(145deg, #0a4f4a, #219578);
}

.cover-green {
  background: linear-gradient(145deg, #277b52, #64be80);
}

.cover-blue {
  background: linear-gradient(145deg, #255da9, #63a6e9);
}

.product-row h3,
.checkout-card h3,
.module h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.product-row p,
.mini-product p,
.module p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.bonus-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-product {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.mini-product .cover {
  min-height: 126px;
}

.checkout-card {
  align-self: start;
}

.price-line {
  margin-top: 22px;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  color: var(--teal);
  text-align: right;
  overflow-wrap: anywhere;
}

.bump {
  margin-top: 20px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff8ec;
  border: 1px solid #f2d49e;
  border-radius: var(--radius);
  color: #584832;
}

.bump input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--coral);
  flex: 0 0 auto;
}

.bump strong {
  display: block;
  color: #2e251b;
}

.upsell-panel {
  grid-template-columns: minmax(0, 1fr) 360px;
  background: linear-gradient(135deg, #ffffff, #eaf7f4);
}

.upsell-panel article,
.app-preview {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-preview {
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 260px);
  min-height: 470px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  background: #092f2d;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(9, 47, 45, 0.28);
}

.phone-header {
  width: 84px;
  height: 8px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.phone-card,
.phone-list,
.phone-cta {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.phone-card {
  min-height: 138px;
  padding: 16px;
  color: #eafff9;
}

.phone-card span,
.phone-card strong {
  display: block;
}

.phone-card span {
  color: #a4dace;
  font-size: 12px;
}

.phone-card strong {
  margin-top: 8px;
  font-size: 22px;
}

.phone-list {
  height: 58px;
}

.phone-list.short {
  width: 74%;
}

.phone-cta {
  height: 42px;
  background: var(--coral);
}

.members-header {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.welcome-band {
  margin-bottom: 18px;
}

.welcome-band strong {
  font-size: 19px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.module {
  min-height: 178px;
  padding: 16px;
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(15, 79, 74, 0.08);
}

.module .cover {
  min-height: 124px;
}

.module .status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  margin-bottom: 10px;
  color: var(--teal-dark);
  background: #e2f8ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.module.locked {
  background: #f8fbfa;
}

.module.locked .status {
  color: #7d5720;
  background: #fff1d2;
}

.lock-icon {
  min-height: 124px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, #ecf3f1 0 12px, #f7fbfa 12px 24px);
}

.lock-icon::before {
  content: "";
  width: 42px;
  height: 36px;
  border-radius: 7px;
  background: #93aaa5;
  box-shadow: 0 -22px 0 -9px transparent, 0 -23px 0 -7px #93aaa5;
}

.unlock-action {
  margin-top: 12px;
  display: inline-flex;
  color: var(--teal);
  font-weight: 850;
  font-size: 14px;
}

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

  .journey {
    position: static;
    height: auto;
    padding: 18px;
  }

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

  .rail-card {
    display: none;
  }

  .hero-grid,
  .result-layout,
  .vsl-layout,
  .commerce-grid,
  .upsell-panel {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .quiz-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .main {
    padding: 12px;
  }

  .topbar,
  .members-header {
    display: flex;
  }

  .topbar-actions {
    display: flex;
    width: auto;
  }

  .language-switch {
    width: auto;
    min-height: 32px;
    justify-content: stretch;
  }

  .lang-option {
    flex: 1;
    width: 29px;
    min-width: 29px;
    height: 27px;
    min-height: 27px;
    padding: 0;
    font-size: 16px;
  }

  .public-logo {
    width: min(170px, 48vw);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  h2,
  #quiz-title,
  #result-title,
  #vsl-title,
  .result-main h2,
  .vsl-side h2,
  .offer-panel h2,
  .upsell-panel h2,
  .members-header h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .topbar h1 {
    font-size: 24px;
  }

  .intro-panel,
  .quiz-card,
  .result-main,
  .vsl-side,
  .offer-panel,
  .checkout-card,
  .profile-meter,
  .upsell-panel article,
  .app-preview,
  .members-header,
  .welcome-band {
    padding: 20px;
  }

  .product-row,
  .module {
    grid-template-columns: 1fr;
  }

  .bonus-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .quiz-actions,
  .dual-actions {
    display: grid;
  }

  .quiz-actions {
    margin-top: 14px;
    grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .quiz-actions .primary-action {
    min-height: 56px;
    font-size: 16px;
    box-shadow: 0 16px 30px rgba(233, 111, 83, 0.32);
  }

  .quiz-actions .ghost-action {
    min-height: 56px;
  }

  .primary-action,
  .ghost-action,
  .outline-action {
    width: 100%;
  }

  .quiz-card {
    min-height: auto;
    padding: 18px;
  }

  .video-frame {
    min-height: auto;
  }

  .vsl-side {
    padding: 20px;
  }

  .life-compare {
    grid-template-columns: 1fr;
  }

  .quiz-card h3,
  .quiz-card h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .answer-list {
    gap: 10px;
  }

  .answer-list:has(.gender-card) {
    gap: 10px;
  }

  .answer-list:has(.tile-card) {
    gap: 10px;
  }

  .answer {
    min-height: 68px;
    padding: 12px;
    font-size: 15px;
  }

  .answer-icon {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .lead-field {
    align-items: stretch;
  }

  .lead-field input {
    height: 50px;
    font-size: 17px;
  }

  .gender-card {
    min-height: 250px;
  }

  .gender-art {
    min-height: 188px;
  }

  .gender-label {
    min-height: 46px;
    margin: 8px;
    font-size: clamp(19px, 5.5vw, 26px);
  }

  .tile-card {
    min-height: 112px;
    padding: 12px 9px;
  }

  .tile-card .answer-icon {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }
}

@media (max-width: 390px) {
  .answer-list:has(.gender-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gender-card {
    min-height: 210px;
  }

  .gender-art {
    min-height: 158px;
  }

  .gender-label {
    min-height: 40px;
    margin: 6px;
    font-size: clamp(16px, 5.2vw, 20px);
  }
}
