:root {
  --navy-950: #1a1c3b;
  --navy-800: #2c3082;
  --violet-600: #5459bb;
  --violet-400: #7a7fcf;
  --violet-200: #c4c6e5;
  --lime-500: #d2da73;
  --lime-700: #858c32;
  --lime-100: #f0f3d4;
  --paper: #f6f6f4;
  --surface: #ffffff;
  --text: #1a1c3b;
  --text-muted: #686760;
  --line: #e0e0dd;
  --danger: #9d3030;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-lg: 0 28px 80px rgba(26, 28, 59, .14);
  --shadow-md: 0 16px 42px rgba(26, 28, 59, .10);
  --container: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 58px 0; }
.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet-600);
  content: "";
}
.eyebrow--dark {
  background: rgba(255, 255, 255, .1);
  color: var(--surface);
}
.eyebrow--dark::before { background: var(--lime-500); }
.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--violet-600);
  color: var(--surface);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 14px 32px rgba(84, 89, 187, .28);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: var(--navy-800);
  box-shadow: 0 18px 38px rgba(44, 48, 130, .32);
  transform: translateY(-2px);
}
.button:active { transform: translateY(0); }
.button--lime {
  background: var(--lime-500);
  color: var(--navy-950);
  box-shadow: none;
}
.button--lime:hover { background: #c4ce5f; box-shadow: none; }
.button__icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  font-size: 17px;
}
.button--lime .button__icon { background: rgba(26, 28, 59, .1); }
.button:focus-visible,
.answer:focus-visible,
.quiz-nav__button:focus-visible,
.input:focus-visible,
.header__cta:focus-visible,
.consent input:focus-visible,
.policy-link:focus-visible,
.policy-modal__close:focus-visible {
  outline: 3px solid var(--lime-500);
  outline-offset: 3px;
}

.header { padding: 18px 0 12px; }
.header__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.wordmark img {
  display: block;
  width: min(236px, 43vw);
  height: auto;
}
.header__meta { display: flex; align-items: center; gap: 24px; }
.header__geo { color: var(--text-muted); font-size: 13px; }
.header__cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 11px 18px;
  border: 1px solid var(--violet-200);
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
  transition: border-color .2s ease, background-color .2s ease;
}
.header__cta:hover { border-color: var(--violet-600); background: #f0f0fa; }

.hero { padding: 10px 0 46px; }
.hero__shell {
  position: relative;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, .97fr);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--navy-950);
  box-shadow: var(--shadow-lg);
}
.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 64px 52px 46px;
  color: var(--surface);
}
.hero__copy::before {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -170px;
  width: 400px;
  height: 400px;
  border: 90px solid rgba(84, 89, 187, .24);
  border-radius: 50%;
  content: "";
}
.hero h1 {
  max-width: 820px;
  margin: 26px 0 20px;
  font-size: clamp(44px, 4.7vw, 69px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}
.hero h1 span { color: var(--lime-500); }
.hero-title__line {
  display: inline;
  color: inherit;
}
.hero-title__line:not(:last-child)::after { content: " "; }
.hero h1 .hero-title__accent { color: var(--lime-500); }
.hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.52;
}
.hero__action {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}
.hero__note {
  max-width: 265px;
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 12px;
  line-height: 1.45;
}
.hero__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 34px;
}
.hero-fact {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
}
.hero-fact strong {
  display: block;
  max-width: 270px;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
}
.hero-fact span {
  display: block;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.45;
}
.hero__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--navy-800);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% center;
}
.hero__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 28, 59, .28), transparent 30%),
    linear-gradient(180deg, transparent 52%, rgba(26, 28, 59, .88));
  content: "";
}
.hero__image-note {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(26, 28, 59, .5);
  color: var(--surface);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.home-types {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-md);
  background: rgba(26, 28, 59, .66);
  color: var(--surface);
  backdrop-filter: blur(14px);
}
.home-types strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  letter-spacing: -.025em;
}
.home-types__list { display: flex; flex-wrap: wrap; gap: 8px; }
.home-types__list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 11px;
  font-weight: 700;
}

.quiz-card {
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.quiz-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 42px;
  background: var(--violet-600);
  color: var(--surface);
}
.quiz-intro::after {
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 280px;
  height: 280px;
  border: 64px solid rgba(210, 218, 115, .16);
  border-radius: 50%;
  content: "";
}
.quiz-intro__content { position: relative; z-index: 1; }
.quiz-intro h2 {
  max-width: 490px;
  margin: 22px 0 16px;
  font-size: clamp(36px, 3.5vw, 50px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}
.quiz-intro p {
  max-width: 450px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.55;
}
.quiz-intro__steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.quiz-intro__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.35;
}
.quiz-intro__steps span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 800;
}
.quiz-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 42px;
}
.quiz-progress__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}
.quiz-progress {
  height: 7px;
  margin-bottom: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: #eeeeF9;
}
.quiz-progress i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--violet-600);
  transition: width .25s ease;
}
.quiz-step { display: none; flex: 1; }
.quiz-step.active { display: block; animation: step-in .22s ease; }
@keyframes step-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.quiz-step h3 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.06;
}
.quiz-step__hint {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.answers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.answer {
  position: relative;
  min-height: 70px;
  padding: 17px 50px 17px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.answer:hover { border-color: var(--violet-400); transform: translateY(-1px); }
.answer::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 2px solid var(--violet-200);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
.answers[data-multiple="true"] .answer::after { border-radius: 6px; }
.answer.selected {
  border-color: var(--violet-600);
  background: #eeeeF9;
}
.answer.selected::after {
  border-color: var(--violet-600);
  background: var(--violet-600);
  color: var(--surface);
  content: "✓";
  font-size: 12px;
  font-weight: 800;
}
.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.quiz-nav__button {
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  cursor: pointer;
  font-weight: 800;
}
.quiz-nav__button--next {
  border-color: var(--violet-600);
  background: var(--violet-600);
  color: var(--surface);
}
.quiz-message {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.4;
}
.lead-form { display: grid; max-width: 560px; gap: 12px; }
.field-label { font-size: 13px; font-weight: 800; }
.input {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
}
.input.error { border-color: var(--danger); }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--violet-600);
  cursor: pointer;
}
.policy-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--violet-600);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
}
.success {
  display: none;
  max-width: 560px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--lime-100);
}
.success__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-500);
  font-size: 20px;
  font-weight: 800;
}
.success strong { display: block; margin-bottom: 8px; font-size: 22px; }
.success span { color: var(--text-muted); line-height: 1.5; }

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.offer-card::after {
  position: absolute;
  top: -130px;
  right: -90px;
  width: 390px;
  height: 390px;
  border: 90px solid var(--lime-100);
  border-radius: 50%;
  content: "";
}
.offer__header {
  position: relative;
  z-index: 1;
  max-width: 1050px;
}
.offer h2 {
  max-width: 980px;
  margin: 22px 0 0;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -.068em;
  line-height: .94;
}
.offer h2 span { color: var(--violet-600); }
.offer__intro {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}
.offer__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 18px;
  margin-top: 34px;
}
.offer-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.offer-tab {
  min-height: 142px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--navy-950);
  color: var(--surface);
}
.offer-tab:nth-child(1),
.offer-tab:nth-child(4) {
  background: var(--lime-500);
  color: var(--navy-950);
}
.offer-tab strong {
  display: block;
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.offer-tab span {
  display: block;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  line-height: 1.45;
}
.offer-tab:nth-child(1) span,
.offer-tab:nth-child(4) span {
  color: rgba(26, 28, 59, .64);
}
.offer-visual {
  position: relative;
  min-height: 296px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-800);
}
.offer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26, 28, 59, .82));
  content: "";
}
.offer-gift {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--lime-500);
  color: var(--navy-950);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
}

html[data-ab-variant="B"] .hero__shell {
  background:
    radial-gradient(circle at 16% 18%, rgba(210, 218, 115, .18), transparent 32%),
    linear-gradient(135deg, var(--navy-950), #242765 58%, var(--navy-950));
}

html[data-ab-variant="B"] .hero__copy::before {
  right: -130px;
  bottom: -140px;
  border-color: rgba(210, 218, 115, .16);
}

html[data-ab-variant="B"] .hero h1 {
  max-width: 900px;
}

html[data-ab-variant="B"] .hero h1 .hero-title__line {
  color: var(--surface);
}

html[data-ab-variant="B"] .hero-title__line:nth-child(3) {
  color: var(--lime-500);
}

html[data-ab-variant="B"] .hero h1 .hero-title__accent {
  color: var(--lime-500);
}

html[data-ab-variant="B"] .hero__lead {
  max-width: 690px;
}

html[data-ab-variant="B"] .hero-fact {
  background: rgba(255, 255, 255, .085);
}

html[data-ab-variant="B"] .hero-fact:nth-child(1) {
  border-color: rgba(210, 218, 115, .72);
  background: var(--lime-500);
  color: var(--navy-950);
}

html[data-ab-variant="B"] .hero-fact:nth-child(1) span {
  color: rgba(26, 28, 59, .64);
}

html[data-ab-variant="B"] .hero-fact:nth-child(4) {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(84, 89, 187, .38);
}

html[data-ab-variant="B"] .hero__visual::before {
  background:
    linear-gradient(90deg, rgba(26, 28, 59, .34), transparent 34%),
    linear-gradient(180deg, transparent 46%, rgba(26, 28, 59, .9));
}

html[data-ab-variant="B"] .quiz-intro {
  background:
    radial-gradient(circle at 100% 100%, rgba(210, 218, 115, .18), transparent 36%),
    var(--violet-600);
}

html[data-ab-variant="B"] .offer-card {
  background:
    linear-gradient(180deg, var(--surface), #f8f8f6);
}

html[data-ab-variant="B"] .offer-tab:nth-child(1),
html[data-ab-variant="B"] .offer-tab:nth-child(3) {
  background: var(--lime-500);
  color: var(--navy-950);
}

html[data-ab-variant="B"] .offer-tab:nth-child(1) span,
html[data-ab-variant="B"] .offer-tab:nth-child(3) span {
  color: rgba(26, 28, 59, .64);
}

html[data-ab-variant="B"] .offer-tab:nth-child(2),
html[data-ab-variant="B"] .offer-tab:nth-child(4) {
  background: var(--navy-950);
  color: var(--surface);
}

html[data-ab-variant="B"] .offer-tab:nth-child(2) span,
html[data-ab-variant="B"] .offer-tab:nth-child(4) span {
  color: rgba(255, 255, 255, .6);
}

html[data-ab-variant="B"] .offer-gift {
  background: rgba(26, 28, 59, .82);
  color: var(--surface);
  backdrop-filter: blur(12px);
}

html[data-ab-variant="B"] .final-card {
  background:
    radial-gradient(circle at 76% 0%, rgba(210, 218, 115, .2), transparent 32%),
    var(--violet-600);
}

.final { padding: 14px 0 74px; }
.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: var(--violet-600);
  color: var(--surface);
}
.final-card::after {
  position: absolute;
  right: 22%;
  bottom: -160px;
  width: 300px;
  height: 300px;
  border: 72px solid rgba(210, 218, 115, .17);
  border-radius: 50%;
  content: "";
}
.final-card__copy { position: relative; z-index: 1; }
.final-card h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}
.final-card p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.5;
}
.final-card .button { position: relative; z-index: 1; }

.footer { padding: 0 0 34px; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}
.footer .wordmark img { width: 190px; }

.policy-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.policy-modal.open { display: flex; }
.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 59, .58);
  backdrop-filter: blur(10px);
}
.policy-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(84, 89, 187, .16);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.policy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--navy-950);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.policy-modal h2 {
  max-width: 560px;
  margin: 0 52px 14px 0;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}
.policy-modal p,
.policy-modal li {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
.policy-modal ul {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding-left: 20px;
}
.policy-modal__source {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 8px;
  color: var(--violet-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.sticky-cta {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  transform: translateY(130%);
  transition: transform .25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .button { width: 100%; }

@media (max-width: 1050px) {
  .hero__shell { grid-template-columns: 1fr; }
  .hero__copy { min-height: 650px; }
  .hero__visual { min-height: 610px; }
  .quiz-card { grid-template-columns: 1fr; }
  .quiz-intro { min-height: 360px; }
  .offer__body { grid-template-columns: 1fr; }
  .offer-visual { min-height: 430px; }
  .header__geo { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 38px 0; }
  .header { padding: 10px 0 8px; }
  .header__inner { min-height: 48px; }
  .wordmark img { width: min(142px, 40vw); }
  .header__cta { min-height: 42px; padding: 10px 14px; font-size: 12px; }
  .hero { padding: 4px 0 30px; }
  .hero__shell { min-height: 0; border-radius: 26px; }
  .hero__copy {
    min-height: 0;
    padding: 30px 20px 22px;
  }
  .eyebrow { font-size: 10px; }
  .hero h1 {
    margin: 22px 0 16px;
    font-size: clamp(41px, 12.5vw, 53px);
    letter-spacing: -.064em;
    line-height: .94;
  }
  html[data-ab-variant="B"] .hero h1 {
    font-size: clamp(40px, 11.3vw, 48px);
    line-height: .96;
  }
  .hero-title__line { display: block; }
  .hero-title__line:not(:last-child)::after { content: ""; }
  .hero__lead { font-size: 16px; line-height: 1.48; }
  .hero__action { align-items: stretch; flex-direction: column; margin-top: 24px; }
  .hero__action .button { width: 100%; }
  .hero__note { max-width: none; }
  .hero__facts { grid-template-columns: 1fr 1fr; margin-top: 26px; }
  .hero-fact { min-height: 98px; padding: 15px; }
  .hero-fact strong { margin-bottom: 6px; font-size: 16px; }
  .hero__visual { min-height: 420px; }
  .hero__visual img { object-position: 55% center; }
  .hero__image-note { top: 14px; right: 14px; }
  .home-types { right: 14px; bottom: 14px; left: 14px; padding: 17px; }
  .home-types strong { font-size: 15px; }
  .home-types__list { gap: 6px; }
  .home-types__list span { padding: 7px 9px; font-size: 10px; }
  .quiz-card, .offer-card, .final-card { border-radius: 26px; }
  .quiz-intro { min-height: 0; padding: 28px 22px; }
  .quiz-intro h2 { font-size: 36px; }
  .quiz-intro__steps { margin-top: 25px; }
  .quiz-main { min-height: 570px; padding: 27px 20px 22px; }
  .quiz-progress { margin-bottom: 28px; }
  .quiz-step h3 { font-size: 28px; }
  .answers { grid-template-columns: 1fr; }
  .answer { min-height: 62px; }
  .quiz-nav {
    position: sticky;
    bottom: 0;
    padding-top: 16px;
    background: linear-gradient(180deg, transparent, var(--surface) 25%);
  }
  .quiz-nav__button { flex: 1; }
  .offer-card { padding: 28px 20px 20px; }
  .offer-card::after { display: none; }
  .offer h2 { font-size: 48px; }
  .offer__intro { font-size: 16px; }
  .offer__body, .offer-tabs { grid-template-columns: 1fr; }
  .offer-tab { min-height: 0; padding: 20px; }
  .offer-visual { min-height: 380px; }
  .offer-gift { right: 14px; bottom: 14px; left: 14px; font-size: 19px; }
  .final { padding: 4px 0 72px; }
  .final-card { grid-template-columns: 1fr; padding: 30px 22px; }
  .final-card h2 { font-size: 40px; }
  .final-card .button { width: 100%; }
  .footer__inner { justify-content: center; }
  .footer .wordmark img { width: 154px; }
  .policy-modal { padding: 12px; }
  .policy-modal__dialog {
    max-height: 86vh;
    padding: 28px 20px 22px;
    border-radius: 26px;
  }
  .policy-modal__close { top: 12px; right: 12px; }
  .sticky-cta { display: block; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 39px; }
  .hero__facts { grid-template-columns: 1fr; }
  .header__cta { padding-inline: 12px; }
  .offer h2 { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
