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

:root {
  --green: #2D5016;
  --green-light: #4A7A25;
  --gold: #C4A265;
  --cream: #FAF6F0;
  --text: #1A1A1A;
  --text-light: #666;
  --white: #FFFFFF;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--green);
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
}
.nav-logo img { border-radius: 8px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

/* Hero */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 140px 24px 80px;
  display: flex; align-items: center; gap: 60px;
  min-height: 90vh;
}
.hero-content { flex: 1; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; line-height: 1.15;
  color: var(--green);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px; color: var(--text-light);
  max-width: 480px; margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-coming {
  margin-top: 16px; font-size: 13px;
  color: var(--text-light); font-style: italic;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--green); color: var(--white);
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white); color: var(--text);
  border: 1.5px solid #ddd;
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }
.btn-large { padding: 16px 36px; font-size: 17px; }

/* Phone Mockup */
.hero-visual { flex: 0 0 300px; }
.phone-mockup {
  width: 260px; height: 520px;
  background: var(--text);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  margin: 0 auto;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--cream);
  border-radius: 26px;
  padding: 40px 20px 20px;
  overflow: hidden;
}
.screen-header {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--green);
  text-align: center;
  margin-bottom: 40px;
}
.screen-verse { text-align: center; }
.verse-ref {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.screen-verse p {
  font-family: 'Merriweather', serif;
  font-size: 14px; line-height: 1.9;
  color: var(--text);
}

/* Features */
.features {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 24px;
}
.features h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  text-align: center; margin-bottom: 48px;
  color: var(--green);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  margin-bottom: 8px; color: var(--green);
}
.feature-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* CTA */
.cta {
  text-align: center;
  padding: 80px 24px;
  background: var(--cream);
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700;
  color: var(--green); margin-bottom: 12px;
}
.cta p { color: var(--text-light); font-size: 17px; margin-bottom: 28px; }

/* Footer */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--green); margin-bottom: 16px;
}
.footer-brand img { border-radius: 6px; }
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.footer-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 14px; transition: color 0.2s;
}
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 13px; color: #999; }

/* Responsive */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { flex: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13px; }
}

/* Legal pages */
.legal {
  max-width: 760px; margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--green); margin-bottom: 8px;
}
.legal .updated {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 36px;
}
.legal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--green); margin: 32px 0 12px;
}
.legal p, .legal li {
  font-size: 15px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 12px;
}
.legal ul { padding-left: 24px; }
.legal a { color: var(--green); }
