:root {
  color-scheme: light;
  --ink: #24302b;
  --muted: #63706a;
  --paper: #f7fbf7;
  --white: #fffefa;
  --sage: #6f9b84;
  --sage-dark: #365d4d;
  --clay: #c9795f;
  --rose: #c77780;
  --gold: #c08a28;
  --blue: #6d95aa;
  --mint: #e4f2ea;
  --peach: #ffe4d5;
  --butter: #fff0b8;
  --line: rgba(34, 32, 30, 0.13);
  --shadow: 0 18px 60px rgba(40, 31, 23, 0.13);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 242, 234, 0.9), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(255, 228, 213, 0.78), transparent 26%),
    linear-gradient(180deg, #fbfdf8 0%, var(--paper) 48%, #fff8ef 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 254, 250, 0.9);
  border-bottom: 1px solid rgba(34, 32, 30, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.22), rgba(247, 251, 247, 0.94)),
    linear-gradient(135deg, #fff5dc 0%, #e9f5ec 42%, #fbded4 100%);
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 72px clamp(16px, 4vw, 56px) 34px;
  border: 1px solid rgba(34, 32, 30, 0.1);
  background:
    repeating-linear-gradient(90deg, rgba(34, 32, 30, 0.035) 0 1px, transparent 1px 104px),
    repeating-linear-gradient(0deg, rgba(34, 32, 30, 0.026) 0 1px, transparent 1px 82px);
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0 34% 0 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 254, 250, 0.98), rgba(255, 254, 250, 0.82), rgba(255, 254, 250, 0));
}

.product-sheet,
.transition-map {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(34, 32, 30, 0.16);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0.62;
}

.product-sheet {
  width: min(330px, 34vw);
  min-height: 164px;
  padding: 22px;
  border-radius: var(--radius);
}

.sheet-one {
  right: 5vw;
  top: 18vh;
  transform: rotate(2deg);
}

.sheet-two {
  right: 8vw;
  bottom: 12vh;
  transform: rotate(-2.4deg);
}

.sheet-label,
.preview-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.sheet-line {
  height: 10px;
  margin: 14px 0;
  border-radius: 99px;
  background: rgba(34, 32, 30, 0.14);
}

.sheet-line.strong {
  width: 78%;
  background: rgba(105, 123, 102, 0.38);
}

.sheet-line.short {
  width: 54%;
}

.sheet-two p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.24;
}

.transition-map {
  right: 4vw;
  left: auto;
  top: 48vh;
  display: grid;
  grid-template-columns: repeat(4, minmax(62px, 1fr));
  gap: 1px;
  width: min(360px, 32vw);
  border-radius: var(--radius);
  overflow: hidden;
}

.transition-map span {
  padding: 14px 10px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 540;
  line-height: 1.02;
}

h1 {
  max-width: 820px;
  font-size: 78px;
}

h2 {
  font-size: 50px;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.22;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #45514b;
  font-size: 22px;
}

.hero-actions,
.quiz-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  cursor: pointer;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(34, 32, 30, 0.16);
}

.button.secondary {
  border-color: rgba(34, 32, 30, 0.17);
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
}

.trust-line {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.scenario-band {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow-x: auto;
}

.scenario-track {
  display: flex;
  gap: 10px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

.scenario-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 10px 14px;
  cursor: pointer;
}

.section,
.quiz-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-copy {
  max-width: 660px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.origin-section {
  padding-bottom: 28px;
}

.origin-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(111, 155, 132, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(228, 242, 234, 0.78)),
    var(--white);
  box-shadow: 0 14px 36px rgba(40, 31, 23, 0.08);
  padding: clamp(24px, 5vw, 46px);
}

.origin-card h2 {
  max-width: 800px;
}

.origin-card p:not(.eyebrow) {
  max-width: 830px;
  margin: 0;
  color: #48544e;
  font-size: 20px;
}

.bridge-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 78px max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, rgba(255, 240, 184, 0.34), rgba(255, 228, 213, 0.38), rgba(228, 242, 234, 0.42));
}

.bridge-copy {
  max-width: 760px;
}

.bridge-copy p:not(.eyebrow) {
  color: #48544e;
  font-size: 20px;
}

.moment-grid,
.value-list,
.pain-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

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

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

.moment-card,
.value-list article,
.pain-grid article,
.quiz-card,
.result-panel,
.profile-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(40, 31, 23, 0.07);
}

.moment-card,
.value-list article,
.pain-grid article {
  padding: 22px;
}

.moment-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.moment-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 540;
}

.screen-card {
  background: linear-gradient(180deg, #fffefa, #eaf4f6);
}

.runway-card {
  background: linear-gradient(180deg, #fffefa, #eef4e8);
}

.buckle-card {
  background: linear-gradient(180deg, #fffefa, #ffe9dc);
}

.park-card {
  background: linear-gradient(180deg, #fffefa, #fff2c7);
}

.pain-grid p,
.value-list p,
.moment-card p {
  margin: 0;
  color: var(--muted);
}

.review-section {
  border-top: 1px solid var(--line);
}

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

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 8px 26px rgba(40, 31, 23, 0.07);
  padding: 24px;
}

.review-stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
}

.review-card p {
  margin: 0;
  color: #4d4742;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.42;
}

.review-card span {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 760;
}

.paid-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(22px, 5vw, 52px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.paid-teaser p:not(.eyebrow),
.paid-teaser-box span {
  color: var(--muted);
  font-size: 18px;
}

.paid-teaser-box {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(201, 121, 95, 0.28);
  border-radius: var(--radius);
  background: #fff6f0;
  padding: 24px;
}

.paid-teaser-box strong {
  color: var(--clay);
  font-size: 20px;
}

.paid-teaser-box s {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.profile-preview {
  padding: 34px;
}

.preview-header {
  display: grid;
  gap: 2px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.preview-row span {
  color: var(--muted);
}

.script-box,
.practice-strip {
  margin-top: 18px;
  border-radius: var(--radius);
}

.script-box {
  padding: 20px;
  background: #2e2a25;
  color: var(--white);
}

.script-box span,
.practice-strip span {
  display: block;
  margin-bottom: 8px;
  color: #dfc79d;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.script-box p,
.practice-strip p {
  margin: 0;
}

.practice-strip {
  padding: 18px;
  background: #eef1e7;
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.54fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.quiz-intro {
  position: sticky;
  top: 104px;
}

.quiz-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quiz-card,
.result-panel {
  padding: 38px;
}

.progress-wrap {
  margin-bottom: 28px;
}

#progress-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.progress-track {
  height: 8px;
  border-radius: 99px;
  background: rgba(34, 32, 30, 0.09);
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  transition: width 220ms ease;
}

.question-stage {
  min-height: 330px;
}

.question-title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.05;
}

.question-help {
  margin: 0 0 22px;
  color: var(--muted);
}

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

.option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  cursor: pointer;
  background: rgba(255, 253, 248, 0.86);
}

.option input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sage-dark);
}

.option:has(input:checked) {
  border-color: rgba(63, 84, 70, 0.62);
  background: #eef1e7;
}

.text-field {
  display: grid;
  gap: 8px;
}

.text-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 15px;
  color: var(--ink);
}

.field-note,
.form-error {
  color: var(--muted);
  font-size: 14px;
}

.form-error {
  min-height: 22px;
  margin-top: 10px;
  color: #9a3f35;
}

#back-button[disabled] {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
}

.result-panel {
  grid-column: 1 / -1;
}

body.report-mode .site-header,
body.report-mode .hero,
body.report-mode .scenario-band,
body.report-mode .origin-section,
body.report-mode .moment-section,
body.report-mode .pain-section,
body.report-mode .bridge-section,
body.report-mode .value-section,
body.report-mode .paid-teaser,
body.report-mode .split-section,
body.report-mode .homepage-reviews,
body.report-mode .site-footer,
body.report-mode .quiz-intro,
body.report-mode .quiz-card {
  display: none;
}

body.report-mode .quiz-shell {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.report-screen {
  width: 100%;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(228, 242, 234, 0.96), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(255, 228, 213, 0.78), transparent 28%),
    linear-gradient(180deg, #fffefa 0%, #f7fbf7 48%, #fff8ee 100%);
  box-shadow: none;
  padding: 40px 20px 72px;
}

.report-top,
.report-card,
.upgrade-compare,
.report-excerpts,
.full-plan-grid,
.result-reviews,
.purchase-card {
  width: min(760px, 100%);
  margin-inline: auto;
}

.report-top {
  text-align: center;
}

.report-brand {
  justify-content: center;
  margin-bottom: 28px;
}

.email-confirm {
  margin: 0 0 18px;
  color: #0b8f7f;
  font-size: 14px;
}

.report-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 26px;
  border: 1px solid rgba(111, 155, 132, 0.42);
  border-radius: 999px;
  padding: 5px 16px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.report-top h2 {
  font-size: 40px;
}

.report-top h2 .result-name {
  color: var(--clay);
}

.report-subtitle {
  max-width: 680px;
  margin: 20px auto 0;
  color: #514b46;
  font-size: 18px;
}

.snapshot-wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin: 54px auto 46px;
}

.snapshot-card {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(40, 31, 23, 0.08);
  padding: 14px;
  text-align: center;
}

.snapshot-card span,
.balance-pair span,
.report-excerpts span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.snapshot-card strong {
  display: block;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.12;
  overflow-wrap: normal;
}

.report-card,
.upgrade-compare,
.next-move-panel,
.report-excerpts article,
.purchase-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(40, 31, 23, 0.08);
}

.report-card {
  padding: 32px;
}

.report-card + .report-card {
  margin-top: 30px;
}

.primary-reading h3 {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 520;
}

.primary-reading p,
.report-card p,
.report-excerpts p,
.purchase-card p {
  color: #4d4742;
  font-size: 18px;
}

.report-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0 0 0 18px;
}

.report-card li::marker {
  color: var(--clay);
}

.next-move-panel {
  width: min(860px, 100%);
  margin: 34px auto 0;
  padding: 34px;
}

.next-move-panel h2 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 34px;
}

.next-move-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.next-move-grid article {
  border: 1px solid rgba(36, 48, 43, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 251, 247, 0.72);
  padding: 18px;
}

.next-move-grid article:nth-child(1),
.next-move-grid article:nth-child(2) {
  grid-column: span 3;
}

.next-move-grid article:nth-child(n + 3) {
  grid-column: span 2;
}

.next-move-grid article:nth-child(2n) {
  background: rgba(255, 228, 213, 0.36);
}

.next-move-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.next-move-grid p {
  margin: 0;
  color: #48544e;
  font-size: 15px;
}

.balance-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  width: min(600px, 100%);
  margin: 54px auto;
}

.balance-pair article {
  border-left: 4px solid var(--clay);
  padding: 10px 0 10px 22px;
}

.balance-pair article:nth-child(2) {
  border-left-color: var(--sage);
}

.balance-pair strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 520;
}

.layer-list {
  display: grid;
  gap: 22px;
}

.layer-list p {
  margin: 0;
}

.layer-list b {
  color: var(--clay);
}

.fine-print {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.system-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(760px, 100%);
  margin: 70px auto 36px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.system-divider span {
  height: 1px;
  background: var(--line);
}

.upgrade-compare {
  padding: 36px;
  background: transparent;
  box-shadow: none;
}

.paid-offer {
  width: min(860px, 100%);
  margin-top: 10px;
  border-color: rgba(201, 121, 95, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.94), rgba(247, 251, 247, 0.88)),
    var(--white);
  box-shadow: 0 18px 42px rgba(40, 31, 23, 0.1);
}

.offer-section {
  margin-top: 32px;
  border-top: 1px solid rgba(40, 31, 23, 0.12);
  padding-top: 30px;
}

.offer-section h3 {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 520;
  line-height: 1.08;
  text-align: center;
}

.offer-row-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(40, 31, 23, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  overflow: hidden;
}

.offer-row-list article {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  padding: 22px 24px;
}

.offer-row-list article + article {
  border-top: 1px solid rgba(40, 31, 23, 0.1);
}

.offer-row-list span {
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.offer-row-list p {
  margin: 0;
  color: #4d4742;
  font-size: 16px;
}

.offer-checkout {
  display: grid;
  gap: 16px;
  margin-top: 34px;
  border-top: 1px solid rgba(40, 31, 23, 0.12);
  padding-top: 30px;
  text-align: center;
}

.offer-checkout .button {
  width: min(420px, 100%);
  margin-inline: auto;
  background: var(--clay);
}

.upgrade-compare h2,
.report-excerpts h2,
.full-plan-grid h2 {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 34px;
}

.offer-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.offer-heading > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #4d4742;
  font-size: 18px;
}

.price-stack {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 28px auto 12px;
}

.price-stack strong {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.old-price {
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
  text-decoration: line-through;
}

.savings-badge,
.one-time-note {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.savings-badge {
  background: rgba(201, 121, 95, 0.13);
  color: var(--clay);
}

.one-time-note {
  background: rgba(56, 86, 72, 0.1);
  color: var(--sage-dark);
}

.price-includes {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #5d564f;
  font-size: 15px;
  line-height: 1.55;
}

.compare-grid,
.plan-modules,
.paid-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compare-grid article,
.plan-modules article,
.paid-benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
}

.paid-benefit-grid article {
  border-color: rgba(40, 31, 23, 0.1);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.paid-benefit-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.paid-benefit-grid p {
  margin: 0;
  color: #4d4742;
  font-size: 16px;
}

.paid-column {
  border-color: rgba(201, 121, 95, 0.36) !important;
  background: #fff6f0 !important;
}

.compare-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.price-line {
  color: var(--clay);
  font-weight: 760;
}

.report-excerpts {
  margin-top: 58px;
}

.report-excerpts article {
  margin-top: 22px;
  padding: 24px;
}

.report-excerpts article span {
  color: var(--sage-dark);
  font-weight: 760;
}

.full-plan-grid {
  margin-top: 58px;
}

.result-reviews {
  margin-top: 58px;
  border-top: 0;
  text-align: center;
}

.result-reviews h2 {
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 34px;
}

.result-reviews .review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
  text-align: left;
}

.result-reviews .review-card {
  min-height: 220px;
}

.result-reviews .review-card p {
  font-size: 18px;
}

.plan-modules {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-modules p {
  margin: 0;
  color: var(--muted);
}

.purchase-card {
  display: grid;
  gap: 18px;
  margin-top: 58px;
  padding: 34px;
  background: linear-gradient(180deg, #fff7ed, var(--white));
  text-align: center;
}

.purchase-card .button {
  width: min(420px, 100%);
  margin-inline: auto;
  background: var(--clay);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

.refund-line {
  margin: 0;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 112px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .sheet-two p {
    font-size: 20px;
  }

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

  .product-sheet,
  .transition-map {
    display: none;
  }

  .sheet-one {
    right: -64px;
    top: 18vh;
    width: 260px;
  }

  .sheet-two {
    right: 18px;
    bottom: 14vh;
    width: 240px;
  }

  .transition-map {
    left: -120px;
    top: 28vh;
    width: 380px;
  }

  .moment-grid,
  .value-list,
  .pain-grid,
  .review-grid,
  .paid-teaser,
  .split-section,
  .quiz-shell {
    grid-template-columns: 1fr;
  }

  .quiz-intro {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .snapshot-wrap,
  .compare-grid,
  .paid-benefit-grid,
  .offer-row-list article,
  .plan-modules,
  .balance-pair,
  .next-move-grid,
  .result-reviews .review-grid {
    grid-template-columns: 1fr;
  }

  .next-move-grid article {
    grid-column: auto;
  }

  .report-top h2 {
    font-size: 34px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 16px;
  }

  .hero,
  .section,
  .quiz-shell {
    width: auto;
  }

  .section,
  .quiz-shell {
    padding: 64px 18px;
  }

  .hero {
    padding: 100px 18px 56px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .profile-preview,
  .quiz-card,
  .result-panel {
    padding: 22px;
  }

  .report-screen {
    padding: 28px 16px 54px;
  }

  .report-card,
  .upgrade-compare,
  .next-move-panel,
  .result-reviews .review-card,
  .purchase-card {
    padding: 22px;
  }

  .price-stack {
    display: grid;
    justify-items: center;
  }

  .price-stack strong {
    font-size: 42px;
  }

  .review-card,
  .result-reviews .review-card {
    min-height: auto;
  }

  .review-card p {
    font-size: 18px;
  }

  .result-reviews h2 {
    font-size: 30px;
  }

  .snapshot-wrap {
    gap: 10px;
  }

  .question-title {
    font-size: 29px;
  }

  .hero-actions,
  .quiz-actions,
  .result-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .question-stage {
    min-height: 370px;
  }
}
