:root{
  /* Core palette */
  --bg: #0f1114;        /* charcoal */
  --panel: #14181d;     /* slightly lighter charcoal */
  --text: #f2f2f2;      /* near-white */
  --muted: #b9b9b9;     /* soft gray */
  --line: rgba(255,255,255,0.10);

  /* Brand accent (dark wine red) */
  --accent: #7a1f2a;
  --accent2: #5d151e;

  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(122,31,42,0.22), transparent 55%),
    radial-gradient(800px 520px at 85% 15%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, var(--bg), #0b0d10);
  color: var(--text);
}

.wrap{
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
}

/* Top notice */
.notice{
  border-bottom: 1px solid var(--line);
  background: rgba(15,17,20,0.75);
  backdrop-filter: blur(8px);
}
.notice p{
  margin:0;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
  text-align:center;
}
/* Sale banner (top bar) */
.notice.sale-banner{
  background:
    linear-gradient(180deg, rgba(122,31,42,0.95), rgba(93,21,30,0.95));
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* MORE SPECIFIC selector so it overrides .notice p */
.notice.sale-banner .sale-text{
  margin: 0;
  text-align: center;
  font-size: 18px;          /* ← ACTUALLY bigger */
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.96);
}

.notice.sale-banner .sale-text strong{
  font-weight: 900;
}

.notice.sale-banner .sale-sub{
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* Mobile tuning */
@media (max-width: 600px){
  .notice.sale-banner .sale-text{
    font-size: 16px;
  }
  .notice.sale-banner .sale-sub{
    font-size: 14px;
  }
}

.sale-inner{
  padding: 18px 0;
}

.sale-text{
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  letter-spacing: 0.02em;
}

.sale-text strong{
  font-weight: 900;
}

.sale-sub{
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* Mobile tuning */
@media (max-width: 600px){
  .sale-inner{
    padding: 16px 0;
  }
  .sale-text{
    font-size: 16px;
  }
}
/* Slightly larger sale banner text */
.sale-text{
  font-size: 17px;      /* was 15px */
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sale-sub{
  font-size: 14px;      /* was 13px */
}

/* Mobile still balanced */
@media (max-width: 600px){
  .sale-text{
    font-size: 15px;
  }
  .sale-sub{
    font-size: 13px;
  }
}


/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,17,20,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.logo{
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 12px;
}
.nav{
  display:flex;
  gap: 18px;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-size: 13px;
}
.nav a:hover{ color: var(--text); }

/* Buttons */
.btn{
  border: 1px solid rgba(255,255,255,0.30);
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-solid{
  border-color: rgba(122,31,42,0.75);
  background: linear-gradient(180deg, rgba(122,31,42,0.95), rgba(93,21,30,0.92));
}
.btn-outline{
  background: rgba(255,255,255,0.04);
}
.btn.full{ width: 100%; }

/* Hero */
.hero{
  padding: 54px 0 20px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.hero-cta{
  display:inline-block;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 0;
  margin: 6px 0 12px;
  border-bottom: 2px solid rgba(255,255,255,0.9);
}
.hero-cta:hover{
  border-bottom-color: var(--accent);
}

.subhead{
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 700;
}
.subsub{
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* Book image stage */
.img-stage{
  position: relative;
  width: min(420px, 100%);
  margin-left: auto;
}
.hero-book-img{
  width: 100%;
  display:block;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 34px 110px rgba(0,0,0,0.55);
}
.hero-badge{
  position: absolute;
  right: -10px;
  bottom: -14px;
  width: 130px;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
  pointer-events:none;
}

/* Mini CTA */
.mini-cta{
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(20,24,29,0.72);
}
.mini-cta-title{
  margin: 0 0 6px;
  font-weight: 700;
}
.mini-cta-sub{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section{
  padding: 52px 0;
}
.section.soft{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.center{ text-align:center; }

.section-title{
  margin: 0 0 10px;
  font-size: 20px;
}
.big-title{
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 36px);
}
.section-text{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  max-width: 70ch;
}
.section-text.center{ margin: 0 auto; }

/* Ratings */
.ratings-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.stat{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(20,24,29,0.72);
  padding: 18px;
}
.stat-num{
  font-size: 34px;
  font-weight: 900;
}
.stat-label{
  margin-top: 6px;
  font-weight: 700;
}
.stat-sub{
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

/* Section images */
.section-image{
  width: 220px;
  margin: 0 auto 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}

/* Bundle */
.bundle-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items:center;
}
.bundle-img{
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 28px 90px rgba(0,0,0,0.45);
}
.bundle-box{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(20,24,29,0.72);
  padding: 18px;
}
.bundle-title{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}
.bundle-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}
.bundle-list strong{ color: var(--text); }

/* Pricing */
.pricing{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(20,24,29,0.72);
  padding: 18px;
  position: relative;
}
.price-card.featured{
  border-color: rgba(122,31,42,0.55);
}
.pill{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
}
.price{
  font-size: 40px;
  font-weight: 900;
  margin: 10px 0 6px;
}
.price-sub{
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

/* Footer */
.footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-row{
  display:flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.footer a{
  color: var(--muted);
  text-decoration:none;
}
.footer a:hover{ color: var(--text); }

/* Scroll reveal */
.reveal{
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .ratings-grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .bundle-grid{ grid-template-columns: 1fr; }
  .img-stage{ margin-left: 0; }
  .nav{ display:none; }
}

/* Testimonials (replaces ratings section) */
.testimonials-grid{
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(20,24,29,0.72);
  padding: 18px;
}

.testimonial-text{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(242,242,242,0.92);
}

.testimonial-author{
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }
}
/* Two-column pricing layout */
.pricing-two{
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin: 24px auto 0;
}

/* Old price (strikethrough) */
.price-row{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 6px;
}

.price-old{
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}

.price{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Mobile */
@media (max-width: 900px){
  .pricing-two{
    grid-template-columns: 1fr;
  }
}
