:root {
  --cream: #fbf4e8;
  --cream-dark: #efe0c6;
  --ink: #24180f;
  --muted: #6f5f4f;
  --brown: #6d3f20;
  --brown-dark: #472714;
  --green: #557247;
  --gold: #d8a441;
  --white: #fffaf1;
  --shadow: 0 24px 80px rgba(71, 39, 20, 0.18);
  --radius: 28px;
  --site-top-height: 7.25rem;
}

* {
  box-sizing: border-box;
}

html {
  background-color: #120b08;
  scroll-behavior: smooth;
  scroll-padding-top: var(--site-top-height);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 20;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(216, 164, 65, 0.18), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf1 48%, var(--cream) 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes buttonPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(109, 63, 32, 0.24);
  }

  50% {
    box-shadow: 0 18px 42px rgba(109, 63, 32, 0.38);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 193, 109, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(74, 193, 109, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 193, 109, 0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

.top-bar {
  align-items: center;
  animation: fadeIn 420ms ease both;
  background: var(--brown-dark);
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-align: center;
}

.top-bar p,
.top-bar span {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.top-bar span {
  color: #ffd983;
}

.site-header {
  align-items: center;
  animation: fadeIn 480ms ease 80ms both;
  backdrop-filter: blur(18px);
  background: rgba(251, 244, 232, 0.82);
  border-bottom: 1px solid rgba(109, 63, 32, 0.12);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
}

.logo {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.75rem;
}

.logo-mark {
  align-items: center;
  background: var(--brown);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--brown);
}

.header-cta {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  padding: 0.8rem 1.1rem;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

main {
  overflow: hidden;
}

.section-grid,
.social-proof,
.purchase-feed,
.section-heading,
.top-buy-panel,
.ebook-grid,
.inside-book,
.benefits,
.bundle,
.testimonials,
.newsletter,
.faq,
.final-cta {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  min-height: 720px;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.eyebrow {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.04;
  margin: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  letter-spacing: -0.06em;
  max-width: 850px;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.55rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
}

.primary {
  animation: buttonPulse 2.8s ease-in-out infinite;
  background: var(--brown);
  box-shadow: 0 14px 30px rgba(109, 63, 32, 0.24);
  color: var(--white);
}

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

.secondary {
  background: rgba(109, 63, 32, 0.08);
  color: var(--brown-dark);
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-row span {
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(109, 63, 32, 0.14);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.7rem 0.9rem;
}

.hero-card,
.feed-card,
.checkout-card {
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  animation: fadeUp 700ms ease 350ms both;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hero-cover {
  border-radius: 12px;
  margin: 0 auto 1.25rem;
  overflow: hidden;
}

.hero-cover img {
  display: block;
  height: auto;
  width: 100%;
}

.book-stack {
  animation: softFloat 5.5s ease-in-out infinite;
  height: 370px;
  margin: 0 auto 1.5rem;
  position: relative;
  width: min(100%, 350px);
}

.book {
  align-items: flex-end;
  border: 2px solid rgba(36, 24, 15, 0.14);
  border-radius: 18px 8px 8px 18px;
  box-shadow: 18px 18px 36px rgba(36, 24, 15, 0.18);
  color: var(--white);
  display: flex;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  height: 310px;
  padding: 1.25rem;
  position: absolute;
  width: 215px;
}

.book-one {
  background: linear-gradient(145deg, #7b4827, #3f2112);
  left: 0;
  top: 34px;
  transform: rotate(-9deg);
  z-index: 1;
}

.book-two {
  background: linear-gradient(145deg, #d8a441, #8c5e1b);
  left: 70px;
  top: 8px;
  transform: rotate(1deg);
  z-index: 3;
}

.book-three {
  background: linear-gradient(145deg, #6b8357, #314126);
  right: 0;
  top: 42px;
  transform: rotate(9deg);
  z-index: 2;
}

.bundle-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bundle-price .label {
  color: var(--muted);
  flex-basis: 100%;
  font-weight: 800;
}

.bundle-price strong,
.price-line strong {
  font-size: 3rem;
}

.strike {
  color: var(--muted);
  text-decoration: line-through;
}

.social-proof {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 1rem 4rem;
}

.social-proof div {
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(109, 63, 32, 0.12);
  border-radius: 22px;
  padding: 1.4rem;
}

.social-proof strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem;
}

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

.purchase-feed {
  align-items: center;
  background: var(--brown-dark);
  border-radius: 36px;
  color: var(--white);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.9fr 1.1fr;
  margin-bottom: 5rem;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.purchase-feed h2,
.purchase-feed p {
  color: var(--white);
}

.purchase-feed .eyebrow {
  color: #ffd983;
}

.feed-card {
  box-shadow: none;
  color: var(--ink);
  padding: 1rem;
  position: relative;
}

.live-dot {
  animation: livePulse 1.8s ease-out infinite;
  background: #4ac16d;
  border-radius: 50%;
  height: 0.7rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 0.7rem;
}

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

#purchaseFeed li {
  animation: fadeUp 450ms ease both;
  background: rgba(109, 63, 32, 0.07);
  border-radius: 16px;
  color: var(--muted);
  padding: 1rem 1.2rem;
}

#purchaseFeed strong {
  color: var(--ink);
}

.section-heading {
  margin-bottom: 2rem;
  text-align: center;
}

.top-ebooks {
  animation: fadeUp 700ms ease 180ms both;
  padding-top: clamp(1.25rem, 3vw, 2rem);
}

.section-heading p:last-child {
  margin-inline: auto;
  max-width: 680px;
}

.top-buy-panel {
  align-items: center;
  animation: fadeUp 700ms ease 220ms both;
  background: var(--brown-dark);
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-block: 1rem;
}

.top-buy-panel span {
  color: #ffd983;
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-buy-panel strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.top-buy-action {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-end;
}

.ebook-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  margin-bottom: 5rem;
}

.top-ebook-grid {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-guide-heading {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  text-align: center;
}

.home-guide-grid {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.product-showcase {
  margin-inline: auto;
  max-width: 920px;
}

.product-card {
  grid-column: 1 / -1;
}

.product-card .card-buy {
  align-items: center;
  flex-wrap: wrap;
}

.product-card .card-buy .strike {
  color: rgba(255, 250, 241, 0.45);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-right: auto;
  text-decoration: line-through;
}

.product-card .card-buy .button {
  margin-left: auto;
}

@media (max-width: 640px) {
  .product-card .card-buy {
    flex-direction: column;
    align-items: stretch;
  }

  .product-card .card-buy .strike {
    margin-right: 0;
  }

  .product-card .card-buy .button {
    margin-left: 0;
    width: 100%;
  }
}

.collection-heading {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.tier-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.tier-card {
  animation: fadeUp 700ms ease both;
  background: var(--white);
  border: 1px solid rgba(109, 63, 32, 0.14);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1.35rem;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.tier-card:nth-child(1) {
  animation-delay: 180ms;
}

.tier-card:nth-child(2) {
  animation-delay: 300ms;
}

.tier-card:nth-child(3) {
  animation-delay: 420ms;
}

.tier-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.tier-popular {
  border-color: rgba(109, 63, 32, 0.28);
  box-shadow: 0 12px 28px rgba(45, 23, 11, 0.08);
}

.tier-complete {
  border-color: rgba(61, 92, 48, 0.35);
  box-shadow: var(--shadow);
  padding-top: 0;
}

.tier-cover {
  border-radius: var(--radius) var(--radius) 0 0;
  height: auto;
  margin: 0 -1.35rem 1rem;
  min-height: 0;
}

.tier-cover img {
  display: block;
  height: auto;
  width: 100%;
}

.tier-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
}

.tier-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.tier-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.tier-price strong {
  font-size: 2rem;
}

.tier-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.tier-card ul {
  flex: 1;
  margin: 0 0 1.25rem;
}

.tier-card .button {
  margin-top: auto;
}

.ebook-card {
  animation: fadeUp 700ms ease both;
  background: var(--white);
  border: 1px solid rgba(109, 63, 32, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.ebook-card:nth-child(1) {
  animation-delay: 240ms;
}

.ebook-card:nth-child(2) {
  animation-delay: 360ms;
}

.ebook-card:nth-child(3) {
  animation-delay: 480ms;
}

.ebook-card:nth-child(4) {
  animation-delay: 600ms;
}

.ebook-card:nth-child(5) {
  animation-delay: 720ms;
}

.ebook-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.featured-card {
  box-shadow: var(--shadow);
  transform: translateY(-1rem);
}

.featured-card:hover {
  transform: translateY(-1.5rem);
}

.cover {
  align-items: center;
  color: var(--white);
  display: flex;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  height: 240px;
  justify-content: center;
  position: relative;
}

.cover::after {
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.28), transparent 80%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.ebook-card:hover .cover::after {
  transform: translateX(120%);
}

.cover-one {
  background: linear-gradient(135deg, #7b4827, #2d170b);
}

.cover-two {
  background: linear-gradient(135deg, #d8a441, #7b4e12);
}

.cover-three {
  background: linear-gradient(135deg, #6b8357, #25351e);
}

.image-cover {
  background: linear-gradient(135deg, #24180f, #6d3f20);
  height: 430px;
  overflow: hidden;
  padding: 1rem;
}

.image-cover img {
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(36, 24, 15, 0.34);
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.card-content {
  padding: 1.5rem;
}

.card-buy {
  align-items: center;
  border-top: 1px solid rgba(216, 164, 65, 0.18);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
}

.card-price {
  color: #ffd45a;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.tag {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.55rem;
  text-transform: uppercase;
}

.ebook-card ul,
.check-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
}

.ebook-card li,
.check-list li {
  color: var(--muted);
  padding-left: 1.6rem;
  position: relative;
}

.ebook-card li::before,
.check-list li::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.inside-book {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1.2fr;
  margin-bottom: 5rem;
}

.inside-book strong {
  color: var(--brown-dark);
}

.inside-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.inside-grid article {
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(109, 63, 32, 0.13);
  border-radius: 24px;
  padding: 1.35rem;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.inside-grid article:hover {
  box-shadow: 0 18px 42px rgba(71, 39, 20, 0.13);
  transform: translateY(-5px);
}

.inside-grid span {
  color: var(--gold);
  font-weight: 900;
}

.benefits {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.85fr 1.15fr;
  margin-bottom: 5rem;
}

.benefit-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.benefit-list article {
  background: rgba(255, 250, 241, 0.84);
  border: 1px solid rgba(109, 63, 32, 0.13);
  border-radius: 24px;
  padding: 1.35rem;
}

.benefit-list span {
  color: var(--gold);
  font-weight: 900;
}

.bundle {
  align-items: center;
  background: linear-gradient(135deg, #fffaf1, #ead8b8);
  border: 1px solid rgba(109, 63, 32, 0.16);
  border-radius: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 0.75fr;
  margin-bottom: 5rem;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.checkout-card {
  padding: 1.5rem;
}

.checkout-provider {
  background: rgba(36, 24, 15, 0.06);
  border: 1px solid rgba(109, 63, 32, 0.12);
  border-radius: 18px;
  display: grid;
  gap: 0.15rem;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
}

.checkout-provider span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-provider strong {
  color: var(--brown-dark);
  font-size: 1.1rem;
}

.price-line {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
}

.savings {
  background: rgba(85, 114, 71, 0.12);
  border-radius: 14px;
  color: var(--green);
  font-weight: 900;
  margin: 0.5rem 0 1rem;
  padding: 0.8rem 1rem;
  text-align: center;
}

.full-width {
  width: 100%;
}

.payment-methods {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0.9rem;
}

.payment-methods span {
  background: #ffffff;
  border: 1px solid rgba(109, 63, 32, 0.13);
  border-radius: 12px;
  color: var(--brown-dark);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.55rem 0.4rem;
  text-align: center;
}

.microcopy {
  font-size: 0.9rem;
  text-align: center;
}

.microcopy code {
  background: rgba(36, 24, 15, 0.08);
  border-radius: 6px;
  color: var(--brown-dark);
  padding: 0.1rem 0.25rem;
}

.checkout-note {
  background: rgba(216, 164, 65, 0.16);
  border: 1px solid rgba(216, 164, 65, 0.28);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
}

.checkout-note strong {
  color: var(--brown-dark);
}

.guarantee {
  background: rgba(109, 63, 32, 0.07);
  border-radius: 18px;
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
}

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

.testimonials {
  margin-bottom: 5rem;
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

blockquote {
  background: var(--white);
  border: 1px solid rgba(109, 63, 32, 0.14);
  border-radius: 24px;
  color: var(--ink);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0;
  padding: 1.5rem;
}

cite {
  color: var(--muted);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 800;
  margin-top: 1rem;
}

.faq {
  margin-bottom: 5rem;
}

details {
  background: rgba(255, 250, 241, 0.86);
  border: 1px solid rgba(109, 63, 32, 0.13);
  border-radius: 20px;
  margin-bottom: 0.8rem;
  padding: 1.1rem 1.25rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

details:hover {
  box-shadow: 0 14px 36px rgba(71, 39, 20, 0.1);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.newsletter {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.16), transparent 40%),
    linear-gradient(135deg, #2a120b, #4a1b10);
  border: 1px solid rgba(216, 164, 65, 0.38);
  border-radius: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1.05fr 0.85fr;
  margin-bottom: 5rem;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.newsletter-copy .eyebrow {
  color: #ffd45a;
}

.newsletter-copy h2 {
  color: #fff3d7;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.34);
}

.newsletter-copy > p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.82);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.newsletter-copy strong {
  color: #ffd983;
}

.newsletter-topics {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.newsletter-topics li {
  align-items: center;
  color: rgba(255, 250, 241, 0.88);
  display: flex;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 0.65rem;
}

.newsletter-topics li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 0.45rem;
  width: 0.45rem;
}

.newsletter-card {
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(109, 63, 32, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.newsletter-card p,
.newsletter-card label {
  color: var(--muted);
}

.newsletter-card strong,
.newsletter-card code {
  color: var(--brown-dark);
}

.newsletter-input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-input-row input {
  background: var(--white);
  border: 1px solid rgba(109, 63, 32, 0.2);
  border-radius: 999px;
  color: var(--ink);
  flex: 1 1 220px;
  font: inherit;
  min-width: 0;
  padding: 0.95rem 1.1rem;
}

.newsletter-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.newsletter-input-row input:focus {
  border-color: var(--brown);
  outline: 2px solid rgba(109, 63, 32, 0.18);
  outline-offset: 2px;
}

.newsletter-input-row .button {
  flex: 0 0 auto;
  padding-inline: 1.35rem;
}

.newsletter-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.85rem 0 0;
}

.newsletter-status {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0.85rem 0 0;
}

.newsletter-status[data-type="success"] {
  color: var(--green);
}

.newsletter-status[data-type="error"] {
  color: #9b3b2f;
}

.newsletter-status[data-type="loading"] {
  color: var(--muted);
}

.newsletter-setup {
  background: rgba(36, 24, 15, 0.05);
  border-radius: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 1.1rem 0 0;
  padding: 0.85rem 1rem;
}

.final-cta {
  background: var(--brown-dark);
  border-radius: 40px 40px 0 0;
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  margin: 0 auto 1.5rem;
  max-width: 780px;
}

.final-cta .eyebrow {
  color: #ffd983;
}

.downsell-modal[hidden] {
  display: none;
}

.downsell-modal {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: fixed;
  z-index: 100;
}

.downsell-backdrop {
  backdrop-filter: blur(4px);
  background: rgba(17, 10, 5, 0.78);
  inset: 0;
  position: absolute;
}

.downsell-card {
  animation: fadeUp 420ms ease both;
  background:
    radial-gradient(circle at top, rgba(216, 164, 65, 0.12), transparent 14rem),
    #2a1710;
  border: 2px solid #c59255;
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: var(--white);
  max-width: 560px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  position: relative;
  text-align: center;
  width: min(100%, 560px);
}

.downsell-close {
  background: transparent;
  border: 0;
  color: #d7a56e;
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 0.85rem;
}

.downsell-kicker {
  color: #ff5959;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
}

.downsell-card h2 {
  color: #ffc73d;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.04em;
  margin-inline: auto;
  max-width: 500px;
  text-transform: uppercase;
}

.downsell-copy {
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  font-weight: 700;
  margin: 1.1rem auto;
  max-width: 500px;
}

.downsell-copy strong {
  color: #ffc73d;
}

.downsell-offer-line {
  border: 1px solid rgba(197, 146, 85, 0.7);
  border-radius: 8px;
  color: rgba(255, 250, 241, 0.72);
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 1.2rem auto 1rem;
  max-width: 480px;
  padding: 0.8rem;
  text-transform: uppercase;
}

.downsell-offer-line strong {
  color: #ffc73d;
}

.downsell-buy {
  background: linear-gradient(180deg, #ffd24d, #f2a91f);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(242, 169, 31, 0.28);
  color: #1f140d;
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 auto;
  max-width: 480px;
  padding: 0.95rem 0.9rem;
  text-transform: uppercase;
  width: 100%;
}

.downsell-no {
  background: transparent;
  border: 0;
  color: rgba(255, 250, 241, 0.42);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-top: 0.95rem;
}

footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(255, 250, 241, 0.16);
  color: rgba(255, 250, 241, 0.8);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
}

footer p {
  color: inherit;
  margin: 0;
}

/* Premium Amish field-guide theme */
.premium-strip {
  background:
    radial-gradient(circle at center, rgba(255, 199, 61, 0.14), transparent 18rem),
    linear-gradient(90deg, #3a0708, #5b1010, #3a0708);
  border-bottom: 1px solid rgba(255, 199, 61, 0.22);
  box-shadow: 0 10px 32px rgba(25, 8, 5, 0.28);
}

.premium-strip p {
  color: rgba(255, 250, 241, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-strip #offerTimer {
  background: rgba(15, 8, 5, 0.72);
  border: 1px solid rgba(255, 199, 61, 0.42);
  border-radius: 6px;
  color: #ffd45a;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.16em;
  padding: 0.35rem 0.7rem;
}

.status-dot {
  background: #ff514f;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 81, 79, 0.12);
  display: inline-block;
  height: 0.42rem;
  margin-right: 0.35rem;
  width: 0.42rem;
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(216, 164, 65, 0.16), transparent 30rem),
    radial-gradient(circle at 80% 18%, rgba(108, 18, 14, 0.42), transparent 34rem),
    linear-gradient(180deg, #160d09 0%, #20110c 42%, #120b08 100%);
  min-height: 100vh;
}

.site-header {
  background: rgba(18, 11, 8, 0.9);
  border-bottom: 1px solid rgba(216, 164, 65, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.logo,
nav a {
  color: rgba(255, 250, 241, 0.9);
}

.logo small {
  color: #d8a441;
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.logo-mark {
  background: linear-gradient(145deg, #d8a441, #7b4e12);
  color: #1b0f0a;
}

.header-cta {
  background: linear-gradient(180deg, #ffd45a, #d69a27);
  box-shadow: 0 12px 34px rgba(216, 164, 65, 0.26);
  color: #1b0f0a;
}

.top-ebooks {
  background:
    linear-gradient(rgba(216, 164, 65, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 164, 65, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  border-bottom: 1px solid rgba(216, 164, 65, 0.16);
  max-width: none;
  padding-bottom: 2rem;
}

.top-ebooks h2,
.hero h1,
.inside-book h2,
.benefits h2,
.bundle h2,
.testimonials h2,
.faq h2 {
  color: #fff3d7;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.34);
}

.top-ebooks p,
.hero p,
.inside-book p,
.benefits p,
.bundle p,
.testimonials p,
.faq p {
  color: rgba(255, 250, 241, 0.68);
}

.premium-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.premium-stats span {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.premium-stats strong {
  color: #ffd45a;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.12rem;
}

.top-buy-panel {
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.18), transparent 34%),
    linear-gradient(90deg, #2a120b, #4a1b10);
  border: 1px solid rgba(216, 164, 65, 0.38);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.top-buy-panel::before,
.top-buy-panel::after {
  color: rgba(216, 164, 65, 0.45);
  content: "*";
  font-size: 1.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.top-buy-panel::before {
  left: 0.65rem;
}

.top-buy-panel::after {
  right: 0.65rem;
}

.top-buy-panel strong {
  color: #fff3d7;
}

.ebook-card {
  background:
    linear-gradient(180deg, rgba(68, 27, 15, 0.94), rgba(35, 17, 11, 0.98));
  border: 1px solid rgba(216, 164, 65, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  position: relative;
}

.ebook-card::before {
  border: 1px solid rgba(216, 164, 65, 0.22);
  border-radius: calc(var(--radius) - 8px);
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.ebook-card.featured-card::after {
  background: linear-gradient(180deg, #ffd45a, #d69a27);
  border-radius: 0 0 10px 10px;
  color: #1b0f0a;
  content: "Best Value";
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 0.45rem 0.7rem;
  position: absolute;
  right: 1rem;
  text-transform: uppercase;
  top: 0;
  z-index: 3;
}

.image-cover {
  background:
    radial-gradient(circle at center, rgba(216, 164, 65, 0.2), transparent 55%),
    linear-gradient(135deg, #120b08, #3b160e);
}

.card-content h3 {
  color: #fff3d7;
}

.card-content p,
.ebook-card li {
  color: rgba(255, 250, 241, 0.68);
}

.tag,
.eyebrow {
  color: #ffd45a;
}

.inside-grid article,
.benefit-list article,
details,
blockquote {
  background: rgba(255, 250, 241, 0.9);
}

.bundle {
  background:
    linear-gradient(135deg, rgba(255, 212, 90, 0.16), transparent 40%),
    linear-gradient(135deg, #2a120b, #4a1b10);
  border-color: rgba(216, 164, 65, 0.38);
}

.checkout-card {
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
}

/* Cream panels stay readable inside the dark premium theme */
.faq details p,
.inside-book .inside-grid article p,
.benefits .benefit-list article p,
.bundle .checkout-card p,
.bundle .checkout-card .guarantee span,
.newsletter .newsletter-card p {
  color: var(--muted);
}

.bundle .checkout-card .microcopy,
.bundle .checkout-card .checkout-note,
.newsletter .newsletter-card .newsletter-note,
.newsletter .newsletter-card .newsletter-setup {
  color: var(--muted);
}

.bundle .checkout-card strong,
.bundle .checkout-card code,
.bundle .checkout-note strong,
.bundle .checkout-provider strong,
.newsletter .newsletter-card strong,
.newsletter .newsletter-card code {
  color: var(--brown-dark);
}

.inside-book .inside-grid article,
.inside-book .inside-grid article h3,
.benefits .benefit-list article,
.benefits .benefit-list article h3,
.faq details,
.faq details summary,
.testimonials blockquote {
  color: var(--ink);
}

.bundle .checkout-card,
.newsletter .newsletter-card,
.hero .hero-card {
  color: var(--ink);
}

.hero .hero-card p,
.hero .hero-card .bundle-price .label {
  color: var(--muted);
}

.hero .hero-card .bundle-price strong {
  color: var(--brown-dark);
}

.hero .hero-card .strike {
  color: var(--muted);
  opacity: 0.85;
}

.hero-card-detail {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0.75rem 0 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .purchase-feed,
  .inside-book,
  .benefits,
  .bundle,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .social-proof,
  .ebook-grid,
  .tier-grid,
  .inside-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .top-buy-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-buy-action {
    justify-content: flex-start;
  }

  .featured-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .top-bar {
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .book-stack {
    height: 300px;
    transform: scale(0.82);
    transform-origin: center;
  }

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

  .downsell-card {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .newsletter-input-row .button {
    width: 100%;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
