:root {
  --bg: #faf7f0;
  --paper: #ffffff;
  --ink: #171717;
  --muted: #5e5a54;
  --line: #ded4c5;
  --accent: #8b1e1e;
  --accent-dark: #641414;
  --gold: #b88a44;
  --soft: #efe4d3;
  --shadow: 0 26px 70px rgba(23, 23, 23, 0.16);
  --section-y: clamp(2.75rem, 5.5vw, 4.75rem);
  --card-x: clamp(1.25rem, 5vw, 4.5rem);
  --eyebrow-size: 0.78rem;
  --section-title-size: clamp(1.95rem, 3.6vw, 3.2rem);
  --section-title-line: 1.08;
  --card-title-size: clamp(1.15rem, 1.8vw, 1.45rem);
  --card-title-line: 1.22;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(23, 23, 23, 0.025) 1px, transparent 1px);
  background-size: 100% 42px;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.85rem, 7.4vw, 6.25rem);
}

.hero h1 {
  max-width: min(100%, 780px);
  font-size: clamp(2.75rem, 5.6vw, 5.25rem);
  line-height: 1.02;
  overflow-wrap: normal;
  text-wrap: balance;
}

h2 {
  max-width: 880px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

h3 {
  font-size: var(--card-title-size);
  line-height: var(--card-title-line);
}

p {
  margin: 0 0 1rem;
  overflow-wrap: break-word;
}

.text-nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.78rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(23, 23, 23, 0.1);
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  flex: 0 0 auto;
  max-width: min(52vw, 260px);
  font-size: clamp(0.9rem, 3.5vw, 1rem);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(0.65rem, 2.2vw, 1.2rem);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  color: var(--muted);
  font-size: clamp(0.82rem, 2.4vw, 0.95rem);
  scrollbar-width: none;
}

.nav a {
  flex: 0 0 auto;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: var(--section-y) 0;
}

.hero {
  display: grid;
  gap: clamp(2rem, 4.5vw, 4rem);
  min-height: auto;
  align-items: center;
  padding-top: clamp(1.35rem, 3vw, 2.4rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.75rem);
}

.hero + .problem {
  padding-top: clamp(1.9rem, 4vw, 3.4rem);
}

.hero__content {
  min-width: 0;
  overflow: visible;
}

.hero__lead {
  max-width: 720px;
  margin-top: 1.2rem;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  color: #34302c;
}

.hero__cover {
  justify-self: center;
  width: min(78vw, 390px);
  padding: 0.7rem;
  background: var(--paper);
  box-shadow: 0 20px 48px rgba(23, 23, 23, 0.14);
  transform: rotate(-1.5deg);
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: var(--eyebrow-size);
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.button-row,
.preview__action {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--accent);
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #fff;
}

.button--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button--secondary {
  background: transparent;
  color: var(--accent);
}

.button--secondary:hover {
  background: var(--soft);
}

.text-download-link {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
  text-decoration: none;
}

.text-download-link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.button--wide {
  width: 100%;
  margin-top: 1.5rem;
}

.small-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-note {
  max-width: 620px;
  padding: 0.8rem 1rem;
  background: rgba(239, 228, 211, 0.72);
  border-left: 4px solid var(--accent);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(1.45rem, 3.4vw, 2.25rem);
}

.section-heading h2 {
  max-width: 840px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 0.95rem;
  color: #3f3a35;
  font-size: 1.1rem;
  line-height: 1.6;
}

.two-column,
.split-band,
.bonus,
.author,
.preview {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.question-panel p {
  margin-bottom: 0.75rem;
  font-weight: 750;
}

.problem .section-heading {
  margin-bottom: clamp(1.45rem, 3.4vw, 2.25rem);
}

.problem h2 {
  max-width: 800px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.problem .two-column {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.problem .two-column > div:first-child {
  max-width: 680px;
}

.problem .two-column > div:first-child p {
  margin-bottom: 1.15rem;
  color: #312d29;
  line-height: 1.72;
}

.question-panel {
  padding-top: 0.15rem;
}

.question-panel p {
  margin-bottom: 1rem;
  color: #2f2a26;
  line-height: 1.45;
}

.question-panel .check-list li {
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
  line-height: 1.45;
}

.check-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  background: var(--accent);
}

.split-band,
.preview,
.offer,
.bonus,
.author,
.final-cta {
  width: min(1180px, calc(100% - 2rem));
  overflow: hidden;
  padding-right: var(--card-x);
  padding-left: var(--card-x);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(23, 23, 23, 0.06);
}

.statement-box {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--soft);
  border-left: 6px solid var(--accent);
}

.statement-box h3 {
  margin-bottom: 0.85rem;
}

.split-band {
  padding-top: clamp(2.2rem, 4.5vw, 3.6rem);
  padding-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}

.split-band h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
}

.split-band .feature-list li {
  padding-top: 0.72rem;
  padding-bottom: 0.72rem;
  line-height: 1.48;
}

.split-band .statement-box {
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
}

.split-band + .section {
  padding-top: clamp(2.3rem, 4.5vw, 3.7rem);
}

.inline-cta {
  margin-top: 1.3rem;
}

.fragment-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.outcomes-grid,
.offer-grid {
  display: grid;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.outcome {
  padding: 1.2rem 1.1rem 1.2rem 0;
  border-top: 1px solid var(--line);
}

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

.outcome strong {
  margin-bottom: 0.35rem;
  font-size: var(--card-title-size);
  line-height: var(--card-title-line);
}

.outcome span {
  color: var(--muted);
}

.toc-section {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.toc-list {
  display: grid;
  gap: 0;
  counter-reset: toc;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list li {
  counter-increment: toc;
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.85rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--accent);
  font-weight: 850;
  letter-spacing: 0.04em;
}

blockquote {
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 5px solid var(--accent);
  color: #312b26;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  line-height: 1.35;
}

.preview__action {
  align-content: center;
  align-self: center;
  width: 100%;
}

.preview {
  padding-top: clamp(2.25rem, 4.5vw, 3.6rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.6rem);
}

.price-panel {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--soft);
}

.price-row {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.14);
}

.price-row:first-child {
  padding-top: 0;
}

.price-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-panel strong {
  display: block;
  margin: 0;
  color: var(--accent);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
}

.details-list {
  margin: 0;
}

.details-list div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--muted);
  font-weight: 850;
}

.details-list dd {
  margin: 0;
}

.transparency-note {
  margin: 1.4rem 0 0;
  padding: 0.95rem 1rem;
  background: rgba(250, 247, 240, 0.8);
  border: 1px solid var(--line);
  color: #3f3a35;
}

.presale-steps {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid var(--line);
}

.presale-steps h3 {
  margin-bottom: 0.85rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 900;
}

.presale-steps ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.presale-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.presale-steps li::before {
  content: counter(steps);
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.author-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.author-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 230px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--soft);
  border-left: 6px solid var(--accent);
}

.author-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--card-title-size);
  line-height: var(--card-title-line);
}

.author-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  padding-bottom: clamp(2.3rem, 4.5vw, 3.7rem);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 1.15rem 2.6rem 1.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  line-height: 1.35;
  text-align: left;
  overflow-wrap: anywhere;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 1.05rem;
  right: 0.2rem;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  content: "-";
}

.faq-answer {
  display: none;
  max-width: 820px;
  padding: 0 0 1.1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  text-align: center;
  padding-top: clamp(2.3rem, 4.5vw, 3.7rem);
  padding-bottom: clamp(2.3rem, 4.5vw, 3.7rem);
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 650px;
  margin-top: 1rem;
  color: #3f3a35;
  font-size: 1.15rem;
}

.final-cta .button {
  margin-top: 1.25rem;
}

.site-footer {
  display: grid;
  gap: 0.9rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

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

.legal-page {
  width: min(800px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
  text-align: left;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2.6rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.legal-page h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1.02;
}

.legal-page h2 {
  margin-top: 2.35rem;
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}

.legal-page p,
.legal-page li {
  color: #312d29;
  line-height: 1.7;
}

.legal-page p {
  margin-bottom: 1rem;
}

.legal-page ul {
  margin: 0.45rem 0 1.25rem;
  padding-left: 1.25rem;
}

.legal-page li + li {
  margin-top: 0.35rem;
}

.notice {
  padding: 1rem;
  background: var(--soft);
  border-left: 5px solid var(--accent);
  font-weight: 700;
}

@media (min-width: 680px) {
  .button-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
    min-width: 220px;
  }

  .fragment-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

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

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 430px;
    align-items: center;
  }

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

  .two-column,
  .split-band,
  .bonus,
  .author,
  .preview,
  .offer-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
  }

  .button--wide {
    width: auto;
  }

  .details-list div {
    grid-template-columns: 170px 1fr;
  }
}

@media (max-width: 899px) {
  :root {
    --section-y: clamp(2.45rem, 7vw, 3.75rem);
    --section-title-size: clamp(1.9rem, 6vw, 2.85rem);
  }

  .hero {
    gap: clamp(1.6rem, 5vw, 2.4rem);
    padding-top: clamp(0.9rem, 3vw, 1.5rem);
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(2.2rem, 7vw, 3.4rem);
    line-height: 1.04;
  }

  .hero__lead {
    max-width: 680px;
  }

  .hero__cover {
    width: min(58vw, 330px);
  }

  .section-heading {
    margin-bottom: clamp(1.3rem, 4vw, 2rem);
  }

  .problem .two-column {
    gap: clamp(1.4rem, 5vw, 2.5rem);
  }
}

@media (max-width: 520px) {
  :root {
    --section-y: clamp(2.15rem, 9vw, 2.85rem);
    --section-title-size: clamp(1.62rem, 6.8vw, 2.12rem);
    --card-x: 1rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .nav {
    width: 100%;
    gap: 0.9rem;
    padding-bottom: 0.1rem;
  }

  .hero {
    min-height: auto;
    gap: 1.35rem;
    padding-top: 0.75rem;
    padding-bottom: 1.25rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 7.6vw, 2.2rem);
    line-height: 1.06;
  }

  .problem h2 {
    line-height: 1.12;
  }

  .hero__lead {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__cover {
    width: min(66vw, 260px);
    padding: 0.45rem;
    transform: rotate(-0.8deg);
  }

  .button-row,
  .preview__action {
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .button {
    min-height: 52px;
    padding: 0.82rem 1rem;
  }

  .small-note {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-note {
    max-width: none;
    width: 100%;
  }

  .split-band,
  .preview,
  .offer,
  .bonus,
  .author,
  .final-cta {
    width: min(100% - 1rem, 1180px);
  }

  .statement-box,
  .price-panel,
  .author-card {
    padding: 1rem;
  }

  .split-band {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .preview,
  .offer,
  .bonus,
  .author,
  .final-cta {
    padding-top: 1.9rem;
    padding-bottom: 1.9rem;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .check-list li,
  .feature-list li {
    padding-left: 1.55rem;
  }

  .check-list li::before,
  .feature-list li::before {
    width: 0.58rem;
    height: 0.58rem;
  }

  .toc-list li {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .faq-question {
    padding-right: 2rem;
  }

  .final-cta p {
    font-size: 1rem;
  }
}
