:root {
  --terracotta: #b85c38;
  --terracotta-dark: #8f4427;
  --cream: #fbf3e8;
  --cream-2: #f2e6d4;
  --sage: #6b7a4f;
  --sage-dark: #46512f;
  --soil: #2e2018;
  --gold: #e0a93b;
  --white: #fffaf3;
  --shadow: 0 18px 50px rgba(46, 32, 24, 0.12);
  --radius: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 4.65rem;
  color: var(--soil);
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 169, 59, 0.14), transparent 24rem),
    linear-gradient(180deg, var(--cream), #fffaf3 44rem, var(--cream));
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(46, 32, 24, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 32, 24, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.wordmark {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 14vw, 5.15rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--soil);
  color: var(--cream);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(46, 32, 24, 0.1);
  background: rgba(251, 243, 232, 0.9);
  backdrop-filter: blur(16px);
}

.launch-strip {
  position: sticky;
  z-index: 18;
  top: 4.5rem;
  border-bottom: 1px solid rgba(46, 32, 24, 0.12);
  background: var(--sage-dark);
  color: var(--cream);
}

.launch-strip-inner {
  display: grid;
  gap: 0.55rem;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 0.75rem 0;
}

.launch-strip p {
  font-size: 0.92rem;
  font-weight: 700;
}

.launch-strip span {
  color: rgba(251, 243, 232, 0.7);
  text-decoration: line-through;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  max-width: 21rem;
}

.countdown span {
  display: grid;
  min-height: 3.1rem;
  place-items: center;
  border: 1px solid rgba(251, 243, 232, 0.18);
  border-radius: 10px;
  background: rgba(251, 243, 232, 0.08);
  color: rgba(251, 243, 232, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.countdown strong {
  display: block;
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.header-inner,
.section-inner,
.hero-inner,
.footer-inner,
.guarantee-inner,
.final-cta-inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.wordmark {
  color: var(--soil);
  font-size: clamp(1.08rem, 4vw, 1.55rem);
  font-weight: 700;
  text-decoration: none;
}

.header-cta {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.72rem 0.95rem;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(184, 92, 56, 0.24);
}

.section {
  padding: 4.25rem 0;
}

.hero {
  min-height: calc(100svh - 8.8rem);
  padding: 3.2rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.7rem;
}

.hero-copy {
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

.eyebrow {
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-subhead {
  max-width: 42rem;
  color: rgba(46, 32, 24, 0.82);
  font-size: 1.03rem;
}

.launch-note {
  display: grid;
  gap: 0.25rem;
  max-width: 27rem;
  border-left: 4px solid var(--gold);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(224, 169, 59, 0.14);
}

.launch-note p {
  color: var(--soil);
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
}

.launch-note p span {
  color: rgba(46, 32, 24, 0.5);
  font-size: 1rem;
  text-decoration: line-through;
}

.launch-note small {
  color: rgba(46, 32, 24, 0.72);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.95rem;
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.88rem 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible,
.header-cta:focus-visible,
.text-link:focus-visible,
.footer-nav a:focus-visible,
.faq-question:focus-visible {
  outline: 3px solid rgba(224, 169, 59, 0.7);
  outline-offset: 3px;
}

.button-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 18px 34px rgba(184, 92, 56, 0.24);
}

.button-primary:hover {
  background: var(--terracotta-dark);
}

.button-secondary {
  border-color: rgba(184, 92, 56, 0.35);
  background: #fff7ec;
  color: var(--terracotta-dark);
}

.button-light {
  background: #fff7ec;
  color: var(--terracotta-dark);
  box-shadow: 0 16px 30px rgba(46, 32, 24, 0.18);
}

.text-link {
  align-self: center;
  color: var(--terracotta-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.trust-row {
  display: grid;
  gap: 0.55rem;
  margin: 0.45rem 0 0;
  padding: 0;
  color: rgba(46, 32, 24, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.trust-row span {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.35rem;
  border-radius: 999px;
  background: rgba(107, 122, 79, 0.14);
  color: var(--sage-dark);
  font-size: 0.8rem;
}

.hero-media {
  align-self: end;
  overflow: hidden;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(224, 169, 59, 0.18), transparent),
    var(--cream-2);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
}

.proof-strip {
  overflow: hidden;
  border-block: 1px solid rgba(46, 32, 24, 0.1);
  background: var(--soil);
  color: var(--cream);
}

.proof-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding: 0.9rem 0;
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(251, 243, 232, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-track span::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.product-overview {
  background:
    radial-gradient(circle at 50% 4rem, rgba(224, 169, 59, 0.14), transparent 32rem),
    linear-gradient(180deg, #fffaf3, var(--cream));
}

.product-overview .section-heading {
  text-align: center;
}

.book-grid {
  display: grid;
  gap: 1.05rem;
}

.book-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid rgba(46, 32, 24, 0.12);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 14rem),
    rgba(255, 250, 243, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 16px 34px rgba(46, 32, 24, 0.1);
}

/* Book image sits in its own zone so the two single cards line up the
   covers, kickers, titles and buttons across the row. */
.book-card-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 15rem;
  margin-bottom: 0.2rem;
}

.book-card img {
  width: min(100%, 20.75rem);
  margin-inline: auto;
  filter: none;
}

.offer-book-image {
  max-height: 17rem;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 20px rgba(46, 32, 24, 0.22));
}

/* Divider + price + CTA travel together and pin to the bottom of every
   card, so all three buttons share one baseline. */
.book-card-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(46, 32, 24, 0.14);
}

.book-card-featured {
  overflow: hidden;
  border: 2px solid #1f3f25;
  padding: 0;
  background: rgba(255, 250, 243, 0.96);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 42px rgba(31, 63, 37, 0.18);
}

.bundle-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.2rem;
}

.book-card-featured .book-card-buy {
  border-top-color: rgba(31, 63, 37, 0.18);
}

.book-kicker {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.book-card h3 {
  font-size: 1.45rem;
  text-align: center;
}

.book-card .button {
  width: 100%;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-overview .button-secondary {
  background: linear-gradient(180deg, #c14f25, #9f3719);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(159, 55, 25, 0.22);
}

.book-card-featured .button-primary {
  background: linear-gradient(180deg, #315931, #1f3f25);
  box-shadow: 0 15px 30px rgba(31, 63, 37, 0.24);
}

.book-card-featured .button-primary:hover {
  background: linear-gradient(180deg, #294c2b, #17351e);
}

.book-card ul,
.comparison-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.book-card-featured ul {
  margin-top: 0.1rem;
}

.book-card li,
.comparison-panel li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(46, 32, 24, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
}

.book-card li::before,
.comparison-good li::before {
  position: absolute;
  left: 0;
  color: var(--sage);
  content: "✓";
  font-weight: 900;
}

.book-price {
  color: var(--soil);
  font-family: "Lora", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.book-price span {
  color: rgba(46, 32, 24, 0.46);
  font-size: 1.15rem;
  text-decoration: line-through;
}

.checkout-note {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: calc(var(--radius) + 2px);
  padding: 0.9rem;
  background: rgba(255, 250, 243, 0.74);
  box-shadow: 0 12px 24px rgba(46, 32, 24, 0.06);
}

.checkout-note p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  color: var(--soil);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
}

.checkout-note span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #315931, #1f3f25);
  color: #fff;
  font-size: 1.2rem;
}

.problem-grid {
  display: grid;
  gap: 1rem;
}

/* Midsummer-pattern photo cards: image on top, numbered badge straddling
   the image's lower edge, bold caption beneath. */
.problem-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(46, 32, 24, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 0.5rem 0.5rem 1.5rem;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(46, 32, 24, 0.1);
  text-align: center;
}

.problem-media {
  position: relative;
  margin-bottom: 1.85rem;
}

.problem-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.problem-num {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 4px solid #fffdf8;
  border-radius: 999px;
  background: linear-gradient(180deg, #c75b2b, #9f3719);
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-50%, 50%);
  box-shadow: 0 8px 16px rgba(46, 32, 24, 0.24);
}

.problem-card h3 {
  max-width: 16rem;
  margin-inline: auto;
  padding-inline: 0.5rem;
  font-size: 1.18rem;
  line-height: 1.3;
}

.wide-note {
  max-width: 50rem;
  margin-top: 1.5rem;
  color: rgba(46, 32, 24, 0.82);
  font-size: 1.08rem;
  font-weight: 700;
}

.problem-note {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  max-width: none;
  margin-top: 1.75rem;
  padding: 1.1rem 1.35rem;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.06);
}

.problem-note-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff;
}

.comparison {
  background:
    radial-gradient(circle at 50% 7rem, rgba(224, 169, 59, 0.12), transparent 36rem),
    #fffaf3;
}

.comparison-heading {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.comparison-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.comparison-heading .eyebrow::before,
.comparison-heading .eyebrow::after {
  width: 2rem;
  height: 1px;
  content: "";
  background: rgba(70, 81, 47, 0.42);
}

.comparison-subhead {
  max-width: 50rem;
  margin: 0 auto;
  color: rgba(46, 32, 24, 0.72);
  font-size: 1.05rem;
}

.comparison-grid {
  display: grid;
  gap: 1.25rem;
}

.comparison-panel {
  position: relative;
  display: grid;
  gap: 1.05rem;
  border: 2px solid rgba(184, 92, 56, 0.24);
  border-radius: calc(var(--radius) + 2px);
  padding: 2.2rem 1.15rem 1.25rem;
  background: rgba(255, 250, 243, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 18px 36px rgba(46, 32, 24, 0.08);
}

.comparison-panel h3 {
  color: var(--terracotta-dark);
  font-size: 1.65rem;
  text-align: center;
}

.comparison-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  font-size: 1.65rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 18px rgba(46, 32, 24, 0.16);
}

.comparison-bad .comparison-icon {
  background: linear-gradient(180deg, #c75b2b, #9f3719);
  color: #fff;
}

.comparison-good {
  border-color: rgba(70, 81, 47, 0.32);
}

.comparison-good .comparison-icon {
  background: linear-gradient(180deg, #446530, #253f1f);
  color: #fff;
}

.comparison-good h3 {
  color: #315931;
}

.comparison-kicker {
  margin: -0.55rem 0 0.35rem;
  color: rgba(46, 32, 24, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.comparison-photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(46, 32, 24, 0.12);
}

.comparison-panel li {
  border-top: 1px solid rgba(46, 32, 24, 0.1);
  padding-top: 0.7rem;
  padding-left: 2.35rem;
  font-size: 0.95rem;
}

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

.comparison-panel li::before {
  top: 0.58rem;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  font-size: 1rem;
}

.comparison-bad li::before {
  position: absolute;
  left: 0;
  background: rgba(184, 92, 56, 0.12);
  color: var(--terracotta-dark);
  content: "×";
  font-weight: 900;
}

.comparison-good li::before {
  background: rgba(107, 122, 79, 0.16);
  color: var(--sage-dark);
}

.honesty {
  background: var(--sage-dark);
  color: var(--cream);
}

.honesty .eyebrow,
.honesty p {
  color: rgba(251, 243, 232, 0.86);
}

.split-layout {
  display: grid;
  gap: 2rem;
}

.body-copy {
  display: grid;
  gap: 1rem;
  max-width: 43rem;
  font-size: 1.08rem;
}

.system {
  background: var(--cream);
}

.system-steps {
  display: grid;
  gap: 1rem;
}

.system-steps article {
  display: grid;
  gap: 0.75rem;
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.06);
}

.system-steps span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
}

.system-steps p {
  color: rgba(46, 32, 24, 0.76);
  font-weight: 600;
}

.inside {
  background: var(--cream-2);
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  border: 1px solid rgba(70, 81, 47, 0.18);
  border-radius: var(--radius);
  padding: 1rem 1rem 1rem 3rem;
  background: rgba(255, 250, 243, 0.78);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 1.05rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  content: "✓";
  background: var(--sage);
  color: #fff;
  font-size: 0.78rem;
}

.launch-card-note {
  color: var(--terracotta-dark);
  font-weight: 800;
  text-align: center;
}

.mini-countdown {
  border: 1px solid rgba(184, 92, 56, 0.16);
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  background: rgba(184, 92, 56, 0.12);
  color: var(--terracotta-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, #315931, #1f3f25);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ribbon::before,
.ribbon::after {
  color: rgba(255, 250, 243, 0.78);
  content: "•";
  padding-inline: 0.55rem;
}

.bundle-kicker {
  margin: 0.2rem 0 0;
  color: #315931;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.bundle-pill {
  align-self: center;
  border-radius: 999px;
  padding: 0.48rem 1.15rem;
  background: linear-gradient(180deg, #315931, #1f3f25);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* Clean three-book bundle: transparent covers stacked and overlapping,
   centre book front and tallest — floats straight on the card, no panel. */
.bundle-books {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 0.6rem 0 0.5rem;
}

.bundle-books .bundle-book {
  width: 34%;
  max-width: none;
  margin: 0;
  filter: drop-shadow(0 16px 16px rgba(46, 32, 24, 0.34));
}

.bundle-books .bundle-book-waterless {
  z-index: 1;
  margin-right: -7%;
  transform: rotate(-3deg);
}

.bundle-books .bundle-book-heatproof {
  z-index: 3;
  width: 42%;
  transform: translateY(-0.5rem);
}

.bundle-books .bundle-book-builders {
  z-index: 2;
  margin-left: -7%;
  transform: rotate(3deg);
}

.guarantee {
  padding: 4rem 0;
  background: var(--sage);
  color: #fff;
  text-align: center;
}

.guarantee-inner {
  max-width: 760px;
}

.guarantee h2 {
  margin-bottom: 0.8rem;
}

.guarantee p {
  color: rgba(255, 250, 243, 0.9);
  font-size: 1.08rem;
}

.narrow {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 10px 24px rgba(46, 32, 24, 0.07);
}

.faq-item h3 {
  font-family: "Inter", system-ui, sans-serif;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  padding: 1.05rem;
  background: transparent;
  color: var(--soil);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(184, 92, 56, 0.12);
  color: var(--terracotta-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 1.05rem 1.1rem;
  color: rgba(46, 32, 24, 0.78);
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(224, 169, 59, 0.18), rgba(107, 122, 79, 0.12));
  box-shadow: 0 24px 60px rgba(46, 32, 24, 0.18);
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.about-copy h2::after {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin-top: 1.4rem;
  border-radius: 999px;
  background: var(--sage);
  content: "";
}

.about-copy p:not(.eyebrow) {
  color: rgba(46, 32, 24, 0.78);
  font-size: 1.08rem;
}

.final-cta {
  padding: 4rem 0;
  background: var(--terracotta);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  gap: 1.25rem;
}

.site-footer {
  padding: 2.5rem 0;
  background: var(--soil);
  color: var(--cream);
}

.sticky-buy {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  border: 1px solid rgba(251, 243, 232, 0.18);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0.55rem 0.75rem;
  background: rgba(46, 32, 24, 0.96);
  color: var(--cream);
  box-shadow: 0 20px 50px rgba(46, 32, 24, 0.28);
}

.sticky-buy div {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.sticky-buy strong,
.sticky-buy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-buy strong {
  font-family: "Lora", Georgia, serif;
  font-size: 0.95rem;
}

.sticky-buy span {
  color: rgba(251, 243, 232, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.sticky-buy .button {
  min-height: 2.55rem;
  padding: 0.62rem 0.9rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.site-footer .wordmark {
  color: var(--cream);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.footer-nav a {
  color: rgba(251, 243, 232, 0.86);
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.contact,
.disclaimer,
.copyright {
  max-width: 44rem;
  color: rgba(251, 243, 232, 0.7);
  font-size: 0.92rem;
}

@media (min-width: 520px) {
  body {
    padding-bottom: 4.8rem;
  }

  .launch-strip-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .launch-strip p {
    font-size: 1rem;
  }

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

  .text-link {
    align-self: auto;
  }

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

  .checkout-note {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 6rem 0;
  }

  .hero {
    padding: 3.25rem 0 5rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: center;
  }

  .hero-copy {
    gap: 1.45rem;
  }

  .hero-media {
    align-self: center;
  }

  .hero-subhead {
    font-size: 1.12rem;
  }

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

  .book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  /* All three cards share the tallest card's height and pin their buy
     block (price + button) to the bottom, so every CTA lands on the
     same baseline. */
  .book-card:not(.book-card-featured) ul {
    min-height: 8.75rem;
  }

  .book-card-featured {
    transform: none;
  }

  .comparison-grid,
  .system-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

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

  .split-layout {
    grid-template-columns: 0.82fr 1fr;
  }

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

  .final-cta-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .sticky-buy {
    display: none;
  }
}

/* Roy's portrait sits beside the copy only once there's room for the
   long heading words — below this it stacks (portrait on top). */
@media (min-width: 940px) {
  .about-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 3.5rem;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ----------------------------------------------------------------------
   Exit-intent / inactivity reminder popup
   ---------------------------------------------------------------------- */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 22, 14, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  animation: exit-fade 0.25s ease;
}

.exit-modal-card {
  position: relative;
  width: min(100%, 33rem);
  max-height: calc(100dvh - 2.5rem);
  overflow-y: auto;
  padding: 2.6rem 2rem 1.7rem;
  border: 1px solid rgba(46, 32, 24, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(224, 169, 59, 0.16), transparent 60%),
    linear-gradient(180deg, #fffdf8, var(--cream));
  box-shadow: 0 34px 80px rgba(46, 32, 24, 0.3);
  color: var(--soil);
  text-align: center;
  animation: exit-pop 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.exit-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(46, 32, 24, 0.5);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.exit-modal-close:hover {
  background: rgba(46, 32, 24, 0.08);
  color: var(--soil);
}

.exit-modal-eyebrow {
  margin: 0 0 0.6rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.exit-modal-title {
  margin: 0 0 0.9rem;
  color: var(--soil);
  font-size: clamp(1.6rem, 5vw, 2rem);
  line-height: 1.15;
}

.exit-modal-body {
  margin: 0 auto 1.3rem;
  max-width: 27rem;
  color: rgba(46, 32, 24, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.exit-modal-body strong {
  color: var(--terracotta-dark);
}

.exit-modal-note {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(46, 32, 24, 0.14);
  border-radius: 12px;
  background: rgba(255, 250, 243, 0.6);
  color: rgba(46, 32, 24, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.exit-modal-note strong {
  color: var(--terracotta-dark);
}

.exit-modal-cta {
  display: block;
  width: 100%;
  padding: 1.05rem 1.25rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #c14f25, #9f3719);
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(159, 55, 25, 0.26);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.exit-modal-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(159, 55, 25, 0.36);
}

.exit-modal-dismiss {
  margin-top: 1.1rem;
  border: 0;
  background: transparent;
  color: rgba(46, 32, 24, 0.55);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.exit-modal-dismiss:hover {
  color: var(--soil);
}

@keyframes exit-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes exit-pop {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .exit-modal-card,
  .exit-modal-backdrop {
    animation: none;
  }
}
