:root {
  --sand: #f2eee6;
  --cream: #fbf8f2;
  --white: #ffffff;
  --ink: #33404a;
  --bezel: #2c3138;
  --muted: #6e7681;
  --soft: #a79e8c;
  --line: #ece4d4;
  --ami: #74c3a4;
  --ami-deep: #4e9274;
  --sage: #87b19a;
  --sage-soft: #eaf0ec;
  --orange: #e8743c;
  --coral: #d98c66;
  --coral-deep: #c86e48;
  --star: #f6c944;
  --blue: #6e9bc0;
  --blue-soft: #dceaf2;
  --lilac: #a99bd0;
  --lilac-soft: #e7e1f2;
  --radius-chip: 12px;
  --radius-button: 18px;
  --radius-card: 24px;
  --radius-screen: 40px;
  --shadow-soft: 0 18px 50px rgba(51, 64, 74, 0.1);
  --shadow-lift: 0 22px 60px rgba(51, 64, 74, 0.16);
  --font-display: Quicksand, Nunito, ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  --font-body: Nunito, Quicksand, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f6f1e8 0%, #fbf8f2 42%, #eef5ee 100%),
    var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.45;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  letter-spacing: 0;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(110, 155, 192, 0.42);
  outline-offset: 3px;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.topline {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(236, 228, 212, 0.88);
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(16px);
}

.topline-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topline-inner {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(51, 64, 74, 0.1));
}

.topline-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(135, 177, 154, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 6px 13px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(51, 64, 74, 0.06);
}

.pill strong {
  color: var(--orange);
}

.hero-band {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(251, 248, 242, 0.96) 0%, rgba(234, 240, 236, 0.96) 55%, rgba(220, 234, 242, 0.92) 100%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 46px;
  align-items: center;
  padding: 58px 0 62px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(135, 177, 154, 0.3);
  border-radius: 999px;
  background: rgba(116, 195, 164, 0.13);
  color: #4f765f;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 900;
}

.hero h1,
.screen-title {
  margin: 18px 0 0;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  text-wrap: balance;
}

.hero h1 span,
.screen-title span {
  color: var(--ami-deep);
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius-button);
  cursor: pointer;
  padding: 15px 22px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--coral-deep) 100%);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(216, 132, 90, 0.26);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease;
}

.button:hover {
  background: var(--coral-deep);
  box-shadow: 0 17px 32px rgba(216, 132, 90, 0.32);
}

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

.button.secondary {
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(110, 155, 192, 0.55);
  background: #f9fbfc;
}

.button.full {
  width: 100%;
}

.trust-line,
.hero-plan {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-line span,
.hero-plan span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(236, 228, 212, 0.95);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 850;
}

.hero-plan {
  margin-top: 10px;
}

.hero-plan span {
  border-radius: var(--radius-chip);
  background: rgba(234, 240, 236, 0.82);
  color: #4f765f;
}

.hero-plan i {
  font-style: normal;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 472px;
  place-items: center;
  padding: 14px 0 42px;
}

.hero-scene {
  width: min(610px, 92vw);
  aspect-ratio: 16 / 10;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-screen);
  object-fit: cover;
  box-shadow: var(--shadow-lift);
}

.founder-meter {
  position: absolute;
  right: 8px;
  bottom: 12px;
  width: min(300px, 76vw);
  border: 1px solid rgba(236, 228, 212, 0.95);
  border-radius: var(--radius-card);
  background: rgba(251, 248, 242, 0.96);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.founder-meter strong {
  display: block;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.08;
}

.founder-meter span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.meter-track {
  height: 10px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e2d4;
}

.meter-track i {
  display: block;
  height: 100%;
  width: var(--meter, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ami), var(--star), var(--orange));
}

.story-band {
  padding: 42px 0 44px;
  background:
    radial-gradient(circle at 18% 0%, rgba(116, 195, 164, 0.18), transparent 34%),
    linear-gradient(180deg, #f8f4ec 0%, #efe8dc 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.story-item {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(236, 228, 212, 0.92);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  padding: 12px 12px 22px;
  box-shadow: 0 18px 44px rgba(51, 64, 74, 0.09);
}

.story-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 18px;
  box-shadow: 0 12px 28px rgba(51, 64, 74, 0.12);
}

.story-item h2 {
  margin: 0 10px;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.16;
  font-weight: 800;
}

.story-item p {
  margin: 10px 10px 0;
  color: var(--muted);
  font-size: 15px;
}

.source-note {
  margin-top: 18px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
}

.quiz-band,
.lead-band,
.offer-band,
.thanks-band {
  padding: 42px 0 58px;
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(234, 240, 236, 0.95)),
    var(--cream);
}

.screen-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #4f765f;
  font-size: 15px;
  font-weight: 900;
}

.progress-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(135, 177, 154, 0.26);
}

.progress-bar i {
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ami-deep), var(--ami), var(--star));
  transition: width 0.18s ease;
}

.quiz-scarcity {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(118px, 0.55fr));
  gap: 10px;
  align-items: stretch;
  margin-top: 14px;
  border: 1px solid rgba(232, 116, 60, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(255, 249, 236, 0.96), rgba(234, 240, 236, 0.94)),
    var(--cream);
  padding: 12px;
  box-shadow: 0 14px 36px rgba(51, 64, 74, 0.08);
}

.quiz-scarcity div {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
}

.quiz-scarcity span,
.scarcity-kicker {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.quiz-scarcity strong {
  display: block;
  margin-top: 3px;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 800;
}

.quiz-scarcity p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--coral-deep);
  font-size: 13px;
  font-weight: 900;
}

.quiz-scarcity.is-hot {
  border-color: rgba(232, 116, 60, 0.48);
  background:
    linear-gradient(120deg, rgba(255, 241, 223, 0.98), rgba(251, 248, 242, 0.96)),
    var(--cream);
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.quiz-art,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
}

.quiz-art {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  min-height: 492px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-soft);
}

.quiz-scene {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quiz-art p {
  margin: 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, #f4f7f0 100%);
  color: var(--bezel);
  font-size: 16px;
  font-weight: 760;
  padding: 18px 20px 20px;
}

.panel {
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.question-title {
  margin: 0;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
}

.question-hint {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.option-button {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  border: 2px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 14px;
  text-align: left;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(51, 64, 74, 0.04);
  transition:
    border-color 0.14s ease,
    background 0.14s ease,
    transform 0.14s ease,
    box-shadow 0.14s ease;
}

.option-button:hover {
  border-color: rgba(110, 155, 192, 0.78);
  background: #fbfdff;
  box-shadow: 0 12px 26px rgba(51, 64, 74, 0.08);
}

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

.option-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.option-button:nth-child(2n) .option-icon {
  background: #f7e6da;
  color: var(--orange);
}

.option-button:nth-child(3n) .option-icon {
  background: var(--sage-soft);
  color: var(--ami-deep);
}

.option-button:nth-child(4n) .option-icon {
  background: var(--lilac-soft);
  color: #7b68ae;
}

.option-label {
  display: block;
  overflow-wrap: anywhere;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.option-detail {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.screen-title {
  max-width: 760px;
  font-size: 42px;
}

.lead-grid,
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.summary-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-left: 6px solid var(--ami);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 13px 14px;
}

.summary-row:nth-child(2) {
  border-left-color: var(--coral);
}

.summary-row:nth-child(3) {
  border-left-color: var(--blue);
}

.summary-row b {
  display: block;
  color: var(--bezel);
  font-family: var(--font-display);
  font-weight: 800;
}

.summary-row span {
  color: var(--muted);
  font-size: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.form-field label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.form-field input {
  min-height: 54px;
  border: 2px solid var(--line);
  border-radius: var(--radius-button);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 13px 15px;
  outline: none;
}

.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(110, 155, 192, 0.16);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--ami-deep);
}

.form-error {
  min-height: 20px;
  margin: 0 0 10px;
  color: var(--coral-deep);
  font-size: 14px;
  font-weight: 900;
}

.lead-urgency,
.offer-warning {
  display: grid;
  gap: 3px;
  margin: 16px 0 18px;
  border: 1px solid rgba(232, 116, 60, 0.28);
  border-radius: 18px;
  background: rgba(255, 249, 236, 0.78);
  padding: 13px 15px;
}

.lead-urgency strong,
.offer-warning strong {
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.15;
}

.lead-urgency span,
.offer-warning span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.price-panel {
  border: 2px solid rgba(232, 116, 60, 0.28);
  background: linear-gradient(180deg, #fff9ec 0%, #fbf8f2 58%, #eef5ee 100%);
}

.price-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.price {
  margin: 22px 0 6px;
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.was {
  color: var(--muted);
  font-size: 16px;
}

.was s {
  color: var(--soft);
}

.scarcity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.scarcity-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  padding: 14px;
}

.scarcity-item strong {
  display: block;
  color: var(--bezel);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
}

.scarcity-item span {
  color: var(--muted);
  font-size: 13px;
}

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

.offer-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.offer-list i {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--ami);
  color: var(--white);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.fineprint {
  margin: 13px 0 0;
  color: var(--soft);
  font-size: 12px;
}

.side-art {
  display: grid;
  gap: 16px;
}

.side-art img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 16 / 10;
  border: 8px solid rgba(255, 255, 255, 0.66);
  border-radius: 28px;
  object-fit: cover;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}

.thanks-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.thanks-panel img {
  width: 210px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 16px 18px rgba(51, 64, 74, 0.12));
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: var(--soft);
  font-size: 12px;
  background: var(--sand);
}

.footer-inner {
  display: flex;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  justify-content: space-between;
  gap: 18px;
}

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

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

@media (max-width: 900px) {
  .hero-grid,
  .quiz-layout,
  .lead-grid,
  .offer-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 22px;
    padding: 38px 0 46px;
  }

  .hero h1,
  .screen-title {
    font-size: 38px;
  }

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

  .hero-art {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-scene {
    width: 100%;
    border-width: 8px;
    border-radius: 30px;
  }

  .founder-meter {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

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

  .quiz-art {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .quiz-scene {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .lead-grid .panel,
  .offer-grid .panel {
    order: -1;
  }

  .story-item.product-story img {
    height: 320px;
  }

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

  .topline-meta span:not(.pill) {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .topline-inner,
  .section-inner,
  .screen-shell,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .topline-inner {
    min-height: 58px;
  }

  .brand {
    gap: 9px;
    font-size: 20px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .pill {
    min-height: 32px;
    padding: 5px 10px;
    font-size: 13px;
  }

  .hero h1,
  .screen-title {
    font-size: 32px;
  }

  .hero-copy p,
  .question-hint {
    font-size: 16px;
  }

  .panel {
    padding: 20px;
  }

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

  .quiz-scarcity {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .quiz-scarcity strong {
    font-size: 16px;
  }

  .quiz-scarcity p {
    font-size: 12px;
  }

  .option-button {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 78px;
    padding: 11px 12px;
  }

  .option-icon {
    width: 52px;
    height: 52px;
    font-size: 25px;
  }

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

  .price {
    font-size: 44px;
  }
}
