/* --- Variables --- */
:root {
  --cream: #F8F4EE;
  --cream-dark: #EDE7DC;
  --sage: #3D6B35;
  --sage-light: #5A8F4E;
  --amber: #A67C40;
  --amber-light: #C49760;
  --text: #2A2A1E;
  --text-muted: #6B6B56;
  --white: #FFFFFF;
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }

/* --- Nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(61, 107, 53, 0.1);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sage); }

/* --- Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #C49760 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #3D6B35 0%, transparent 70%);
  bottom: -50px;
  left: 200px;
  opacity: 0.15;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.eyebrow-tag {
  display: inline-block;
  background: rgba(61, 107, 53, 0.1);
  color: var(--sage);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage);
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 42, 30, 0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(42, 42, 30, 0.12);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.prompt-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 32px rgba(42, 42, 30, 0.08);
  border: 1px solid rgba(61, 107, 53, 0.1);
  position: relative;
}
.prompt-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.prompt-card-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--sage);
}
.prompt-card-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 600;
}
.result-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.workbook-card {
  background: var(--sage);
  color: var(--cream);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(61, 107, 53, 0.2);
}
.workbook-icon { flex-shrink: 0; }
.workbook-card-text {
  font-size: 0.9rem;
  font-weight: 600;
}
.workbook-card-sub {
  font-size: 0.75rem;
  opacity: 0.7;
}
.workbook-card p { margin: 0; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--text);
  color: var(--cream);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.stats-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stats-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-light);
}
.stats-desc { font-size: 0.85rem; color: rgba(248, 244, 238, 0.6); max-width: 220px; line-height: 1.4; }
.stats-sep { width: 1px; height: 60px; background: rgba(248, 244, 238, 0.15); flex-shrink: 0; }
.stats-source {
  max-width: 1200px;
  margin: 1rem auto 0;
  font-size: 0.7rem;
  color: rgba(248, 244, 238, 0.3);
  padding: 0 2rem;
}

/* --- Section Labels --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* --- What --- */
.what { padding: 6rem 2rem; }
.what-inner { max-width: 1200px; margin: 0 auto; }
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.what-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(61, 107, 53, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.what-card:hover {
  box-shadow: 0 8px 40px rgba(42, 42, 30, 0.08);
  transform: translateY(-2px);
}
.what-icon { margin-bottom: 1.25rem; }
.what-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.what-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* --- Who --- */
.who {
  padding: 6rem 2rem;
  background: var(--cream-dark);
}
.who-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: center;
}
.who-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  color: var(--cream);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 280px;
}
.badge-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 0.5rem; }
.badge-gen { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 700; line-height: 1.1; }
.badge-amp { font-family: 'Fraunces', serif; font-size: 1.5rem; opacity: 0.5; margin: 0.5rem 0; font-style: italic; }
.who-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.who-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(61, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.who-item strong { font-weight: 700; color: var(--text); }
.who-item span { color: var(--text-muted); }

/* --- How --- */
.how { padding: 6rem 2rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3rem;
}
.how-step { padding: 0 1rem; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.25;
  margin-bottom: 0.75rem;
}
.how-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.how-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }
.how-connector {
  display: flex;
  align-items: start;
  padding-top: 1rem;
}

/* --- Voice --- */
.voice {
  padding: 6rem 2rem;
  background: var(--text);
  color: var(--cream);
}
.voice-inner { max-width: 900px; margin: 0 auto; }
.voice-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}
.voice blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  border-left: 3px solid var(--amber);
}
.voice-attr {
  font-size: 1rem;
  color: rgba(248, 244, 238, 0.6);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.voice-principles {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 244, 238, 0.1);
}
.principle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(248, 244, 238, 0.8);
}
.principle-icon { flex-shrink: 0; }

/* --- Pricing --- */
.pricing { padding: 6rem 2rem; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing .section-sub { margin: 0 auto 3rem; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(61, 107, 53, 0.12);
  position: relative;
}
.pricing-card-featured {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--amber);
}
.pricing-card-featured .card-label { color: var(--amber-light); }
.card-price {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card-price span { font-size: 1rem; font-weight: 400; opacity: 0.6; font-family: 'DM Sans', sans-serif; }
.card-desc { font-size: 0.875rem; margin-bottom: 1.5rem; color: var(--text-muted); }
.pricing-card-featured .card-desc { color: rgba(248, 244, 238, 0.7); }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-card-featured .card-features li { color: rgba(248, 244, 238, 0.8); }
.card-features strong { color: var(--amber); }
.pricing-card-featured .card-features strong { color: var(--amber-light); }
.pricing-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --- Closing --- */
.closing {
  padding: 6rem 2rem;
  background: var(--cream-dark);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-badge {
  display: inline-block;
  background: rgba(61, 107, 53, 0.1);
  color: var(--sage);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.closing-headline em { font-style: italic; color: var(--sage); }
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.closing-last { margin-bottom: 3rem; }
.closing-founders {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(42, 42, 30, 0.1);
}
.founder {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.founder-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.founder strong { display: block; font-weight: 700; font-size: 0.9rem; }
.founder span { font-size: 0.8rem; color: var(--text-muted); }

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(248, 244, 238, 0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--cream);
}
.footer-brand p { font-size: 0.8rem; margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-legal p { font-size: 0.75rem; }

/* --- Checkout Button --- */
.btn-checkout {
  display: inline-block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--sage);
  color: var(--cream);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-checkout:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61, 107, 53, 0.25);
}
.pricing-card-featured .btn-checkout {
  background: var(--amber);
  color: var(--white);
}
.pricing-card-featured .btn-checkout:hover {
  background: var(--amber-light);
  box-shadow: 0 6px 20px rgba(166, 124, 64, 0.3);
}

/* --- Success Page --- */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}
.success-card {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 8px 48px rgba(42, 42, 30, 0.1);
  border: 1px solid rgba(61, 107, 53, 0.1);
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(61, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.success-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.success-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.success-email-note {
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.success-email-note span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  opacity: 0.8;
}
.success-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: var(--sage);
  color: var(--cream);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.success-cta:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .who-inner { grid-template-columns: 1fr; gap: 2rem; }
  .who-badge { min-height: auto; padding: 2rem; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-connector { display: none; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stats-sep { width: 60px; height: 1px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .voice-principles { flex-direction: column; gap: 1rem; }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-divider { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .closing-founders { flex-direction: column; gap: 1rem; }
}