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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #b8860b; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

.nav-links a { color: #666; }
.nav-links a:hover { color: #333; text-decoration: none; }

.nav-cta {
  background: linear-gradient(135deg, #d4a853, #8b6914);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: opacity 0.15s;
}

.nav-cta:hover { opacity: 0.9; text-decoration: none !important; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  background: linear-gradient(180deg, #faf8f3 0%, #fff 100%);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 18px;
  color: #666;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.btn-install {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4a853, #8b6914);
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-install:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 105, 20, 0.25);
  text-decoration: none;
  color: #fff;
}

.hero-users {
  margin-top: 16px;
  font-size: 13px;
  color: #aaa;
}

/* ── Features ─────────────────────────────────────────── */
.features {
  padding: 80px 24px;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature {
  text-align: center;
  padding: 24px;
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* ── Verse Banner ─────────────────────────────────────── */
.verse-banner {
  text-align: center;
  padding: 60px 24px;
  background: #1a1a2e;
  color: #fff;
}

.verse-banner blockquote {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.verse-banner cite {
  font-size: 14px;
  opacity: 0.5;
  font-style: normal;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 80px 24px;
  background: #faf8f3;
}

.cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.cta p {
  font-size: 16px;
  color: #888;
  margin-bottom: 24px;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  padding: 24px 32px;
  border-top: 1px solid #eee;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #aaa;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a { color: #aaa; }
.footer-links a:hover { color: #666; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .features .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── Privacy & Donate page body styles ────────────────── */
.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 100px 24px 60px;
}

.page h1 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.page .updated {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 32px;
}

.page h2 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-top: 28px;
  margin-bottom: 8px;
}

.page p, .page li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 12px;
}

.page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
