:root {
  --bg: #0D1220;
  --bg-deep: #080B15;
  --card: #171F33;
  --card-hi: #1E2841;
  --border: rgba(255, 255, 255, 0.08);
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.62);
  --ink-dim: rgba(255, 255, 255, 0.40);
  --mint: #2FAE7A;
  --mint-bright: #3ECF8E;
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.35);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
main { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
h1, h2, .serif { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
em { font-style: italic; }

/* Ornament divider — echoes the app's own OrnamentDivider component */
.ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 28px; max-width: 200px; }
.ornament .line { flex: 1; height: 1px; background: var(--gold-soft); }
.ornament .mark { color: var(--gold); font-size: 11px; transform: rotate(45deg); }

/* Nav */
nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 24px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.2px; font-size: 17px; text-decoration: none; color: var(--ink); font-family: Georgia, serif; }
.brand img { width: 32px; height: 32px; border-radius: 9px; }
.nav-cta {
  background: var(--mint); color: #06281B; text-decoration: none;
  padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 13px;
}

/* Hero */
.hero { padding: 40px 0 70px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(47,174,122,0.14); color: var(--mint-bright);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
  border: 1px solid rgba(47,174,122,0.25);
}
h1 {
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.18; letter-spacing: -0.3px;
  margin-bottom: 22px;
}
h1 em { color: var(--mint-bright); font-style: italic; }
.hero-sub {
  color: var(--ink-soft); font-size: clamp(16px, 2.1vw, 19px);
  max-width: 600px; margin: 0 auto 36px; font-weight: 400;
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mint); color: #06281B; text-decoration: none;
  padding: 16px 30px; border-radius: 14px; font-weight: 700; font-size: 16px;
  box-shadow: 0 16px 34px -12px rgba(47,174,122,0.55);
}
.btn-store svg { width: 20px; height: 20px; }
.coming-soon-note { color: var(--ink-dim); font-size: 13px; }

.hero-showcase {
  margin-top: 60px; display: flex; justify-content: center; gap: 24px;
  overflow-x: auto; padding: 8px 4px 24px; scroll-snap-type: x proximity;
}
.hero-showcase a, .hero-showcase div { flex-shrink: 0; scroll-snap-align: center; }
.hero-showcase img {
  width: 230px; border-radius: 22px; border: 1px solid var(--border);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
}

.trust-strip {
  margin-top: 44px; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 30px; padding-top: 30px; border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.trust-icon { font-size: 15px; }

/* Section headers */
.section-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
.kicker {
  color: var(--mint-bright); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.2px; margin-bottom: 12px;
}
h2 { font-size: clamp(26px, 3.8vw, 38px); letter-spacing: -0.3px; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* Feature showcase (App Store screenshots) */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.showcase-item { text-align: center; }
.showcase-item img { border-radius: 20px; border: 1px solid var(--border); margin-bottom: 16px; }
.showcase-item h3 { font-size: 17px; margin-bottom: 6px; }
.showcase-item p { color: var(--ink-soft); font-size: 14px; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; }
.step-num {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(47,174,122,0.16);
  color: var(--mint-bright); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: -apple-system, sans-serif; }
.step p { color: var(--ink-soft); font-size: 14px; }

/* Category gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { text-align: center; }
.gallery-item a { display: block; text-decoration: none; color: inherit; }
.cat-card {
  border-radius: 18px; border: 1px solid var(--border); margin-bottom: 12px;
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.gallery-item span { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(47,174,122,0.16);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--mint-bright); font-size: 17px; font-weight: 800;
}
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; font-family: -apple-system, sans-serif; }
.feature p { color: var(--ink-soft); font-size: 14px; }

/* Editorial */
.editorial { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 48px; }
.editorial .kicker { text-align: center; }
.editorial h2 { text-align: center; margin-bottom: 22px; }
.editorial > p { color: var(--ink); font-size: 17px; line-height: 1.8; max-width: 720px; margin: 0 auto; }
.editorial > p + p { margin-top: 16px; }

.checklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.check-card { background: var(--bg-deep); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.check-card .num { color: var(--mint-bright); font-weight: 800; font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.check-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; font-family: -apple-system, sans-serif; }
.check-card p { color: var(--ink-soft); font-size: 14px; }

/* Translation strip */
.translation-strip { background: rgba(212,175,55,0.08); border: 1px solid var(--gold-soft); border-radius: 24px; padding: 40px; text-align: center; }
.translation-strip h2 { color: var(--ink); font-size: 22px; margin-bottom: 10px; }
.translation-strip p { color: var(--ink-soft); font-size: 15px; max-width: 560px; margin: 0 auto; }

/* Privacy strip */
.privacy-strip { background: rgba(47,174,122,0.08); border: 1px solid rgba(47,174,122,0.28); color: var(--ink); border-radius: 24px; padding: 44px; text-align: center; }
.privacy-strip h2 { color: var(--ink); font-size: 26px; margin-bottom: 10px; }
.privacy-strip p { color: var(--ink-soft); font-size: 15px; max-width: 540px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; font-family: -apple-system, sans-serif; }
.faq-item p { color: var(--ink-soft); font-size: 15px; }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 14px; }
.final-cta p { color: var(--ink-soft); margin-bottom: 30px; }

footer { border-top: 1px solid var(--border); padding: 36px 20px; text-align: center; }
footer .links { display: flex; justify-content: center; gap: 22px; margin-bottom: 16px; flex-wrap: wrap; }
footer a { color: var(--ink-soft); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--mint-bright); }
footer .copy { color: var(--ink-dim); font-size: 13px; }

/* Detail pages (category / blog) */
.breadcrumb { font-size: 13px; color: var(--ink-soft); margin: 8px 0 28px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--mint-bright); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }
.breadcrumb .current { color: var(--ink); font-weight: 600; }

.detail-hero { padding: 12px 0 20px; }
.detail-title { text-align: center; margin-bottom: 32px; }
.detail-title .kicker { justify-content: center; }
.detail-title h1 { font-size: clamp(28px, 4.4vw, 42px); }
.detail-caption { max-width: 700px; margin: 0 auto 36px; color: var(--ink); font-size: 16px; line-height: 1.85; }
.detail-caption p + p { margin-top: 14px; }
.detail-caption h3 { font-size: 19px; font-weight: 700; margin: 30px 0 10px; color: var(--ink); font-family: -apple-system, sans-serif; }
.detail-caption ul, .detail-caption ol { margin: 4px 0 14px; padding-left: 22px; color: var(--ink); }
.detail-caption li { margin-bottom: 8px; }
.detail-caption li strong, .detail-caption p strong { color: var(--mint-bright); }
.detail-caption a { color: var(--mint-bright); text-decoration: underline; text-underline-offset: 2px; }
.detail-caption a:hover { color: var(--gold); }
.detail-caption .faq-list { text-align: left; }
.detail-cta { text-align: center; margin-bottom: 20px; }

.related-head { text-align: center; margin: 8px 0 24px; }
.related-head .kicker { justify-content: center; }

/* Verse widget mockup card — CSS-only, no photo assets needed */
.verse-card {
  border-radius: 22px; padding: 34px 28px; position: relative; overflow: hidden;
  color: #fff; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 24px 50px -22px rgba(0,0,0,0.55);
}
.verse-card .verse-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px;
  color: rgba(255,255,255,0.75); margin-bottom: 10px;
}
.verse-card .verse-text { font-family: Georgia, serif; font-style: italic; font-size: 19px; line-height: 1.5; margin-bottom: 14px; }
.verse-card .verse-ref { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.verse-card .verse-brand { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 14px; }

.verse-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr 1fr; }
  .editorial { padding: 32px 24px; }
  .verse-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
}
