@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
  --bg: #FDF8F4;
  --bg-warm: #F9F0E8;
  --fg: #2D2420;
  --fg-muted: #7A6B60;
  --accent: #E8945A;
  --accent-soft: #F4C49A;
  --accent-deep: #C47A3F;
  --cream: #FFF7F0;
  --sage: #B5C4A8;
  --sage-soft: #E2EAD8;
  --blush: #E8C4B8;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 50%, var(--cream) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-soft) 0%, transparent 70%);
  opacity: 0.5;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--cream);
  border: 1.5px solid var(--accent-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 24px;
  background: var(--cream);
}

.products-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 56px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(232, 148, 90, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45, 36, 32, 0.08);
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.product-icon.planner { background: var(--sage-soft); }
.product-icon.template { background: var(--blush); }
.product-icon.ebook { background: var(--accent-soft); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.product-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works .section-title {
  text-align: center;
  margin-bottom: 64px;
}

.how-it-works .section-label {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== PLATFORMS ===== */
.platforms {
  padding: 80px 24px;
  background: var(--bg-warm);
}

.platforms-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.platforms .section-title {
  margin-bottom: 48px;
}

.platform-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(232, 148, 90, 0.15);
}

.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sage);
}

.platform-badge span {
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing h2 em {
  font-style: italic;
  color: var(--accent);
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--bg-warm);
  border-top: 1px solid rgba(232, 148, 90, 0.1);
}

footer p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .platform-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .products, .how-it-works, .closing {
    padding: 72px 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== HERO CTA BUTTON ===== */
.hero-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 36px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.hero-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

/* ===== LANDING NAV (shared style with shop nav) ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 148, 90, 0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.nav-links { display: flex; gap: 28px; }

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: var(--accent); }