:root {
  --color-bg: #fffbf7;
  --color-surface: #fffdfb;
  --color-primary: #e8a598;
  --color-primary-hover: #d4917f;
  --color-text-dark: #2d2d2d;
  --color-text-light: #6b6b6b;
  --color-accent: #f4ddd4;
  --color-accent-strong: #f2cfc3;
  --color-trust: #a8d5ba;
  --color-urgency: #f4a261;
  --color-dark-panel: #554640;
  --color-dark-bg: #3e302c;
  --color-border: rgba(45, 45, 45, 0.08);
  --shadow-soft: 0 20px 50px rgba(107, 72, 60, 0.08);
  --shadow-button: 0 10px 24px rgba(232, 165, 152, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --container-max: 1140px;
  --container-narrow: 760px;
  --spacing-section: 96px;
  --spacing-block: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background:
    radial-gradient(circle at top left, rgba(244, 221, 212, 0.72), transparent 36%),
    linear-gradient(180deg, #fff9f5 0%, #fffbf7 24%, #fffaf7 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container-max));
  margin: 0 auto;
}

.container--narrow {
  width: min(calc(100% - 40px), var(--container-narrow));
}

.hero {
  padding: 34px 0 72px;
}

.hero__inner,
.solution-grid,
.vision-grid,
.offer-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 56px;
}

.hero__copy {
  max-width: 640px;
  padding: 58px 0 24px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #9b6d61;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label--light {
  color: #f1dbd2;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  max-width: 12ch;
}

.hero__title {
  max-width: 10.8ch;
  font-family: var(--font-accent);
  font-size: clamp(3.15rem, 5.9vw, 5.3rem);
  font-style: normal;
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: #6f5046;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

p,
li {
  font-size: 1.02rem;
}

.hero__lede,
.body-large {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--color-text-light);
  max-width: 36rem;
}

.hero__lede {
  max-width: 29rem;
  margin-top: 24px;
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero__actions {
  margin-top: 26px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #dd987d 0%, #d48b71 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.02rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(212, 139, 113, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(212, 139, 113, 0.3);
  background: linear-gradient(180deg, #d69276 0%, #ca8168 100%);
}

.cta-button--secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #a15e4f;
  box-shadow: 0 10px 24px rgba(161, 94, 79, 0.12);
}

.cta-button--checkout {
  width: 100%;
}

.cta-subtext,
.price-note,
.section-note,
.footer__copy,
.footer__disclaimer {
  color: var(--color-text-light);
}

.cta-subtext {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.hero__visual,
.product-panel,
.vision-visual {
  position: relative;
}

.hero__visual img,
.product-panel img,
.vision-visual img {
  width: 100%;
  border-radius: 30px;
}

.hero__visual {
  align-self: center;
  justify-self: end;
  width: min(100%, 560px);
}

.section {
  padding: var(--spacing-section) 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(244, 221, 212, 0.26) 0%, rgba(255, 255, 255, 0) 100%);
}

.section--accent {
  background: linear-gradient(180deg, rgba(244, 221, 212, 0.35) 0%, rgba(255, 255, 255, 0.75) 100%);
}

.section--dark {
  color: #fff8f5;
  background:
    radial-gradient(circle at top right, rgba(244, 162, 97, 0.25), transparent 28%),
    linear-gradient(135deg, #4a3934 0%, #382b27 100%);
}

.section--offer {
  background: linear-gradient(180deg, rgba(244, 221, 212, 0.42) 0%, rgba(255, 251, 247, 0.88) 100%);
}

.section--warning {
  background: linear-gradient(180deg, rgba(244, 162, 97, 0.18) 0%, rgba(255, 251, 247, 0) 100%);
}

.section--final {
  padding-top: 72px;
}

.pain-lines {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.pain-lines p {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.28;
}

.empathy {
  margin: 0 0 28px;
  font-size: 1.35rem;
}

.callout,
.thank-you-card,
.steps-card,
.offer-card,
.faq-card,
.trust-card,
.module-card,
.myth-card,
.truth-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.callout {
  padding: 28px;
}

.callout p {
  margin: 0;
}

.callout p + p {
  margin-top: 10px;
}

.myth-grid,
.module-grid,
.trust-grid {
  display: grid;
  gap: 24px;
}

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

.myth-card,
.truth-card,
.module-card,
.trust-card {
  padding: 28px;
}

.myth-card__label,
.truth-card__eyebrow {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9c7c72;
}

.truth-card__accent,
.speed-proof {
  color: #a15e4f;
  font-size: 1.35rem;
  font-weight: 800;
}

.section-note {
  margin-top: 24px;
}

.section-note--light {
  color: rgba(255, 248, 245, 0.8);
}

.solution-grid,
.vision-grid,
.offer-grid {
  grid-template-columns: 1fr 1fr;
}

.arrow-list,
.trust-list,
.module-card ul,
.myth-card ul {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.arrow-list li,
.trust-list li,
.module-card li,
.myth-card li {
  position: relative;
  padding-left: 28px;
}

.arrow-list li + li,
.trust-list li + li,
.module-card li + li,
.myth-card li + li {
  margin-top: 12px;
}

.arrow-list li::before,
.module-card li::before,
.myth-card li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #c98172;
  font-weight: 800;
}

.trust-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #d28f74;
  font-weight: 800;
}

.trust-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 22px;
}

.trust-list--inline li + li {
  margin-top: 0;
}

.trust-list--centered {
  justify-content: center;
}

.trust-list--hero {
  max-width: 34rem;
  gap: 16px 28px;
  margin-top: 20px;
}

.trust-list--hero li {
  font-size: 1rem;
  color: #4f4946;
}

.module-grid,
.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.module-card--bonus {
  background: linear-gradient(180deg, #fffdf9 0%, #fff4ef 100%);
}

.vision-lines {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.vision-lines p {
  margin: 0;
  font-size: 1.16rem;
}

.anti-guru {
  margin: 32px 0 0;
  padding: 26px 28px;
  border-left: 4px solid var(--color-primary);
  background: rgba(244, 221, 212, 0.35);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-accent);
  font-size: 1.55rem;
  color: #6e4e46;
}

.offer-card,
.faq-card {
  padding: 34px;
}

.offer-card h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}

.payment-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.payment-note span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(168, 213, 186, 0.2);
  color: #446a55;
  font-weight: 700;
  font-size: 0.92rem;
}

.faq-item + .faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.site-footer {
  padding: 36px 0 52px;
}

.footer__inner {
  display: grid;
  gap: 16px;
}

.footer__brand {
  margin: 0;
  font-weight: 800;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer__nav a,
.text-link {
  color: #9c5d4f;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(244, 221, 212, 0.58), transparent 35%),
    linear-gradient(180deg, #fffaf6 0%, #fffbf7 100%);
}

.legal-page {
  padding: 48px 0 96px;
}

.legal-content h2,
.thank-you-card h2 {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.legal-content p,
.legal-content li,
.ordered-list li {
  color: #494949;
}

.legal-content ul,
.ordered-list {
  padding-left: 20px;
}

.thank-you-card {
  padding: 36px;
}

.steps-card {
  padding: 24px;
  margin-top: 22px;
}

.ordered-list li + li {
  margin-top: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 680px);
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(45, 45, 45, 0.96);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  z-index: 20;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95em;
}

@media (max-width: 900px) {
  :root {
    --spacing-section: 72px;
  }

  .hero__inner,
  .solution-grid,
  .vision-grid,
  .offer-grid,
  .myth-grid,
  .module-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__copy {
    order: 1;
    max-width: none;
    padding-top: 24px;
  }

  .hero__visual {
    order: 2;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 24px), var(--container-max));
  }

  p,
  li {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    padding-inline: 20px;
  }

  .hero__title {
    max-width: 9.8ch;
    font-size: clamp(2.9rem, 13vw, 4.2rem);
    line-height: 0.95;
  }

  .hero__lede {
    font-size: 1.08rem;
  }

  .trust-list--inline {
    flex-direction: column;
    gap: 10px;
  }

  .offer-card,
  .faq-card,
  .module-card,
  .trust-card,
  .myth-card,
  .truth-card,
  .thank-you-card {
    padding: 24px;
    border-radius: 24px;
  }

  .anti-guru {
    font-size: 1.3rem;
  }

  .section--final {
    padding-top: 54px;
  }
}
