:root {
  --bg: #f6f1e8;
  --paper: rgba(255, 252, 247, 0.96);
  --paper-strong: #fffdfa;
  --ink: #241d18;
  --muted: #66584a;
  --line: rgba(36, 29, 24, 0.1);
  --line-strong: rgba(36, 29, 24, 0.16);
  --teal: #1f6a61;
  --teal-deep: #164d47;
  --teal-soft: #e5f0ec;
  --gold: #c49b63;
  --amber: #b66a1e;
  --amber-deep: #9a5416;
  --amber-soft: #f4e2cf;
  --gold-soft: #f4eadc;
  --shadow: 0 22px 54px rgba(74, 53, 31, 0.1);
  --shadow-soft: 0 10px 28px rgba(74, 53, 31, 0.06);
  --frame-narrow: 760px;
  --frame-wide: 1080px;
  --surface-radius: 28px;
  --surface-radius-small: 20px;
  --surface-padding: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(31, 106, 97, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(196, 155, 99, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfaf6 0%, var(--bg) 100%);
}

button,
input {
  font: inherit;
}

.app-shell {
  width: min(100% - 20px, var(--frame-wide));
  margin: 0 auto;
  padding: 20px 0 44px;
}

.topbar,
.question-layout,
.screen-preview,
.screen-results {
  background: var(--paper);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--surface-radius);
  box-shadow: var(--shadow);
}

.topbar,
.landing-single-card,
.sample-report-card,
.question-layout,
.screen-preview,
.payment-simple-card,
.screen-results {
  width: 100%;
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--frame-wide);
  min-height: 88px;
  padding: 20px 28px;
  margin-bottom: 20px;
}

.brand-name {
  margin: 0;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.topbar-restart {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.screen-host {
  min-height: 70vh;
}

.screen {
  display: grid;
  gap: 20px;
  width: 100%;
}

.screen-intro,
.screen-progress-intro {
  justify-items: center;
}

.screen-question,
.screen-preview,
.screen-payment,
.screen-results {
  justify-items: center;
}

.landing-single-card {
  max-width: var(--frame-wide);
  margin: 0 auto;
  padding: 48px 52px 38px;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--surface-radius);
  box-shadow: var(--shadow);
}

.landing-wordmark {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 2.1rem;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.landing-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  min-width: 170px;
  border-radius: 999px;
  background: rgba(196, 155, 99, 0.14);
  color: #59665e;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.landing-hook {
  margin-top: 18px;
  color: #302923;
  font-size: clamp(1.95rem, 4vw, 2.38rem);
  line-height: 1.22;
  text-wrap: balance;
  letter-spacing: -0.02em;
}

.landing-support {
  max-width: 24ch;
  margin: 22px auto 0;
}

.landing-support.secondary-copy {
  max-width: 30ch;
  margin-top: 18px;
}

.prompt-list {
  display: grid;
  gap: 12px;
  margin: 30px auto 0;
}

.prompt-list-check {
  width: fit-content;
  text-align: left;
}

.prompt-list-check p {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
  font-size: 1.05rem;
}

.prompt-list-check p::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: #71896b;
  font-weight: 900;
}

.trust-line {
  margin-top: 24px;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.45;
  max-width: 30ch;
  margin-inline: auto;
}

.cta-row,
.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.landing-cta {
  justify-content: center;
  margin-top: 28px;
}

.landing-footnote {
  margin-top: 14px;
  font-size: 0.92rem;
}

.section-head {
  max-width: 60ch;
  margin-bottom: 16px;
}

.section-head.narrow {
  max-width: 54ch;
  margin-inline: auto;
  text-align: center;
}

.sample-report-host,
.example-grid {
  display: grid;
  width: 100%;
}

.sample-report-card,
.results-detail-card,
.results-mix-card,
.disclaimer-card,
.sidebar-note,
.mini-note,
.primary-hero-card,
.mix-card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.sample-report-card,
.primary-hero-card,
.mix-card,
.results-detail-card,
.results-mix-card {
  padding: 26px;
}

.sample-report-card {
  max-width: var(--frame-wide);
  margin: 0 auto;
  border-radius: var(--surface-radius);
  position: relative;
  overflow: hidden;
}

.example-ribbon {
  position: absolute;
  top: 18px;
  right: -46px;
  z-index: 2;
  padding: 10px 56px;
  background: linear-gradient(135deg, #b8894c, #8b6740);
  color: #fffaf1;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(28deg);
  box-shadow: 0 12px 24px rgba(72, 47, 22, 0.18);
}

.sample-report-top,
.mix-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.sample-stamp-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 96px;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(196, 155, 99, 0.22);
  color: #6d5b3d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.preview-badge.strong {
  background: rgba(196, 155, 99, 0.28);
  color: #665333;
}

.price-stamp {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(31, 95, 88, 0.1);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.price-stamp.subtle {
  background: rgba(31, 95, 88, 0.08);
}

.preview-paybar {
  display: flex;
  justify-content: center;
}

.sample-report-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 22px;
  align-items: start;
}

.sample-primary-card,
.sample-mix-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.sample-primary-card {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.sample-mix-card {
  padding-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2,
.example-primary-title,
#primaryDetailTitle,
.pattern-main-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(3rem, 9vw, 5.2rem);
  max-width: 9ch;
  margin: 18px auto 0;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.lede {
  font-size: 1.14rem;
  max-width: 32ch;
}

.example-primary-title,
.pattern-main-title {
  font-size: clamp(1.95rem, 5vw, 2.95rem);
}

.sample-primary-support {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}

.sample-primary-copy {
  margin-top: 14px;
  max-width: 34ch;
}

.sample-detail-block {
  margin-top: 22px;
}

.detail-block {
  margin-top: 20px;
}

.sample-detail-block h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.detail-block h4 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.sample-bullet-list {
  margin: 0;
  padding-left: 18px;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
}

.sample-bullet-list li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.bullet-list li,
.signal-list li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.sample-note-inline {
  margin-top: 18px;
  font-size: 0.96rem;
}

.mix-total {
  color: var(--teal);
  font-weight: 800;
}

.graph-stack {
  display: grid;
  gap: 14px;
}

.graph-row {
  display: grid;
  gap: 6px;
}

.graph-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
}

.graph-label-group {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.graph-label {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.graph-sublabel {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.graph-percent {
  color: var(--muted);
  font-weight: 700;
}

.bar-track {
  width: 100%;
  height: 11px;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.bar-fill.other {
  background: linear-gradient(90deg, #cab9a9, #9b8a80);
}

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #d58a32, #a95a18);
  border-color: rgba(120, 58, 9, 0.22);
  box-shadow: 0 18px 34px rgba(169, 90, 24, 0.34);
}

.button.primary.large {
  min-width: 190px;
  padding-inline: 26px;
}

.program-link {
  display: inline-flex;
  text-decoration: none;
}

.button.secondary {
  color: var(--teal);
  background: #f7f3ed;
  border-color: rgba(31, 95, 88, 0.16);
}

.button.ghost {
  color: var(--ink);
  background: #f2e7d8;
  border-color: rgba(36, 29, 24, 0.08);
}

.button.primary:hover,
.button.secondary:hover,
.button.ghost:hover {
  box-shadow: 0 16px 28px rgba(36, 29, 24, 0.12);
}

.cta-row.centered {
  justify-content: center;
}

.nav-row {
  justify-content: flex-end;
}

.question-layout {
  max-width: var(--frame-wide);
  display: grid;
  grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
  overflow: hidden;
  align-items: stretch;
}

.question-sidebar,
.payment-side {
  background:
    linear-gradient(180deg, rgba(31, 95, 88, 0.08), rgba(255, 255, 255, 0.6)),
    var(--gold-soft);
}

.sidebar-note {
  padding: 18px;
  background: rgba(255, 253, 250, 0.9);
}

.sidebar-note p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 700;
}

.question-sidebar,
.question-panel,
.payment-panel,
.payment-side,
.screen-preview,
.screen-results {
  padding: 32px;
}

.question-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
}

.progress-box {
  margin: 18px 0 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--ink);
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(31, 26, 23, 0.08);
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.question-panel {
  min-height: 680px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent);
}

.question-helper {
  max-width: 58ch;
  font-size: 0.98rem;
}

.question-header {
  display: grid;
  gap: 10px;
  align-content: start;
  max-width: 60ch;
}

.question-header h3,
.results-detail-card h3,
.results-mix-card h3 {
  letter-spacing: -0.02em;
}

#questionForm {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.option-card {
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-label {
  display: block;
  padding: 18px 18px 18px 56px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
  line-height: 1.5;
  font-size: 1rem;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease,
    background 150ms ease;
}

.option-label::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(31, 95, 88, 0.35);
  border-radius: 999px;
  background: #fff;
}

.option-card.multi .option-label::before {
  border-radius: 7px;
}

.option-card input:checked + .option-label {
  border-color: rgba(31, 95, 88, 0.36);
  background: linear-gradient(180deg, #ffffff, var(--teal-soft));
  box-shadow: 0 12px 24px rgba(31, 95, 88, 0.08);
  transform: translateY(-1px);
}

.option-card input:checked + .option-label::before {
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  box-shadow: inset 0 0 0 4px #fff;
}

.validation-text {
  min-height: 24px;
  margin-top: 10px;
  color: #a4422f;
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.payment-simple-card {
  width: 100%;
  max-width: var(--frame-wide);
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--surface-radius);
  box-shadow: var(--shadow);
}

.payment-panel-full {
  padding: 36px;
}

.payment-motivation {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.6;
  max-width: 52ch;
}

.payment-support {
  margin-top: 10px;
  max-width: 54ch;
}

.payment-simple-card h2 {
  margin-bottom: 14px;
}

.screen-preview,
.screen-results {
  max-width: var(--frame-wide);
}

.field-stack {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.payment-embed-placeholder {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(31, 95, 88, 0.24);
  background: rgba(31, 95, 88, 0.05);
}

.payment-embed-label {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 800;
}

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

.field-hint {
  margin-top: -2px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.field-hint strong {
  color: var(--ink);
}

.field-row label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.field-row input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field-row input:focus {
  outline: none;
  border-color: rgba(31, 95, 88, 0.34);
  box-shadow: 0 0 0 4px rgba(31, 95, 88, 0.08);
}

.screen-results {
  gap: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 249, 242, 0.98)),
    var(--paper);
}

.pattern-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 24px;
  margin-bottom: 6px;
}

.pattern-hero-card {
  padding: 34px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(213, 138, 50, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 250, 244, 0.98), rgba(255, 253, 249, 0.98)),
    var(--paper-strong);
  border: 1px solid rgba(182, 106, 30, 0.16);
}

.pattern-hero-card .pattern-main-title {
  color: var(--amber);
}

.pattern-percent-card {
  padding: 28px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 246, 236, 0.98)),
    var(--paper-strong);
  border: 1px solid rgba(182, 106, 30, 0.14);
  display: grid;
  place-content: center;
  text-align: center;
}

.pattern-percent-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.disclaimer-card {
  padding: 18px 20px;
}

.results-trust-card {
  width: 100%;
  padding: 18px 22px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(255, 253, 249, 0.98)),
    var(--paper-strong);
  border: 1px solid rgba(182, 106, 30, 0.12);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.results-trust-card p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 600;
}

.results-detail-card,
.results-mix-card {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.99), rgba(255, 248, 240, 0.98)),
    var(--paper-strong);
  border-color: rgba(182, 106, 30, 0.12);
}

.metaphor-tag {
  margin: 10px 0 0;
  color: #6f5c49;
  font-size: 1.02rem;
  font-weight: 700;
}

#primaryDetailBody {
  white-space: pre-line;
}

.results-detail-card > *,
.results-mix-card > * {
  max-width: 100%;
}

.results-detail-card {
  display: grid;
  align-content: start;
  gap: 0;
}

.results-mix-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.results-detail-card h3,
.results-mix-card h3,
.pattern-hero-card h2 {
  letter-spacing: -0.03em;
}

.results-detail-card .bullet-list,
.results-mix-card .graph-stack {
  margin-top: 6px;
}

.consult-cta-block {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(182, 106, 30, 0.12);
  display: grid;
}

.consult-copy {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.consultation-link,
.program-link {
  justify-content: center;
  width: min(100%, 420px);
  min-height: 56px;
  text-align: center;
  line-height: 1.25;
  margin-inline: auto;
}

.result-title-stack {
  display: grid;
  gap: 2px;
  align-content: start;
}

.blend-stack {
  margin-top: 18px;
}

.blend-title {
  font-size: 2rem;
}

.hero-definition-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(182, 106, 30, 0.12);
  max-width: 64ch;
}

.hero-definition-block p {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.7;
}

.detail-block-first {
  margin-top: 14px;
}

.results-detail-card h3 {
  color: var(--amber);
}

.results-detail-card h4,
.results-mix-card h4 {
  color: var(--ink);
  font-size: 1.02rem;
}

.results-mix-card .question-helper {
  max-width: 34ch;
}

.disclaimer-card {
  background: rgba(255, 253, 249, 0.85);
}

@media (max-width: 820px) {
  .app-shell {
    width: min(100% - 20px, 100%);
  }

  .topbar,
  .landing-single-card,
  .sample-report-card,
  .payment-simple-card {
    max-width: var(--frame-wide);
  }

  .question-layout,
  .screen-preview,
  .screen-results {
    max-width: 100%;
  }

  .question-layout,
  .results-grid,
  .pattern-hero-shell,
  .sample-report-grid {
    grid-template-columns: 1fr;
  }

  .question-sidebar {
    border-bottom: 1px solid var(--line);
  }

  .pattern-percent-card {
    place-content: start;
    text-align: left;
  }

  .sample-primary-card {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sample-mix-card {
    padding-left: 0;
    padding-top: 20px;
  }

  .sample-primary-copy {
    max-width: none;
  }

  .results-detail-card,
  .results-mix-card {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .question-panel {
    min-height: auto;
  }

  .question-layout {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .app-shell {
    width: min(100% - 18px, var(--frame-wide));
    padding-top: 14px;
    padding-bottom: 28px;
  }

  .topbar,
  .screen-preview,
  .question-layout,
  .payment-simple-card,
  .screen-results,
  .landing-single-card,
  .sample-report-card {
    border-radius: 24px;
  }

  .question-sidebar,
  .question-panel,
  .payment-panel,
  .payment-panel-full,
  .payment-side,
  .screen-preview,
  .screen-results {
    padding: 20px;
  }

  .topbar {
    min-height: 74px;
    padding: 14px 18px;
    align-items: center;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .topbar-restart {
    width: auto;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  h1 {
    font-size: 3rem;
    max-width: 7ch;
  }

  .landing-single-card {
    padding: 34px 24px 28px;
  }

  .landing-hook {
    font-size: 1.78rem;
  }

  .question-sidebar,
  .question-panel,
  .screen-preview,
  .screen-results,
  .payment-panel-full {
    padding: 22px;
  }

  .button,
  .button.primary.large {
    width: 100%;
  }

  .topbar-restart {
    width: auto;
  }

  .cta-row,
  .nav-row {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cta-row.centered {
    align-items: stretch;
  }

  .section-head.narrow {
    text-align: left;
  }

  .sample-report-card,
  .results-detail-card,
  .results-mix-card,
  .pattern-hero-card,
  .pattern-percent-card {
    padding: 20px;
  }

  .sample-stamp-row {
    padding-right: 74px;
  }

  .sample-report-card {
    overflow: hidden;
  }

  .example-ribbon {
    top: 14px;
    right: -56px;
    padding: 8px 60px;
    font-size: 0.72rem;
  }

  .graph-meta {
    gap: 10px;
  }

  .graph-percent {
    flex-shrink: 0;
    font-size: 0.92rem;
  }

  .payment-panel-full h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }

  .question-header {
    gap: 6px;
  }

  .question-header h3 {
    font-size: 1.42rem;
  }

  .option-label {
    padding: 16px 16px 16px 52px;
    border-radius: 18px;
  }

  .option-label::before {
    top: 16px;
    left: 16px;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 460px) {
  .app-shell {
    width: min(100% - 14px, 100%);
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .topbar,
  .screen-preview,
  .question-layout,
  .payment-simple-card,
  .screen-results,
  .landing-single-card,
  .sample-report-card {
    border-radius: 20px;
  }

  .topbar,
  .landing-single-card,
  .screen-preview,
  .question-sidebar,
  .question-panel,
  .payment-panel-full,
  .screen-results {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-name {
    font-size: 1.32rem;
  }

  .topbar-restart {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  h1 {
    font-size: 2.56rem;
    max-width: 7ch;
  }

  .landing-wordmark {
    font-size: 1.9rem;
  }

  .landing-hook {
    font-size: 1.56rem;
  }

  .lede {
    font-size: 1.02rem;
  }

  .prompt-list-check p {
    padding-left: 24px;
    font-size: 0.98rem;
  }

  .preview-badge,
  .price-stamp {
    font-size: 0.76rem;
  }

  .example-ribbon {
    top: 12px;
    right: -60px;
    padding: 7px 64px;
    font-size: 0.68rem;
  }

  .pattern-main-title,
  .example-primary-title,
  #primaryDetailTitle {
    font-size: 2.1rem;
  }

  .landing-footnote {
    margin-top: 10px;
  }

  .graph-meta {
    align-items: center;
  }

  .graph-label {
    font-size: 0.94rem;
  }

  .graph-sublabel {
    font-size: 0.72rem;
  }

  .field-row input {
    min-height: 50px;
    border-radius: 14px;
  }
}
