@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

:root {
  --sage: #3F5B4E;
  --clay: #C1683D;
  --cream: #F6F1E7;
  --ink: #2A2A26;
  --mist: #C9C2B4;
  --card: #EFE8D8;
  --muted: #6E6656;
  --muted-2: #8A8272;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  padding: 28px 0;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.3px;
}
.brand .mark { width: 28px; height: 28px; flex-shrink: 0; }
.brand .sage-part { color: var(--sage); }
.brand .clay-part { color: var(--clay); }
nav.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  margin-left: 28px;
}
nav.site-nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding: 64px 0 56px;
  text-align: center;
}
.hero .mark-lg {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.hero h1 .sage-part { color: var(--sage); }
.hero h1 .clay-part { color: var(--clay); }
.hero .tagline {
  font-size: 24px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 14px;
}
.hero .sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.6;
}
.cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.store-btn .icon { width: 20px; height: 20px; }
.store-btn small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.8;
}
.deadline-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-2);
}

/* Sections */
section { padding: 64px 0; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  text-align: center;
}
.section-title {
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  background: var(--card);
  border-radius: 14px;
  padding: 32px 26px;
}
.step .num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.price-card {
  border: 1px solid var(--mist);
  border-radius: 16px;
  padding: 32px;
  background: #fff;
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
}
.price-card .tier { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--muted-2); }
.price-card.featured .tier { color: var(--mist); }
.price-card .amount { font-size: 40px; font-weight: 800; margin: 14px 0 4px; }
.price-card .amount span { font-size: 16px; font-weight: 500; opacity: 0.7; }
.price-card ul { margin-top: 20px; list-style: none; }
.price-card li {
  font-size: 14.5px;
  padding: 7px 0;
  display: flex;
  gap: 10px;
}
.price-card li::before { content: "\2713"; color: var(--sage); font-weight: 700; }
.price-card.featured li::before { color: var(--clay); }
.price-note { text-align: center; font-size: 13.5px; color: var(--muted-2); margin-top: 20px; }

/* Trust / honesty */
.trust {
  background: var(--card);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.trust-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px 26px;
}
.trust-item h3 { font-size: 17px; font-weight: 600; color: var(--sage); margin-bottom: 6px; }
.trust-item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.disclaimer-box {
  margin-top: 32px;
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--mist);
  padding: 22px 0;
}
.faq-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--sage);
  color: var(--cream);
  border-radius: 20px;
  padding: 56px 32px;
  margin: 0 24px;
}
.final-cta h2 { font-size: 30px; font-weight: 700; }
.final-cta p { margin-top: 10px; opacity: 0.85; font-size: 16px; }
.final-cta .cta-row { margin-top: 28px; }
.final-cta .store-btn { background: var(--cream); color: var(--ink); }

/* Footer */
footer.site {
  padding: 40px 0 60px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--mist);
  padding-top: 28px;
}
footer.site .foot-brand { font-size: 14px; color: var(--muted-2); }
footer.site .foot-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  margin-left: 22px;
}
footer.site .foot-links a:hover { color: var(--ink); }

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}
.legal h1 { font-size: 36px; font-weight: 800; color: var(--sage); }
.legal .updated { font-size: 14px; color: var(--muted-2); margin-top: 8px; margin-bottom: 40px; }
.legal h2 { font-size: 21px; font-weight: 700; margin-top: 36px; margin-bottom: 10px; }
.legal p, .legal li { font-size: 15.5px; color: var(--ink); line-height: 1.7; }
.legal ul { margin: 10px 0 10px 20px; }
.legal a.back { display: inline-block; margin-bottom: 24px; font-size: 14px; color: var(--sage); text-decoration: none; font-weight: 600; }
.placeholder {
  background: #FBEEE4;
  border: 1px dashed var(--clay);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #8a4a28;
  margin: 14px 0;
}

@media (max-width: 720px) {
  .hero h1 { font-size: 38px; }
  .steps, .pricing-grid, .trust-grid { grid-template-columns: 1fr; }
  header.site .wrap { flex-direction: column; gap: 14px; }
  nav.site-nav a { margin: 0 10px; }
}
