:root {
  --ink: #101819;
  --soft-ink: #4f5b5c;
  --dark: #102f2e;
  --dark-2: #0f2427;
  --paper: #f4f6f2;
  --wash: #eef2ed;
  --card: #ffffff;
  --line: #cbd5ce;
  --mint: #dfeee8;
  --lime: #e6fb77;
  --green: #174d3d;
  --shadow: 0 18px 50px rgba(16, 24, 25, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #e8ede8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.42;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  color: var(--soft-ink);
}

.figma-page {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.topbar,
.story-topbar {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 112px;
  background: #ffffff;
}

.logo,
.story-logo,
.result-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.logo-image-link img {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.story-logo.logo-image-link img {
  height: 42px;
}

.result-logo.logo-image-link img {
  height: 36px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}

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

.btn-dark {
  color: #ffffff;
  background: var(--ink);
}

.btn-dark-on-dark {
  color: #ffffff;
  background: #071615;
}

.btn-light {
  color: var(--ink);
  background: #ffffff;
}

.btn-outline {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.btn-lime {
  color: var(--ink);
  background: var(--lime);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.pill {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.pill.lime {
  background: var(--lime);
}

.pill.small {
  min-height: 26px;
  font-size: 11px;
}

.pill.dark-pill {
  color: #ffffff;
  background: var(--dark);
}

.dark-band {
  color: #ffffff;
  background: var(--dark);
}

.dark-band p,
.dark-card p,
.dark-card small {
  color: rgba(255, 255, 255, 0.78);
}

.lime-band {
  background: var(--lime);
}

.hero {
  min-height: 707px;
  display: grid;
  grid-template-columns: 624px 520px;
  gap: 72px;
  padding: 72px 112px 86px;
}

.hero-copy h1 {
  width: 624px;
  margin: 24px 0 22px;
  font-size: 74px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy > p {
  width: 590px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.5;
}

.hero-copy .proof-line {
  margin-top: 24px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.hero-dashboard {
  align-self: center;
  width: 520px;
  min-height: 387px;
  padding: 26px;
  border-radius: 14px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dashboard-head,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-head strong {
  font-size: 13px;
}

.equation {
  display: grid;
  grid-template-columns: 126px 15px 126px 15px 126px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.equation div {
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--wash);
}

.equation div.active {
  min-height: 83px;
  color: #ffffff;
  background: var(--dark);
}

.equation small,
.mini-report span,
.truth-line span,
.small-step span {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.equation div.active small {
  color: var(--lime);
}

.equation strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.equation > span {
  text-align: center;
  color: var(--soft-ink);
  font-size: 24px;
  font-weight: 900;
}

.mini-report {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcfa;
}

.mini-report h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.mini-report p {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.mini-report span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
}

.identify {
  min-height: 1009px;
  padding: 92px 112px;
  background: var(--paper);
}

.two-up {
  display: grid;
  grid-template-columns: 560px 560px;
  gap: 64px;
  align-items: start;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.routing-copy h2,
.source-copy h2,
.next-copy h2 {
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.06;
}

.section-head p,
.routing-copy p,
.source-copy p,
.next-copy p {
  font-size: 18px;
  line-height: 1.5;
}

.start-strip {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr 320px;
  align-items: center;
  gap: 18px;
  margin: 34px 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.start-strip small {
  color: var(--soft-ink);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.situation-card {
  min-height: 145px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.situation-card:nth-child(1),
.situation-card:nth-child(6) {
  min-height: 165px;
}

.situation-card:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.situation-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.18;
}

.situation-card p {
  margin: 0;
  font-size: 14px;
}

.bridge-card {
  min-height: 162px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 30px;
  border-radius: 12px;
}

.bridge-card p {
  width: 640px;
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
}

.dark-card {
  color: #ffffff;
  background: var(--dark);
}

.routing {
  min-height: 819px;
  display: grid;
  grid-template-columns: 545px 617px;
  gap: 54px;
  padding: 92px 112px;
}

.routing-copy {
  align-self: center;
}

.routing-copy h2 {
  margin: 22px 0;
}

.route-preview,
.question-preview,
.cannot-card,
.can-card,
.product-card,
.score-rules,
.result-explain {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.route-preview {
  padding: 30px;
}

.route-preview h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.12;
}

.route-preview > p {
  margin-bottom: 18px;
}

.route-line {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf7;
}

a.route-line {
  transition: transform 0.18s ease;
}

a.route-line:hover {
  transform: translateX(2px);
}

.route-line.active {
  color: #ffffff;
  background: var(--dark);
}

.route-line.active p {
  color: rgba(255, 255, 255, 0.78);
}

.route-line span,
.truth-line span,
.small-step span {
  display: inline-flex;
  width: 34px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mint);
  font-size: 11px;
  font-weight: 900;
}

.route-line.active span {
  background: var(--lime);
}

.route-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.route-line p {
  margin: 0;
  font-size: 13px;
}

.validation,
.home-source,
.bundle-truth,
.choose,
.next-step,
.after-start,
.different,
.faq {
  padding: 92px 112px;
}

.validation {
  min-height: 541px;
}

.compact-grid {
  display: grid;
  gap: 18px;
}

.compact-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.compact-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.info-card,
.step-card,
.choice-card,
.small-step,
.faq-card,
.result-summary,
.q-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

.info-card {
  min-height: 162px;
  padding: 24px 22px;
}

.info-card h3,
.step-card h3,
.small-step h3,
.faq-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.18;
}

.info-card p,
.step-card p,
.small-step p,
.faq-card p {
  margin: 0;
  font-size: 14px;
}

.home-source {
  min-height: 629px;
  display: grid;
  grid-template-columns: 486px 666px;
  gap: 64px;
}

.source-copy h2 {
  margin: 22px 0;
}

.clue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 168px;
  padding: 24px 22px;
}

.step-card .pill {
  margin-bottom: 14px;
}

.bundle-truth {
  min-height: 890px;
  background: #ffffff;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.can-card,
.cannot-card {
  min-height: 556px;
  padding: 30px 28px;
}

.can-card.dark-card {
  color: #ffffff;
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.16);
}

.can-card.dark-card h3,
.can-card.dark-card .truth-line strong {
  color: #ffffff;
}

.can-card.dark-card .truth-line p {
  color: rgba(255, 255, 255, 0.82);
}

.can-card.dark-card .truth-line span {
  background: var(--lime);
}

.can-card h3,
.cannot-card h3 {
  margin: 18px 0;
  font-size: 27px;
  line-height: 1.14;
}

.truth-line {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  min-height: 76px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.cannot-card .truth-line {
  border: 1px solid var(--line);
  background: #f8faf7;
}

.truth-line strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.truth-line p {
  margin: 0;
  font-size: 13px;
}

.product {
  min-height: 578px;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 70px;
  padding: 92px 112px;
}

.product-copy h2 {
  width: 520px;
  margin: 12px 0 14px;
  font-size: 48px;
  line-height: 1.05;
}

.product-copy > p {
  width: 560px;
  font-size: 17px;
}

.product-kicker {
  color: var(--lime) !important;
  font-weight: 900;
}

.product-card {
  align-self: center;
  min-height: 260px;
  padding: 26px;
  color: var(--ink);
  background: #ffffff;
}

.price-row {
  margin-bottom: 22px;
  font-size: 19px;
}

.price-row b {
  font-size: 32px;
}

.product-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-includes article {
  min-height: 116px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8faf7;
}

.product-includes h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
}

.product-includes p,
.product-card > p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 12px;
}

.choose {
  min-height: 536px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.choice-card {
  min-height: 230px;
  padding: 24px 22px;
}

.choice-card.featured {
  color: #ffffff;
  background: var(--dark);
}

.choice-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.choice-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
}

.choice-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
}

.choice-card.featured strong {
  color: var(--lime);
}

.next-step {
  min-height: 615px;
  display: grid;
  grid-template-columns: 440px 710px;
  gap: 66px;
  background: #ffffff;
}

.next-copy h2 {
  margin: 22px 0;
}

.next-list {
  display: grid;
  gap: 10px;
}

.after-start {
  min-height: 486px;
}

.after-start > h2,
.faq > h2,
.why-matters h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.08;
}

.after-start > p {
  width: 620px;
  margin-bottom: 32px;
}

.small-step {
  min-height: 150px;
  padding: 22px 18px;
}

.small-step span {
  margin-bottom: 16px;
}

.different {
  min-height: 595px;
}

.mission-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: 54px 1fr 170px;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 12px;
}

.mission-card b {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.mission-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.mission-card small {
  color: var(--lime);
  font-weight: 900;
}

.resources {
  min-height: 620px;
  display: grid;
  grid-template-columns: 545px 560px;
  gap: 110px;
  padding: 92px 112px;
}

.question-preview {
  padding: 30px;
}

.question-preview h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.faq {
  min-height: 715px;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.faq-card {
  min-height: 126px;
  padding: 24px;
}

.final-cta {
  min-height: 337px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 92px 112px;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: 46px;
}

.final-card {
  width: 360px;
  padding: 18px;
  border-radius: 12px;
  background: #ffffff;
}

.final-card .btn {
  width: 100%;
  margin-bottom: 10px;
}

.final-card a:last-child {
  display: block;
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

/* Story pages */
.story-page {
  min-height: 1600px;
}

.story-topbar {
  height: 80px;
}

.story-main {
  padding: 70px 80px;
}

.story-hero {
  display: grid;
  grid-template-columns: 660px 500px;
  gap: 80px;
  align-items: center;
}

.story-hero h1 {
  margin: 34px 0 48px;
  font-size: 56px;
  line-height: 1.09;
}

.story-hero p {
  width: 650px;
  margin-bottom: 44px;
  font-size: 23px;
  line-height: 1.48;
}

.video-card {
  overflow: hidden;
  position: relative;
  min-height: 300px;
  padding: 0;
  border-radius: 16px;
  color: #ffffff;
  background: #142e36;
}

.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.real-story-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 54px;
  margin-top: 44px;
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.real-story-card h2 {
  margin: 28px 0 0;
  font-size: 31px;
  line-height: 1.18;
}

.real-story-card > p {
  align-self: start;
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.48;
}

.why-matters {
  margin-top: 40px;
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.story-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.story-support-grid .info-card {
  min-height: 180px;
  padding: 30px 28px;
}

.story-support-grid .info-card h3 {
  font-size: 24px;
}

.story-support-grid .info-card p {
  font-size: 17px;
}

.story-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding: 20px 28px;
  border-radius: 12px;
}

.story-bottom h2 {
  margin: 0;
  font-size: 24px;
}

/* Questionnaire */
.questionnaire-page {
  min-height: 4020px;
  background: var(--paper);
}

.question-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 720px 420px;
  gap: 76px;
  align-items: center;
  padding: 90px 80px;
}

.question-hero h1 {
  width: 700px;
  margin: 36px 0 10px;
  font-size: 58px;
  line-height: 1.08;
}

.question-hero p {
  width: 640px;
  font-size: 18px;
  line-height: 1.45;
}

.score-rules {
  min-height: 360px;
  padding: 34px;
  color: var(--ink);
}

.score-rules h2 {
  font-size: 30px;
}

.score-rules .score-context {
  width: auto;
  margin: 8px 0 18px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.45;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  margin: 14px 0;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--wash);
  font-size: 14px;
  font-weight: 800;
}

.score-row-yes {
  background: #d9eadc;
}

.score-rules small {
  display: block;
  margin-top: 28px;
  color: var(--soft-ink);
  font-size: 13px;
}

.question-form {
  min-height: 1800px;
  padding: 64px 80px 78px;
}

.form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.form-heading h2,
.after-answer h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.08;
}

.form-heading p {
  width: 620px;
}

.question-group {
  margin-top: 42px;
}

.question-group-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.question-group-title h3 {
  margin: 0;
  font-size: 24px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.question-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.q-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.q-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.q-title h4 {
  margin: 0;
}

.q-card p {
  margin-bottom: 16px;
  font-size: 14px;
}

.q-card small {
  min-height: 32px;
  margin-top: auto;
  color: var(--soft-ink);
  font-size: 12px;
}

.answer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.answer-row button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--wash);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.answer-row button.selected {
  color: #ffffff;
  background: var(--dark);
  border-color: var(--dark);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.after-answer {
  min-height: 980px;
  padding: 90px 80px;
  background: #ffffff;
}

.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.after-answer > p:not(.section-kicker) {
  width: 620px;
  font-size: 17px;
}

.result-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 74px;
}

.result-summary {
  min-height: 290px;
  padding: 28px;
}

.result-summary > strong {
  display: inline-block;
  margin-left: 16px;
}

.result-summary h3 {
  margin: 24px 0 18px;
  font-size: 28px;
  line-height: 1.1;
}

.question-bottom {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 90px 80px;
  padding: 40px;
  border-radius: 12px;
}

.question-bottom h2 {
  font-size: 30px;
}

/* Result screen */
.result-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.result-frame {
  width: min(100%, 1040px);
  min-height: 660px;
  background: #ffffff;
}

.result-frame header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
}

.result-frame header > a {
  font-weight: 900;
}

.result-layout {
  display: grid;
  grid-template-columns: 320px 520px;
  gap: 32px;
  padding: 50px 58px 0;
}

.score-number {
  margin: 22px 0 8px;
  font-size: 82px;
  line-height: 1;
  font-weight: 950;
}

.score-tier {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.score-side p {
  margin: 82px 0 0;
  font-size: 15px;
}

.score-side .btn {
  margin-top: 18px;
}

.result-explain {
  min-height: 330px;
  padding: 34px;
}

.result-explain h1 {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1.22;
}

.result-explain p {
  font-size: 17px;
  line-height: 1.45;
}

.result-actions {
  display: flex;
  gap: 22px;
  margin: 48px 0 0 410px;
}

@media (max-width: 900px) {
  .figma-page {
    width: min(100%, 390px);
  }

  .topbar,
  .story-topbar {
    height: 72px;
    padding: 0 24px;
  }

  .topbar nav {
    gap: 10px;
  }

  .topbar nav a:not(.btn) {
    display: none;
  }

  .topbar .btn-outline {
    display: none;
  }

  .logo-image-link img {
    height: 30px;
  }

  .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
  }

  .btn-row {
    gap: 10px;
  }

  .hero,
  .routing,
  .home-source,
  .product,
  .next-step,
  .resources,
  .question-hero,
  .story-hero,
  .real-story-card,
  .result-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 914px;
    gap: 28px;
    padding: 38px 24px 46px;
  }

  .hero-copy h1,
  .question-hero h1 {
    width: auto;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-copy > p,
  .question-hero p,
  .product-copy > p,
  .after-start > p,
  .form-heading p,
  .after-answer > p:not(.section-kicker),
  .story-hero p {
    width: auto;
    font-size: 15px;
  }

  .hero-dashboard,
  .product-card,
  .score-rules {
    width: 100%;
  }

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

  .equation > span {
    display: none;
  }

  .identify,
  .validation,
  .home-source,
  .bundle-truth,
  .choose,
  .next-step,
  .after-start,
  .different,
  .faq,
  .routing,
  .resources,
  .product,
  .question-form,
  .after-answer {
    min-height: auto;
    padding: 44px 24px;
  }

  .section-head,
  .two-up {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head h2,
  .routing-copy h2,
  .source-copy h2,
  .next-copy h2,
  .product-copy h2,
  .after-start > h2,
  .faq > h2,
  .form-heading h2,
  .after-answer h2 {
    width: auto;
    font-size: 30px;
  }

  .start-strip,
  .bridge-card,
  .final-cta,
  .question-bottom,
  .mission-card,
  .form-heading {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .situation-grid,
  .compact-grid.four,
  .compact-grid.five,
  .clue-grid,
  .bundle-grid,
  .choice-grid,
  .faq-grid,
  .product-includes,
  .question-grid,
  .question-grid.three,
  .result-card-grid,
  .story-support-grid {
    grid-template-columns: 1fr;
  }

  .bridge-card p {
    width: auto;
    font-size: 17px;
  }

  .route-preview,
  .question-preview,
  .can-card,
  .cannot-card {
    padding: 22px;
  }

  .route-line {
    min-height: 76px;
  }

  .choice-card,
  .situation-card,
  .info-card,
  .step-card,
  .small-step,
  .faq-card,
  .q-card {
    min-height: auto;
  }

  .final-card {
    width: 100%;
  }

  .story-logo.logo-image-link img,
  .result-logo.logo-image-link img {
    height: 30px;
  }

  .story-page {
    min-height: auto;
  }

  .story-main {
    padding: 40px 24px;
  }

  .story-hero {
    gap: 28px;
  }

  .story-hero h1 {
    margin: 24px 0;
    font-size: 36px;
  }

  .video-card {
    min-height: 236px;
    padding: 26px;
  }

  .real-story-card {
    gap: 18px;
    padding: 24px;
  }

  .real-story-card h2 {
    font-size: 27px;
  }

  .real-story-card > p {
    font-size: 16px;
  }

  .story-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .questionnaire-page {
    min-height: auto;
  }

  .question-hero {
    min-height: auto;
    gap: 28px;
    padding: 44px 24px;
  }

  .score-rules {
    min-height: auto;
  }

  .answer-row {
    gap: 8px;
  }

  .question-bottom {
    margin: 44px 24px;
  }

  .result-frame {
    width: 390px;
    min-height: 920px;
  }

  .result-frame header {
    padding: 0 24px;
  }

  .result-layout {
    gap: 28px;
    padding: 40px 24px 0;
  }

  .score-number {
    font-size: 68px;
  }

  .score-side p {
    margin-top: 26px;
  }

  .result-actions {
    flex-direction: column;
    margin: 34px 24px 0;
  }

  .result-actions .btn,
  .question-bottom .btn,
  .final-cta .btn {
    width: 100%;
  }
}
