@font-face {
  font-family: "Anton";
  src: url("assets/fonts/anton-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Archivo Black";
  src: url("assets/fonts/archivo-black-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f3efe6;
  --paper-deep: #ece6d8;
  --surface: #fffdf8;
  --ink: #111512;
  --muted: #657068;
  --line: #e2dbc9;
  --red: #e44732;
  --red-dark: #c93a27;
  --green: #126b4c;
  --green-dark: #0d4d38;
  --shadow: 0 18px 44px rgba(17, 21, 18, 0.12);
  --radius: 10px;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-cta: "Archivo Black", Arial, sans-serif;
  --font-body: "Montserrat", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

/* ============ Reveal-on-scroll ============ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

a {
  color: inherit;
}

section[id] {
  scroll-margin-top: 84px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  margin: 10px 0 14px;
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  line-height: 1.16;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.18;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
}

/* Red marker underline on the key word */
.marker {
  font-style: normal;
  padding: 0 0.08em 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background:
    linear-gradient(97deg,
      rgba(228, 71, 50, 0) 1.5%,
      rgba(228, 71, 50, 0.92) 4%,
      rgba(228, 71, 50, 0.85) 95%,
      rgba(228, 71, 50, 0) 98%)
    left 0 bottom 0.02em / 100% 0.24em no-repeat;
}

/* Red marker ellipse around the price */
.price-circle {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 0.32em 0.62em;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

.price-circle::after {
  content: "";
  position: absolute;
  inset: -2px -6px;
  border: 3px solid var(--red);
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.price-circle.big {
  font-size: 3.4rem;
  color: var(--paper);
}

/* ============ Header ============ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(243, 239, 230, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 0.82rem;
}

.brand-name {
  font-family: var(--font-cta);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 0.86rem;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--red-dark);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(17, 21, 18, 0.1);
}

/* ============ Layout ============ */

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 22px;
}

.section-head > p:last-child:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-kicker,
.price-label,
.breadcrumb {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============ Primary CTA ============ */

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 15px 22px;
  border-radius: 9px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 1.02rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(228, 71, 50, 0.3);
}

.primary-cta {
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.primary-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(228, 71, 50, 0.34);
}

.primary-cta:active {
  transform: translateY(0);
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--green-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.secondary-cta:hover {
  border-color: var(--green);
}

/* ============ Hero ============ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) 0 34px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px -40vw -40px;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 30%, rgba(18, 107, 76, 0.1), transparent 70%),
    radial-gradient(50% 60% at 10% 80%, rgba(228, 71, 50, 0.07), transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  max-width: 560px;
}

.hook-box {
  display: grid;
  gap: 6px;
  margin: 0 0 20px;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--surface);
}

.hook-box strong {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.hook-box span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-offer {
  max-width: 460px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.price-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-trust li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.hero-visual img {
  width: min(100%, 380px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
  background: #fff;
}

.hero-visual-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============ Pain ============ */

.pain-section {
  margin: 26px 0 48px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pain-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  max-width: 720px;
}

.pain-list li {
  position: relative;
  padding-left: 32px;
  font-size: 1.02rem;
}

.pain-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--red);
  font-weight: 900;
  font-size: 1.05rem;
}

.pain-twist {
  max-width: 720px;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: var(--paper);
}

.pain-twist p {
  margin: 0;
  font-size: 1.02rem;
}

/* ============ Mechanism ============ */

.mechanism-section {
  margin: 48px 0;
}

.mechanism-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.mechanism-steps li {
  min-width: 0;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mechanism-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 0.9rem;
}

.mechanism-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ============ Offer + gallery ============ */

.offer-section {
  margin: 48px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.gallery {
  min-width: 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--paper-deep);
}

.gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  background: #fff;
}

.image-label {
  display: flex;
  gap: 8px;
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
}

.image-label::before {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  align-self: stretch;
  border-radius: 2px;
  background: var(--green);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
  min-width: 0;
}

.thumb {
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}

.thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  border-radius: 5px;
  background: var(--paper-deep);
}

.thumb.document-preview img {
  object-fit: contain;
  background: #faf8f3;
}

.thumb span {
  display: block;
  margin-top: 7px;
  font-size: 0.8rem;
  font-weight: 800;
}

.thumb.active {
  border-color: var(--green);
  color: var(--ink);
  box-shadow: 0 0 0 2px rgba(18, 107, 76, 0.18);
}

.offer-stack {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.stack-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stack-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px 14px 44px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stack-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
}

.stack-list strong {
  font-size: 1rem;
}

.stack-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stack-price {
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stack-price > p:first-child {
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  color: var(--muted);
}

.stack-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}

.stack-price-row > span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  max-width: 260px;
}

/* ============ Numbers ============ */

.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin: 48px 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
}

.number-item {
  min-width: 0;
  padding: 26px 18px;
  border-right: 1px solid rgba(243, 239, 230, 0.16);
  text-align: center;
}

.number-item:last-child {
  border-right: 0;
}

.number-item strong,
.number-item span {
  display: block;
}

.number-item strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.7rem;
  line-height: 1;
  color: var(--red);
}

.number-item span {
  margin-top: 8px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============ Technique ============ */

.technique-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  margin: 48px 0;
  padding: clamp(22px, 4vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.technique-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.technique-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-deep);
}

.technique-visual img {
  width: 100%;
  height: auto;
}

/* ============ Timeline ============ */

.plan-section {
  margin: 48px 0;
}

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

.timeline article {
  min-width: 0;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ============ Trust bar ============ */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 8px 0 48px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-bar-item {
  min-width: 0;
  padding: 18px 20px;
  background: var(--surface);
}

.trust-bar-item strong {
  display: block;
  font-size: 0.98rem;
}

.trust-bar-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ============ Evidence / proof ============ */

.evidence-section {
  margin: 48px 0;
  padding: clamp(26px, 4.5vw, 48px);
  border-radius: var(--radius);
  background:
    radial-gradient(80% 120% at 85% 0%, rgba(18, 107, 76, 0.22), transparent 60%),
    var(--ink);
  color: var(--paper);
}

.evidence-head {
  max-width: 720px;
}

.evidence-head h2 {
  margin: 8px 0 14px;
}

.evidence-head .accent-green {
  color: #4cc79a;
}

.evidence-head > p:last-child {
  margin: 0;
  color: #c9cec9;
  font-size: 1.05rem;
}

.section-kicker.light {
  color: #4cc79a;
}

.evidence-counter {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  margin: 30px 0 8px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(243, 239, 230, 0.16);
}

.evidence-counter-num {
  display: inline-flex;
  align-items: flex-start;
  font-family: var(--font-display);
  line-height: 0.9;
  color: #4cc79a;
}

.evidence-counter-num strong {
  font-size: clamp(4.2rem, 13vw, 8rem);
  font-weight: 400;
}

.evidence-counter-num .plus {
  margin-top: 0.1em;
  font-size: clamp(2.4rem, 7vw, 4rem);
}

.evidence-counter-label {
  max-width: 360px;
  margin: 0;
  color: var(--paper);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.35;
}

.evidence-subhead {
  margin: 26px 0 14px;
  color: #c9cec9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.evidence-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(243, 239, 230, 0.16);
  border-radius: 10px;
  background: rgba(243, 239, 230, 0.04);
  text-decoration: none;
  color: var(--paper);
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease;
}

.evidence-card:hover {
  border-color: #4cc79a;
  background: rgba(76, 199, 154, 0.08);
  transform: translateY(-3px);
}

.evidence-k {
  font-family: var(--font-cta);
  font-size: 1.18rem;
  color: #4cc79a;
}

.evidence-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.evidence-meta {
  color: #a9b0a9;
  font-size: 0.82rem;
  line-height: 1.4;
}

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

.evidence-pillars article {
  min-width: 0;
  padding: 18px;
  border-radius: 10px;
  background: rgba(243, 239, 230, 0.04);
  border: 1px solid rgba(243, 239, 230, 0.12);
}

.evidence-pillars h3 {
  margin-bottom: 6px;
  color: #4cc79a;
}

.evidence-pillars p {
  margin: 0;
  color: #c9cec9;
  font-size: 0.92rem;
}

/* ============ Inline CTA ============ */

.inline-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: 22px;
  align-items: center;
  margin: 48px 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.inline-cta .section-kicker {
  color: var(--red);
}

.inline-cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 10px 0 0;
  color: #c9cec9;
}

/* ============ Comparison ============ */

.comparison-section {
  margin: 48px 0;
}

.comparison-table {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1.15fr;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row div {
  color: var(--muted);
  font-size: 0.96rem;
}

.comparison-row div:first-child {
  color: var(--ink);
  font-weight: 800;
}

.comparison-row.header {
  background: var(--paper-deep);
}

.comparison-row.header div {
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.comparison-row.highlighted {
  background: rgba(18, 107, 76, 0.07);
}

.comparison-row.highlighted div:first-child {
  color: var(--green-dark);
}

.comparison-cta {
  max-width: 420px;
  margin-top: 18px;
}

/* ============ Fit ============ */

.fit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 48px 0;
}

.fit-card {
  min-width: 0;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fit-card.good {
  border-color: rgba(18, 107, 76, 0.45);
}

.fit-card.good .section-kicker {
  color: var(--green);
}

.fit-card.caution {
  background: #fdf6ec;
  border-color: #e8d5ad;
}

.fit-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 16px 0 0;
}

.fit-card li {
  color: var(--muted);
}

/* ============ FAQ ============ */

.faq-section {
  margin: 48px 0;
}

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

.faq-list details {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  margin: 0;
  padding: 14px 18px 16px;
  color: var(--muted);
}

/* ============ Final CTA ============ */

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  margin: 48px 0 96px;
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.final-cta .section-kicker {
  color: var(--red);
}

.final-cta h2 {
  margin-top: 8px;
}

.final-steps {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 18px 0 0;
}

.final-steps li {
  color: #c9cec9;
  font-size: 0.98rem;
}

.final-steps strong {
  color: var(--paper);
}

.final-cta-action {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.final-cta-action .payment-note {
  color: #a9b0a9;
  margin: 0;
}

.purchase-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}

.purchase-links a {
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
  text-underline-offset: 3px;
}

/* ============ Footer ============ */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 30px;
  padding: 18px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.state-footer {
  width: min(760px, calc(100% - 32px));
  padding-bottom: 30px;
}

/* ============ Mobile buy bar ============ */

.mobile-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100vw;
  max-width: 100vw;
  padding: 10px 14px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -14px 34px rgba(17, 21, 18, 0.16);
}

.mobile-buy-bar > div {
  flex: 0 0 auto;
  min-width: 0;
}

.mobile-buy-bar span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.mobile-buy-bar strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1.1;
}

.mobile-buy-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  max-width: 220px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-cta);
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

/* ============ Consent panel (injected by script.js) ============ */

.analytics-consent {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  width: min(430px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.analytics-consent strong {
  display: block;
  margin-bottom: 4px;
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.analytics-consent div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.analytics-consent button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--green);
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent button:last-child {
  background: var(--surface);
  color: var(--green-dark);
}

/* ============ Success page ============ */

.success-body {
  min-height: 100vh;
  background: var(--paper);
}

.success-main {
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 0;
}

.success-card {
  width: 100%;
  min-width: 0;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.success-brand {
  margin-bottom: 28px;
}

.success-card h1 {
  margin-top: 8px;
  font-size: clamp(2.25rem, 8vw, 4.2rem);
}

.success-lead {
  max-width: 620px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.06rem;
}

.success-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.success-steps article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.success-steps article > div {
  min-width: 0;
}

.success-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.success-steps h2 {
  font-size: 1.08rem;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
}

.success-steps p,
.success-note {
  margin: 6px 0 0;
  color: var(--muted);
}

.success-note {
  padding: 12px;
  border: 1px solid rgba(18, 107, 76, 0.25);
  border-radius: 8px;
  background: var(--paper);
  font-size: 0.94rem;
}

.success-home {
  margin-top: 18px;
}

.success-download {
  margin: 4px 0 20px;
}

.success-download .success-note {
  margin: 0;
}

.success-download-cta {
  width: 100%;
  text-align: center;
}

/* ============ Policy page ============ */

.policy-main {
  display: grid;
  gap: 18px;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 60px;
}

.policy-hero,
.policy-section {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.policy-hero h1 {
  margin-top: 8px;
  font-size: clamp(2.25rem, 7vw, 4rem);
}

.policy-hero p,
.policy-section p,
.policy-bullets,
.policy-list dd {
  color: var(--muted);
}

.policy-section h2 {
  margin-bottom: 12px;
}

.policy-section p {
  margin: 0;
}

.policy-section p + p {
  margin-top: 12px;
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.policy-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.policy-list dt {
  color: var(--ink);
  font-weight: 800;
}

.policy-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.policy-bullets {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
}

/* ============ Responsive ============ */

@media (max-width: 980px) {
  .hero,
  .technique-section,
  .inline-cta,
  .fit-section,
  .final-cta,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-visual img {
    width: min(70%, 320px);
  }

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

  .mechanism-steps li:last-child {
    grid-column: 1 / -1;
  }

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

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

  .evidence-pillars article:last-child {
    grid-column: 1 / -1;
  }

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

  .number-item:nth-child(2) {
    border-right: 0;
  }

  .number-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(243, 239, 230, 0.16);
  }

  .final-cta-action {
    justify-items: start;
    text-align: left;
  }

  .purchase-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  main {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.05rem, 9vw, 2.6rem);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(1.5rem, 6.4vw, 1.9rem);
    line-height: 1.18;
  }

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

  .header-cta {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .hero {
    gap: 20px;
  }

  .hero-offer {
    max-width: none;
  }

  .price-circle {
    font-size: 1.9rem;
  }

  .price-circle.big {
    font-size: 2.8rem;
  }

  .pain-section,
  .mechanism-section,
  .offer-section,
  .numbers-strip,
  .technique-section,
  .plan-section,
  .proof-section,
  .inline-cta,
  .comparison-section,
  .fit-section,
  .faq-section {
    margin: 32px 0;
  }

  .final-cta {
    margin: 32px 0 80px;
  }

  .mechanism-steps,
  .timeline,
  .evidence-grid,
  .evidence-pillars,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .evidence-counter {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gallery {
    padding: 10px;
  }

  .gallery-main,
  .gallery-main img {
    min-height: 0;
    height: 380px;
  }

  .thumb-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 2px;
    max-width: 100%;
  }

  .thumb {
    flex: 0 0 80px;
    width: 80px;
    padding: 6px;
  }

  .thumb img {
    height: 58px;
  }

  .thumb span {
    font-size: 0.72rem;
  }

  .number-item {
    padding: 18px 10px;
  }

  .number-item strong {
    font-size: 2.1rem;
  }

  .number-item span {
    font-size: 0.7rem;
  }

  .comparison-table {
    border: 0;
    background: transparent;
  }

  .comparison-row,
  .comparison-row.header {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
  }

  .comparison-row.header {
    display: none;
  }

  .mobile-buy-bar {
    display: flex;
  }

  .analytics-consent {
    bottom: 76px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 24px);
  }

  .state-footer {
    width: min(340px, calc(100vw - 24px));
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 24px;
  }

  .policy-main {
    width: calc(100% - 24px);
    padding: 24px 0 44px;
  }

  .policy-hero,
  .policy-section {
    padding: 22px;
  }

  .policy-hero h1 {
    font-size: 2.1rem;
  }

  .policy-list div {
    grid-template-columns: 1fr;
  }

  body.success-body .success-main {
    width: calc(100vw - 24px);
    padding: 14px 0;
  }

  body.success-body .success-card {
    padding: 20px;
  }

  body.success-body .success-card h1 {
    font-size: 2.1rem;
  }
}

@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;
  }
}
