@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --panel: #111111;
  --panel-strong: #171717;
  --text: #eae6df;
  --muted: #aaa39a;
  --line: rgba(234, 230, 223, 0.1);
  --orange: #c96a2b;
  --orange-soft: #e09a5f;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-padding-top: 92px;
  color: var(--text);
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    repeating-linear-gradient(0deg, rgba(234, 230, 223, 0.018) 0 1px, transparent 1px 5px),
    linear-gradient(160deg, rgba(201, 106, 43, 0.055) 0%, rgba(7, 7, 7, 0) 30%),
    linear-gradient(180deg, #070707 0%, #0d0d0d 54%, #070707 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sales-body {
  padding-bottom: 86px;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  max-width: 100%;
  margin-top: 0;
  overflow-wrap: break-word;
  letter-spacing: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.16;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  word-spacing: 0.18em;
  text-transform: uppercase;
}

.micro {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.intro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 14px;
}

.intro-proof span {
  border: 1px solid rgba(201, 106, 43, 0.24);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--text);
  background: rgba(201, 106, 43, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.intro-preview,
.hero-note-card,
.product-clarity {
  max-width: 660px;
  margin: 18px 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.intro-preview span,
.hero-note-card span,
.product-clarity span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-preview strong,
.hero-note-card p,
.product-clarity strong {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.product-clarity {
  margin-top: 22px;
  background:
    linear-gradient(145deg, rgba(201, 106, 43, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(9, 9, 9, 0.82);
}

.product-clarity strong {
  display: block;
  font-size: 17px;
}

.product-clarity ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.product-clarity li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.product-clarity li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.btn-primary {
  color: #090a0d;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(201, 106, 43, 0.18);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  background: var(--panel);
  border-color: var(--line);
}

.pulse {
  animation: pulseButton 4.8s ease-in-out infinite;
}

@keyframes pulseButton {
  0%,
  100% {
    box-shadow: 0 16px 32px rgba(201, 106, 43, 0.18);
  }

  50% {
    box-shadow: 0 18px 42px rgba(201, 106, 43, 0.26);
  }
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 auto;
  object-fit: cover;
  opacity: 0.88;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 15px;
}

.brand-lockup small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.quiz-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  width: min(1160px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0;
}

.quiz-panel,
.quiet-brand-card,
.result-card,
.exit-box,
.price-card,
.secondary-offer,
.upsell-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: var(--shadow);
}

.quiz-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  min-height: calc(100vh - 56px);
  padding: 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.topbar-note {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--orange);
  background: #0b0b0b;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.story-progress {
  margin-top: 22px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.progress-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #24211f;
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 240ms ease;
}

.quiz-screen {
  flex: 1;
  display: grid;
  min-width: 0;
}

.intro-screen,
.question-screen,
.lead-screen,
.loading-screen,
.result-screen {
  display: grid;
  align-content: center;
  min-width: 0;
}

.intro-screen {
  max-width: 720px;
  padding: 48px 0 20px;
}

.intro-lead,
.hero-lead,
.question-copy,
.offer-subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.question-screen {
  max-width: 860px;
  padding: 34px 0 8px;
}

.cliffhanger {
  max-width: 720px;
  margin-bottom: 24px;
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
  background: rgba(201, 106, 43, 0.09);
}

.cliffhanger span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cliffhanger p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.micro-reveal {
  max-width: 660px;
  margin-bottom: 18px;
  border: 1px solid rgba(234, 230, 223, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(201, 106, 43, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.025);
}

.micro-reveal span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.micro-reveal p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.answer {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--text);
  background: #0b0b0b;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.answer:hover,
.answer.is-selected {
  border-color: rgba(201, 106, 43, 0.58);
  background: rgba(201, 106, 43, 0.1);
  transform: translateY(-1px);
}

.answer strong,
.answer span {
  display: block;
}

.answer strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
}

.answer span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.question-actions {
  min-height: 40px;
  margin-top: 18px;
}

.text-button {
  border: 0;
  padding: 8px 0;
  color: var(--muted);
  background: transparent;
  text-decoration: underline;
}

.lead-screen {
  max-width: 660px;
}

blockquote {
  margin: 20px 0;
  border: 1px solid rgba(201, 106, 43, 0.36);
  border-radius: 8px;
  padding: 20px;
  color: var(--text);
  background: rgba(201, 106, 43, 0.1);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.36;
}

.lead-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 20px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: #0b0b0b;
}

.loader {
  max-width: 520px;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #24211f;
}

.loader span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--orange);
  animation: loadSweep 1.1s ease-in-out infinite alternate;
}

@keyframes loadSweep {
  from {
    transform: translateX(-70%);
  }

  to {
    transform: translateX(200%);
  }
}

.result-screen {
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: center;
}

.result-copy {
  min-width: 0;
}

.result-headline {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.result-card {
  padding: 18px;
}

.result-logo {
  width: 132px;
  height: 132px;
  margin: 0 0 18px;
  border-radius: 50%;
  object-fit: cover;
}

.result-card p {
  color: var(--muted);
  line-height: 1.5;
}

.result-insight {
  max-width: 620px;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(5, 6, 7, 0.34);
}

.result-diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 16px 0;
}

.result-diagnostic-grid .result-insight {
  max-width: none;
  min-height: 138px;
  margin: 0;
}

.danger-insight {
  border-color: rgba(201, 106, 43, 0.28);
  background: rgba(201, 106, 43, 0.06);
}

.result-insight strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
}

.result-insight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.result-warning {
  max-width: 720px;
  margin: 16px 0;
  border: 1px solid rgba(201, 106, 43, 0.24);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(201, 106, 43, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(5, 6, 7, 0.42);
}

.result-warning span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-warning p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.48;
}

.result-damage {
  max-width: 720px;
  margin: 16px 0;
  border: 1px solid rgba(234, 230, 223, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.result-damage span,
.result-fast-cta strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-damage ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.result-damage li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.36);
  font-size: 13px;
  font-weight: 800;
}

.result-damage p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
}

.result-fast-cta {
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 18px;
  border: 1px solid rgba(201, 106, 43, 0.3);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.result-fast-cta span {
  color: var(--muted);
  line-height: 1.4;
}

.result-fast-cta strong {
  margin-bottom: 6px;
}

.result-fast-cta .btn {
  flex: 0 0 auto;
}

.result-meter {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 16px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(5, 6, 7, 0.44);
}

.meter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.meter-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.meter-row strong {
  color: var(--orange);
  font-size: 13px;
  text-align: right;
}

.meter-row i {
  grid-column: 1 / -1;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #24211f;
}

.meter-row b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
}

.share-result-card {
  max-width: 620px;
  margin: 16px 0;
  border: 1px solid rgba(201, 106, 43, 0.34);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(201, 106, 43, 0.12), rgba(17, 17, 17, 0.94)),
    #111111;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.share-result-card span,
.diagnostic-mini-grid span,
.precheckout-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  word-spacing: 0.18em;
  text-transform: uppercase;
}

.share-result-card strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.share-result-card p {
  margin: 12px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.share-result-card small {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.result-bridge {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.result-bridge p {
  margin-bottom: 8px;
}

.visual-rail {
  display: grid;
  align-content: center;
}

.quiet-brand-card {
  padding: 24px;
}

.rail-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 24px;
  border-radius: 8px;
  object-fit: cover;
}

.quiet-brand-card h2 {
  font-size: 32px;
}

.quiet-brand-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.exit-layer {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.62);
}

.exit-layer.is-open {
  display: flex;
}

.exit-box {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
}

.plain-x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 26px;
}

.sales-nav {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 14px max(18px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(37, 43, 51, 0.95);
  background: rgba(5, 6, 7, 0.92);
  backdrop-filter: blur(14px);
}

.sales-hero,
.section-band,
.offer-section,
.proof-section,
.mirror-section,
.method-section,
.personalized-section,
.sample-section,
.real-excerpt-section,
.social-proof-section,
.fit-section,
.faq-section,
.guarantee-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: center;
  min-height: clamp(560px, 62vh, 760px);
  padding: 44px 0 42px;
}

#oferta,
#entrada,
#completo {
  scroll-margin-top: 92px;
}

.hero-copy {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-actions .btn {
  min-width: 260px;
}

.hero-note-card {
  margin-top: 0;
  margin-bottom: 18px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: #0b0b0b;
  font-size: 13px;
  font-weight: 700;
}

.hero-mark {
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080808;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.hero-mark img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96) brightness(0.86);
}

.section-band,
.offer-section,
.faq-section,
.guarantee-section {
  padding: 50px 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 16px;
  align-items: stretch;
  padding: 0 0 38px;
}

.proof-section p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: rgba(17, 17, 17, 0.72);
  line-height: 1.5;
}

.proof-section strong {
  color: var(--text);
}

.bridge-section,
.ladder-section,
.checkout-preview-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.bridge-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: end;
}

.bridge-section h2,
.bridge-section p {
  margin-bottom: 0;
}

.bridge-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.personalized-section {
  max-width: 860px;
  padding: 30px 0 48px;
}

.diagnosis-card {
  border: 1px solid rgba(201, 106, 43, 0.38);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(201, 106, 43, 0.1), rgba(17, 17, 17, 0.78));
}

.diagnosis-card span,
.sample-grid span,
.offer-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.diagnosis-card strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.12;
}

.diagnosis-card p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.profile-fable {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(5, 6, 7, 0.34);
}

.profile-fable span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-fable p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.34;
}

.diagnostic-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.diagnostic-mini-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(17, 17, 17, 0.72);
}

.diagnostic-mini-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.method-section {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

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

.method-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.72);
}

.method-grid span {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
}

.method-grid h3 {
  margin: 18px 0 8px;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.mirror-section {
  max-width: 860px;
  padding: 48px 0;
}

.mirror-section h2 {
  max-width: 760px;
}

.mirror-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.sample-section {
  padding: 42px 0 50px;
  border-top: 1px solid var(--line);
}

.sample-section-early {
  padding-top: 38px;
  border-top: 0;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 12px;
}

.sample-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(17, 17, 17, 0.72);
}

.sample-section-early .sample-grid article {
  min-height: 220px;
  background:
    radial-gradient(circle at 86% 0%, rgba(201, 106, 43, 0.13), transparent 42%),
    rgba(17, 17, 17, 0.76);
}

.sample-grid p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}

.swipe-hint {
  display: none;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.sample-close,
.offer-mini-fable {
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  background: rgba(201, 106, 43, 0.08);
  font-weight: 800;
  line-height: 1.45;
}

.sample-close {
  max-width: 760px;
  margin: 18px 0 0;
  padding: 16px 18px;
}

.offer-mini-fable {
  padding: 14px 16px;
}

.real-excerpt-section {
  padding: 48px 0 54px;
  border-top: 1px solid var(--line);
}

.excerpt-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.excerpt-page,
.excerpt-question {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.excerpt-page {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.excerpt-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 106, 43, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(201, 106, 43, 0.07), transparent 42%);
}

.excerpt-page > * {
  position: relative;
}

.excerpt-page span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.excerpt-page h3 {
  max-width: 620px;
  font-size: 34px;
}

.excerpt-page p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.excerpt-page blockquote {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 23px;
}

.excerpt-question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(180deg, rgba(201, 106, 43, 0.08), rgba(17, 17, 17, 0.82));
}

.excerpt-question h3 {
  font-size: 30px;
}

.excerpt-question p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.compact-section {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.line-grid p {
  min-height: 112px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  color: var(--muted);
  background: rgba(17, 17, 17, 0.72);
  line-height: 1.5;
}

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

.ladder-grid article,
.checkout-preview-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(17, 17, 17, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ladder-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.ladder-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-preview-card {
  background: linear-gradient(180deg, rgba(201, 106, 43, 0.08), rgba(17, 17, 17, 0.78));
}

.checkout-preview-card h2 {
  max-width: 760px;
}

.checkout-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.checkout-preview-grid span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 13px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.36);
  font-size: 14px;
  font-weight: 800;
}

.offer-layout {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(201, 106, 43, 0.46);
  background: linear-gradient(180deg, rgba(201, 106, 43, 0.09), rgba(17, 17, 17, 0.95));
}

.primary-offer .btn {
  width: 100%;
  margin-top: 4px;
}

.image-offer {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.offer-media {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: #050607;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.offer-role {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(201, 106, 43, 0.3);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--text);
  background: rgba(201, 106, 43, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-content h2,
.offer-content p {
  margin-bottom: 0;
}

.offer-note {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(201, 106, 43, 0.3);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--orange);
  background: rgba(201, 106, 43, 0.08);
  font-weight: 800;
}

.complete-offer {
  background: rgba(17, 17, 17, 0.88);
}

.complete-offer .price {
  font-size: 46px;
}

.price {
  margin: 0;
  color: var(--orange);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.offer-lines {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.offer-lines span {
  padding: 14px 16px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.35;
}

.offer-lines span:last-child {
  border-bottom: 0;
}

.social-proof-section {
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.social-proof-section .section-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.social-proof-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.72);
  object-fit: cover;
}

.secondary-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.secondary-offer p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.secondary-price {
  display: grid;
  gap: 12px;
  align-items: center;
}

.secondary-price strong {
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.secondary-price .btn {
  width: 100%;
}

.fit-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.fit-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.guarantee-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 82px;
  border-top: 1px solid var(--line);
}

.guarantee-section p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.78);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  color: var(--text);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.5;
}

.sticky-offer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: none;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(9, 12, 16, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.sticky-offer.is-visible {
  display: flex;
}

.has-recovery .sticky-offer.is-visible {
  display: none;
}

.sticky-offer span {
  color: var(--text);
  font-size: 14px;
}

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

.precheckout-layer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.precheckout-layer.is-open {
  display: flex;
}

.precheckout-box {
  position: relative;
  width: min(520px, 100%);
  border: 1px solid rgba(201, 106, 43, 0.34);
  border-radius: 8px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(201, 106, 43, 0.1), rgba(17, 17, 17, 0.98)),
    #111111;
  box-shadow: var(--shadow);
}

.precheckout-box h2 {
  margin-bottom: 10px;
}

.precheckout-box p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.precheckout-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0;
}

.precheckout-summary {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(5, 6, 7, 0.34);
}

.precheckout-summary strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

.precheckout-summary p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.precheckout-summary small {
  display: inline-flex;
  border: 1px solid rgba(201, 106, 43, 0.28);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--orange);
  background: rgba(201, 106, 43, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.precheckout-proof span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 11px;
  color: var(--text);
  background: rgba(5, 6, 7, 0.35);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.recovery-bar {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(760px, calc(100% - 36px));
  border: 1px solid rgba(201, 106, 43, 0.32);
  border-radius: 8px;
  padding: 16px 52px 16px 16px;
  background: rgba(9, 12, 16, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.recovery-bar[hidden] {
  display: none;
}

.recovery-bar p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.4;
}

.recovery-bar .plain-x {
  top: 10px;
  right: 10px;
}

.reveal-block {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.upsell-wrap {
  display: grid;
  align-items: center;
  width: min(960px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 0;
}

.upsell-card {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.kiwify-slot {
  margin-top: 22px;
  border: 1px dashed rgba(201, 106, 43, 0.5);
  border-radius: 8px;
  padding: 18px;
  color: var(--muted);
  background: rgba(201, 106, 43, 0.08);
}

.thankyou-card,
.downsell-card {
  max-width: 820px;
  margin: 0 auto;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.access-portal {
  max-width: 980px;
}

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

.portal-grid article,
.access-grid article,
.access-box,
.code-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.34);
}

.portal-grid article,
.access-grid article {
  padding: 18px;
}

.portal-grid span,
.access-grid span,
.code-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-grid strong,
.access-grid strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.portal-grid p,
.access-grid p,
.access-box p {
  margin-top: 10px;
  color: var(--muted);
}

.access-box {
  display: grid;
  gap: 16px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(201, 106, 43, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(5, 6, 7, 0.44);
}

.access-box h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.code-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.code-card span {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.code-card strong,
.access-grid code {
  color: #fff7ef;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

.access-grid code {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(201, 106, 43, 0.28);
  border-radius: 8px;
  background: rgba(201, 106, 43, 0.08);
  white-space: normal;
  overflow-wrap: anywhere;
}

.downsell-stack {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.downsell-stack span {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: rgba(5, 6, 7, 0.34);
}

.downsell-stack span:last-child {
  border-bottom: 0;
}

.downsell-price {
  display: grid;
  gap: 14px;
}

.downsell-price strong {
  color: var(--orange);
  font-size: 56px;
  line-height: 1;
}

@media (max-width: 980px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .quiz-shell,
  .sales-hero {
    grid-template-columns: 1fr;
  }

  .visual-rail {
    display: none;
  }

  .quiz-shell {
    max-width: 780px;
  }

  .sales-hero {
    min-height: auto;
  }

  .hero-mark {
    min-height: 250px;
  }

  .hero-mark img {
    width: 100%;
    height: 100%;
  }

  .line-grid,
  .method-grid,
  .diagnostic-mini-grid,
  .ladder-grid,
  .checkout-preview-grid,
  .excerpt-layout,
  .sample-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-section,
  .bridge-section {
    grid-template-columns: 1fr;
  }

  .line-grid p {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .quiz-shell,
  .sales-hero,
  .section-band,
  .offer-section,
  .proof-section,
  .mirror-section,
  .method-section,
  .personalized-section,
  .sample-section,
  .real-excerpt-section,
  .social-proof-section,
  .bridge-section,
  .ladder-section,
  .checkout-preview-section,
  .fit-section,
  .faq-section,
  .guarantee-section,
  .upsell-wrap {
    width: calc(100% - 24px);
  }

  .sales-hero {
    display: block;
  }

  .quiz-shell {
    min-height: auto;
    padding: 12px 0 24px;
  }

  .quiz-panel {
    min-height: auto;
    padding: 20px;
  }

  .topbar,
  .progress-copy,
  .sales-nav,
  .fit-section,
  .guarantee-section,
  .sticky-offer {
    align-items: stretch;
  }

  .topbar,
  .sales-nav,
  .fit-section,
  .guarantee-section,
  .sticky-offer {
    flex-direction: column;
  }

  .topbar-note,
  .nav-cta {
    display: none;
  }

  .intro-screen,
  .question-screen,
  .lead-screen,
  .loading-screen {
    align-content: start;
    max-width: 100%;
    padding: 32px 0 6px;
  }

  .intro-lead,
  .hero-lead,
  .question-copy,
  .offer-subtitle {
    font-size: 16px;
  }

  .answers,
  .result-screen,
  .result-diagnostic-grid,
  .result-damage ul,
  .secondary-offer,
  .portal-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .code-card {
    grid-template-columns: 1fr;
  }

  .answer {
    min-height: 92px;
  }

  .hero-actions,
  .result-actions {
    display: grid;
  }

  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sample-swipe {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(272px, 86vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding-bottom: 10px;
  }

  .sample-swipe article {
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: block;
  }

  .trust-strip span {
    width: 100%;
  }

  .hero-mark {
    min-height: 210px;
  }

  .hero-mark img {
    width: 100%;
    height: 100%;
  }

  .price {
    font-size: 46px;
  }

  .method-section,
  .compact-section,
  .checkout-preview-section {
    display: none;
  }

  .image-offer {
    grid-template-columns: 1fr;
  }

  .offer-media {
    min-height: 360px;
  }

  .sticky-offer {
    display: none;
  }

  .sticky-offer.is-visible {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
  }

  .sticky-offer .btn {
    width: 100%;
  }

  .precheckout-proof,
  .recovery-bar {
    grid-template-columns: 1fr;
  }

  .precheckout-box {
    padding: 24px;
  }

  .result-fast-cta {
    display: grid;
  }

  .result-fast-cta .btn {
    width: 100%;
  }

  .recovery-bar {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .brand-lockup small {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .quiz-panel,
  .price-card,
  .line-grid p {
    padding: 18px;
  }

  .sales-hero {
    padding-top: 34px;
  }

  .sticky-offer span,
  .secondary-price strong {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .quiz-shell,
  .sales-hero,
  .section-band,
  .offer-section,
  .proof-section,
  .mirror-section,
  .method-section,
  .personalized-section,
  .sample-section,
  .real-excerpt-section,
  .social-proof-section,
  .bridge-section,
  .ladder-section,
  .checkout-preview-section,
  .fit-section,
  .faq-section,
  .guarantee-section {
    width: min(360px, calc(100vw - 24px));
    margin-right: auto;
    margin-left: 12px;
  }
}
