/* ReadKindled FINAL — A3 softness + A4 structure
   Forest Green + Amber + Cream
   Cormorant Garamond + DM Sans
*/

:root {
  --cream: #F7F3EC;
  --off-white: #F0FAF4;
  --forest: #2D5A3D;
  --forest-dark: #1A3528;
  --forest-light: #4A8A5E;
  --amber: #C97D2E;
  --amber-light: #F5C87A;
  --text: #1A2E1F;
  --text-muted: #6B8C75;
  --border: #D4E8DA;
  --surface: #E8F4EC;
  --surface-warm: #EDE8DF;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
}
h1 { font-size: clamp(48px, 6.5vw, 80px); font-weight: 600; }
h2 { font-size: clamp(38px, 5.2vw, 60px); font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
em { font-style: italic; color: var(--amber); }
a { text-decoration: none; color: inherit; }
img { border-radius: 50%; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: white;
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-1px); }

.btn-primary-white {
  display: block;
  background: white;
  color: var(--forest);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.btn-primary-white:hover { opacity: 0.92; }

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.btn-outline {
  display: block;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--forest); }

.btn-outline-sm {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--forest);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s;
}
.btn-outline-sm:hover { border-color: var(--forest); }

.btn-nav {
  background: var(--forest);
  color: white !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--forest-dark); }

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,243,236,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* HERO — split */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.hero-left {
  background: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}
.hero-left-inner { max-width: 380px; }
.big-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  color: rgba(255,255,255,0.12);
  line-height: 0.8;
  display: block;
  margin-bottom: 12px;
}
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: white;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 40px;
}
.reading-now { display: flex; align-items: center; gap: 10px; }
.reader-avatars { display: flex; }
.reader-avatars img {
  width: 28px; height: 28px;
  border: 2px solid var(--forest-dark);
  margin-left: -6px;
}
.reader-avatars img:first-child { margin-left: 0; }
.reading-now span { font-size: 13px; color: rgba(255,255,255,0.5); }

.hero-right {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 60px;
}
.hero-right-inner { max-width: 500px; }

.hero-badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; color: var(--forest-dark); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}

/* Stacked books */
.hero-books-preview {
  display: flex;
  margin-bottom: 12px;
  padding-left: 8px;
}
.mini-book {
  width: 88px;
  height: 124px;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 9px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  margin-left: -18px;
  flex-shrink: 0;
}
.mini-book:first-child { margin-left: 0; }
.mini-book span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  line-height: 1.3;
}
.mini-caption {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 4px;
}

/* MARQUEE */
.marquee-strip {
  background: var(--forest);
  padding: 13px 0;
  overflow: hidden;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--amber); opacity: 0.6; font-size: 12px; }

/* STATS STRIP */
.stats-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 36px 40px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat { text-align: center; padding: 0 52px; }
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  color: var(--forest);
  font-weight: 600;
  line-height: 1;
}
.stat span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
  display: block;
}
.stat-div { width: 1px; height: 52px; background: var(--border); }

/* HOW IT WORKS */
.how { background: var(--off-white); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.how h2 { margin-bottom: 72px; max-width: 520px; }
.how-steps { display: flex; flex-direction: column; }
.how-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  padding-top: 2px;
}
.hs-content h3 { color: var(--forest); font-size: 20px; margin-bottom: 12px; }
.hs-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
}

/* BOOKS */
.books { background: var(--cream); }
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 36px;
}
.books-scroll {
  overflow-x: auto;
  padding: 8px 40px 52px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.books-scroll::-webkit-scrollbar { display: none; }
.scroll-inner {
  display: flex;
  gap: 20px;
  width: max-content;
}
.book-card {
  width: 210px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45,90,61,0.12);
}
.book-img {
  height: 168px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.book-img span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
}
.book-info { padding: 16px; }
.book-info h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.book-info p { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.tag {
  display: inline-block;
  background: var(--surface);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

/* TESTIMONIALS */
.testimonials { background: white; }
.testimonials h2 { margin-bottom: 56px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.testi-card > p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.65;
  margin-bottom: 22px;
}
.testi-card > p::before { content: '\201C'; }
.testi-card > p::after { content: '\201D'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 40px; height: 40px; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--forest); }
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* PRICING */
.pricing { background: var(--off-white); }
.pricing h2 { margin-bottom: 56px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 1.5px solid var(--border);
  position: relative;
}
.pricing-card.featured {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.featured .plan-name { color: white; }
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 24px;
}
.featured .plan-price { color: white; }
.plan-price span { font-size: 20px; opacity: 0.5; }
.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-card li { font-size: 14px; color: var(--text); }
.featured li { color: rgba(255,255,255,0.85); }

/* WAITLIST */
.waitlist { background: var(--surface); border-top: 1px solid var(--border); }
.waitlist .section-inner {
  padding: 100px 40px;
  text-align: center;
  max-width: 640px;
}
.center { text-align: center; }
.leaf-icon { font-size: 44px; margin-bottom: 20px; }
.waitlist h2 { margin-bottom: 16px; color: var(--forest-dark); }
.waitlist-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.waitlist-form input {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  background: white;
  transition: border-color 0.2s;
}
.waitlist-form input:focus { border-color: var(--forest); }
.waitlist-note { font-size: 13px; color: var(--text-muted); }

/* FOOTER */
footer { background: var(--forest-dark); padding: 48px 40px; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
}
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { display: none; }
  .hero-right { padding: 72px 24px 40px; }
  .hero-right-inner { max-width: 100%; }
  .stats-inner { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .stat { padding: 0 28px; }
  .stat-div { display: none; }
  .how-step { grid-template-columns: 64px 1fr; gap: 20px; }
  .section-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 24px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .section-inner { padding: 60px 24px; }
  .books-scroll { padding: 8px 24px 44px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 560px) {
  .hero-books-preview { display: none; }
  .mini-caption { display: none; }
  .waitlist-form { flex-direction: column; align-items: center; }
  .waitlist-form input { max-width: 100%; }
}
