@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-600-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("assets/fonts/outfit-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #f8f1f5;
  --page-deep: #efe2ea;
  --surface: rgba(255, 252, 253, 0.88);
  --surface-solid: #fffcfd;
  --text: #2d202a;
  --text-soft: #6a5663;
  --heading: #493044;
  --accent: #a44f68;
  --accent-hover: #8e3f58;
  --accent-text: #fff9fb;
  --line: rgba(73, 48, 68, 0.17);
  --line-strong: rgba(73, 48, 68, 0.3);
  --answer-hover: rgba(164, 79, 104, 0.08);
  --focus: #9c3f60;
  --shadow: 0 24px 70px rgba(73, 48, 68, 0.14);
  --image-shadow: 0 30px 80px rgba(73, 48, 68, 0.2);
  --header: rgba(248, 241, 245, 0.86);
  --success: #426a56;
  --error: #a53f50;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --page: #1d131d;
    --page-deep: #281926;
    --surface: rgba(43, 29, 42, 0.88);
    --surface-solid: #2a1c29;
    --text: #f4e9ef;
    --text-soft: #c8b4bf;
    --heading: #fff1f7;
    --accent: #df8ca3;
    --accent-hover: #eba3b7;
    --accent-text: #26151f;
    --line: rgba(255, 241, 247, 0.15);
    --line-strong: rgba(255, 241, 247, 0.3);
    --answer-hover: rgba(223, 140, 163, 0.12);
    --focus: #f0a3b8;
    --shadow: 0 24px 70px rgba(8, 4, 8, 0.35);
    --image-shadow: 0 30px 80px rgba(6, 3, 7, 0.45);
    --header: rgba(29, 19, 29, 0.88);
    --success: #a8d1bb;
    --error: #f3a3af;
  }
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(210, 145, 164, 0.16), transparent 34rem),
    radial-gradient(circle at 92% 88%, rgba(116, 92, 145, 0.12), transparent 32rem),
    linear-gradient(145deg, var(--page), var(--page-deep));
  color: var(--text);
  font-family: "Outfit", "Avenir Next", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

[tabindex="-1"]:focus {
  outline: none;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wordmark {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.header-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

.funnel-shell {
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100dvh - 140px);
  margin: 0 auto;
}

.screen {
  width: 100%;
}

.screen.is-active {
  animation: screen-in 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.intro-screen {
  display: grid;
  min-height: calc(100dvh - 140px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
  padding: 42px 0;
}

.intro-copy {
  max-width: 660px;
  padding-left: clamp(0px, 4vw, 52px);
}

.offer-saving {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(54px, 6.5vw, 86px);
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.intro-body {
  max-width: 500px;
  margin: 24px 0 30px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-visual {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--image-shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--accent-text);
  cursor: pointer;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 28px rgba(97, 42, 66, 0.2);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 14px;
}

.text-button {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.text-button:hover {
  color: var(--heading);
  text-decoration-color: currentColor;
}

.quiz-screen {
  width: min(760px, 100%);
  min-height: calc(100dvh - 140px);
  margin: 0 auto;
  padding: clamp(30px, 7vh, 72px) 0;
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.progress-label {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.progress-track {
  height: 3px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.progress-value {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.question-wrap {
  padding: clamp(54px, 8vh, 86px) 0 28px;
}

.question-wrap h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(43px, 7vw, 68px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.question-context {
  margin: 16px 0 30px;
  color: var(--text-soft);
  font-size: 16px;
}

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

.answer-button {
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 19px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.answer-button:hover {
  border-color: var(--line-strong);
  background: var(--answer-hover);
  transform: translateY(-2px);
}

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

.answer-button.is-selected {
  border-color: var(--accent);
  background: var(--answer-hover);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.question-help {
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

.validation-wrap {
  position: relative;
  display: grid;
  max-width: 760px;
  grid-template-columns: 164px minmax(0, 1fr);
  column-gap: clamp(28px, 5vw, 46px);
  margin: clamp(32px, 5vh, 54px) auto 0;
  padding: clamp(30px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.validation-wrap::before {
  position: absolute;
  inset: 18% 22%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 145, 164, 0.2), transparent 70%);
  content: "";
  filter: blur(18px);
}

.validation-art {
  position: relative;
  grid-column: 1;
  grid-row: 1 / span 5;
  width: 164px;
  height: 116px;
  align-self: start;
  margin: 8px 0 0;
}

.community-art,
.path-art {
  position: absolute;
  inset: 0;
  transition: opacity 260ms ease;
}

.validation-art[data-mode="community"] .path-art,
.validation-art[data-mode="path"] .community-art {
  opacity: 0;
  pointer-events: none;
}

.community-person {
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(164, 79, 104, 0.2);
  border-radius: 50%;
  background: rgba(255, 252, 253, 0.82);
  box-shadow: 0 8px 22px rgba(73, 48, 68, 0.08);
  opacity: 0;
  scale: 0.72;
  animation: community-gather 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.community-person::before,
.community-person::after {
  position: absolute;
  left: 50%;
  background: rgba(164, 79, 104, 0.68);
  content: "";
  transform: translateX(-50%);
}

.community-person::before {
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.community-person::after {
  bottom: 7px;
  width: 14px;
  height: 8px;
  border-radius: 9px 9px 5px 5px;
}

.community-person-one {
  top: 61%;
  left: 3%;
}

.community-person-two {
  top: 17%;
  left: 17%;
  animation-delay: 80ms;
}

.community-person-three {
  top: 0;
  left: calc(50% - 17px);
  animation-delay: 160ms;
}

.community-person-four {
  top: 17%;
  right: 17%;
  animation-delay: 240ms;
}

.community-person-five {
  top: 61%;
  right: 3%;
  animation-delay: 320ms;
}

.community-heart {
  position: absolute;
  left: calc(50% - 27px);
  bottom: 0;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(164, 79, 104, 0.25);
  border-radius: 50%;
  background: rgba(255, 247, 250, 0.92);
  box-shadow: 0 12px 28px rgba(97, 42, 66, 0.12);
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
  animation: heart-breathe 3.2s ease-in-out infinite;
}

.path-art {
  display: block;
}

.path-rail {
  position: absolute;
  top: calc(50% - 1px);
  right: 12%;
  left: 12%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.path-rail::after {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c88799, #b49bc5, #d4aa55);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: path-draw 900ms 120ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.path-node {
  position: absolute;
  top: calc(50% - 27px);
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(73, 48, 68, 0.15);
  border-radius: 50%;
  background: rgba(255, 252, 253, 0.94);
  box-shadow: 0 10px 26px rgba(73, 48, 68, 0.1);
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  opacity: 0;
  scale: 0.72;
  animation: path-node-in 540ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.path-node::before {
  line-height: 1;
}

.path-node-one {
  left: 3%;
}

.path-node-one::before {
  content: "✦";
}

.path-node-two {
  left: calc(50% - 27px);
  color: #8c6fa8;
  animation-delay: 210ms;
}

.path-node-two::before {
  content: "∿";
}

.path-node-three {
  right: 3%;
  color: #b18628;
  animation-delay: 420ms;
}

.path-node-three::before {
  content: "✓";
}

.validation-wrap h2 {
  grid-column: 2;
  max-width: 650px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.validation-body {
  grid-column: 2;
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 19px);
}

.validation-plan {
  grid-column: 2;
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 600;
  line-height: 1.2;
}

.validation-social {
  grid-column: 2;
  max-width: 570px;
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 15px;
}

.validation-proof {
  display: inline-flex;
  grid-column: 2;
  width: fit-content;
  align-items: baseline;
  gap: 9px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 13px;
}

.validation-proof strong {
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.validation-proof[data-mode="rating"] strong {
  color: #9a7422;
}

.validation-proof[data-mode="rating"] strong::after {
  margin-left: 5px;
  content: "★";
  font-family: Georgia, serif;
  font-size: 13px;
  vertical-align: 0.18em;
}

.validation-button {
  grid-column: 2;
  justify-self: start;
  margin-top: 18px;
}

.result-screen {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: clamp(42px, 7vw, 94px);
  padding: clamp(42px, 7vw, 86px) 0;
}

.result-story {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.result-back {
  margin-bottom: 28px;
}

.result-story h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 7vw, 82px);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.result-intro {
  max-width: 640px;
  margin: 24px 0 34px;
  color: var(--text-soft);
  font-size: 18px;
}

.result-note {
  max-width: 640px;
  margin: -12px 0 32px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
}

.plan-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-details div {
  min-width: 0;
}

.plan-details dt {
  margin-bottom: 7px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
}

.plan-details dd {
  margin: 0;
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.08;
}

.product-tableau {
  position: relative;
  grid-column: 1;
  grid-row: 2;
  width: min(100%, 650px);
  aspect-ratio: 6 / 5;
  margin: -18px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #d8a7ae;
  box-shadow: var(--image-shadow);
  isolation: isolate;
}

.product-tableau::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.tableau-backdrop {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.tableau-component {
  position: absolute;
  z-index: 2;
  display: block;
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(73, 48, 68, 0.22));
}

.tableau-dream {
  top: 33.13%;
  left: 21.02%;
  width: 63.96%;
}

.offer-panel {
  position: sticky;
  grid-column: 2;
  grid-row: 1 / span 2;
  top: 28px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.offer-heading h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 50px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.offer-heading > p:last-child {
  margin: 17px 0 0;
  color: var(--text-soft);
}

.price-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 12px;
  margin: 30px 0 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.discount-badge {
  align-self: center;
  justify-self: start;
  margin-bottom: 4px;
  border: 1px solid rgba(164, 79, 104, 0.28);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(164, 79, 104, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.price-trial {
  grid-column: 1 / -1;
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
}

.price-lockup .offer-saving {
  grid-column: 2;
  margin: 0 0 4px;
  font-weight: 500;
}

.price-main {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  color: var(--text-soft);
  font-size: 14px;
}

.price-was {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 13px;
  text-decoration: line-through;
}

.offer-benefits {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-benefits li {
  position: relative;
  padding-left: 21px;
}

.offer-benefits li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--accent);
  content: "✓";
  font-weight: 600;
}

.weekly-option {
  margin: 23px 0 0;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 13px;
}

.weekly-option strong {
  color: var(--text);
  font-weight: 500;
}

.weekly-option a {
  color: var(--heading);
  font-weight: 500;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.weekly-option a:hover {
  color: var(--accent);
}

.checkout-button {
  width: 100%;
}

.billing-copy {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.handoff-copy {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.5;
}

.checkout-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--error);
  font-size: 13px;
}

.site-footer {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  text-underline-offset: 3px;
}

.consent-banner {
  position: fixed;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(520px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 17px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.consent-banner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
}

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

.noscript-message {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 6;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: center;
}

@keyframes screen-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes community-gather {
  to {
    opacity: 1;
    scale: 1;
  }
}

@keyframes heart-breathe {
  0%,
  100% {
    box-shadow: 0 12px 28px rgba(97, 42, 66, 0.12);
    scale: 1;
  }
  50% {
    box-shadow: 0 14px 34px rgba(164, 79, 104, 0.2);
    scale: 1.05;
  }
}

@keyframes path-draw {
  to {
    transform: scaleX(1);
  }
}

@keyframes path-node-in {
  to {
    opacity: 1;
    scale: 1;
  }
}

@media (max-width: 820px) {
  .header-note {
    display: none;
  }

  .funnel-shell {
    width: min(100% - 32px, 680px);
    min-height: calc(100dvh - 128px);
  }

  .intro-screen {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0 32px;
  }

  .intro-copy {
    max-width: none;
    padding-left: 0;
  }

  h1 {
    max-width: 600px;
    font-size: clamp(50px, 14vw, 70px);
  }

  .intro-body {
    margin: 19px 0 24px;
  }

  .hero-visual {
    width: 100%;
    max-height: 420px;
    justify-self: stretch;
    aspect-ratio: 5 / 3;
  }

  .quiz-screen {
    min-height: calc(100dvh - 128px);
    padding: 28px 0 44px;
  }

  .question-wrap {
    padding-top: 44px;
  }

  .result-screen {
    display: flex;
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 42px;
    padding: 38px 0 56px;
  }

  .offer-panel {
    position: static;
    order: 2;
  }

  .result-story {
    order: 1;
  }

  .product-tableau {
    order: 3;
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 60px;
  }

  .wordmark {
    font-size: 27px;
  }

  .funnel-shell {
    width: calc(100% - 32px);
  }

  .intro-screen {
    padding-top: 32px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .button-primary {
    width: 100%;
  }

  .hero-visual {
    max-height: 330px;
    aspect-ratio: 4 / 3;
  }

  .answer-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .answer-button {
    min-height: 64px;
  }

  .question-wrap h2 {
    margin-bottom: 26px;
    font-size: clamp(39px, 12vw, 54px);
  }

  .validation-wrap {
    display: block;
    margin-top: 42px;
    padding-inline: 0;
    text-align: center;
  }

  .validation-art {
    width: min(210px, 64vw);
    height: 120px;
    margin: 0 auto 26px;
  }

  .validation-wrap h2 {
    margin-inline: auto;
  }

  .validation-body,
  .validation-plan,
  .validation-social,
  .validation-proof {
    margin-inline: auto;
  }

  .validation-button {
    width: 100%;
  }

  .result-story h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .plan-details {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .product-tableau {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .tableau-backdrop {
    object-position: 38% center;
  }

  .tableau-dream {
    top: 33.25%;
    left: 12.28%;
    width: 75.44%;
  }

  .offer-panel {
    padding: 25px 21px;
  }

  .site-footer {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-block: 24px;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .consent-actions {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .offer-panel {
    background: var(--surface-solid);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
