/* Home page (biblekjv.xyz) — standalone styles, not shared with admin/help pages. */

:root {
  --ink: #22243a;
  --ink-soft: #565a76;
  --ink-faint: #8a8ea6;
  --cream: #faf7f0;
  --card: #ffffff;
  --line: #e9e3d6;
  --gold: #b8892f;
  --gold-soft: #f3e7cd;
  --navy: #232946;
  --navy-deep: #1a1f38;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(35, 41, 70, 0.10);
  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Lora", "Georgia", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .container {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--navy-deep); }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(184, 137, 47, 0.16), transparent 60%),
    radial-gradient(900px 460px at 10% 110%, rgba(35, 41, 70, 0.10), transparent 60%),
    var(--cream);
  text-align: center;
  padding: 72px 0 64px;
}

.hero .launch-pill {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid rgba(184, 137, 47, 0.35);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero img.hero-logo {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.store-btn.primary { background: var(--navy); color: #fff; }
.store-btn.secondary { background: #fff; color: var(--navy); border: 1px solid var(--line); }

.store-btn svg { width: 20px; height: 20px; fill: currentColor; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
  color: var(--ink-faint);
  font-size: 13.5px;
  font-weight: 500;
}

.trust-row span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 7px;
}

/* ---------- Daily section ---------- */

.daily-section {
  padding: 72px 0 80px;
  background:
    linear-gradient(180deg, rgba(35, 41, 70, 0.03), transparent 220px);
}

.daily-head {
  text-align: center;
  margin-bottom: 34px;
}

.daily-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  margin: 10px 0 6px;
}

.daily-date {
  color: var(--ink-faint);
  font-size: 15px;
  margin: 0 0 22px;
}

.daily-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.daily-toggle button {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.daily-toggle button.active {
  background: var(--navy);
  color: #fff;
}

.daily-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

@media (max-width: 880px) {
  .daily-grid { grid-template-columns: 1fr; }
}

.daily-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 36px;
}

.verse-card .verse-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  margin-bottom: 18px;
}

.verse-text {
  font-family: var(--font-serif);
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 16px;
}

.verse-ref {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}

.daily-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.daily-card h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 10px;
}

.daily-card p.body-text {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin: 0 0 20px;
}

.prayer-quote {
  margin: 0;
  padding: 16px 20px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: #6d5420;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15.5px;
}

.devotion-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin: 10px 0 4px;
}

.devotion-author {
  color: var(--ink-faint);
  font-size: 13.5px;
  margin: 0 0 18px;
}

.daily-status {
  text-align: center;
  color: var(--ink-faint);
  font-size: 15px;
  padding: 40px 0;
}

/* ---------- Features ---------- */

.feature-section { padding: 72px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  margin: 10px 0 10px;
}

.section-header p { color: var(--ink-soft); margin: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 880px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 22px;
}

.feature-card h3 { font-size: 17px; margin: 6px 0 8px; color: var(--ink); }

.feature-card p { font-size: 14px; color: var(--ink-soft); margin: 0; }

.status-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.feature-card.beta .status-badge { background: var(--gold-soft); color: var(--gold); }
.feature-card.upcoming .status-badge { background: #e8eaf4; color: #5b6390; }

.beta-note {
  margin-top: 26px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* ---------- Reviews ---------- */

.reviews-section { padding: 72px 0; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 880px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
}

.review-stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; }

.review-card h4 { margin: 0 0 8px; font-size: 16px; color: var(--ink); }

.review-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; }

.review-card h5 { margin: 0; font-size: 12.5px; font-weight: 500; color: var(--ink-faint); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: #b9bdd4;
  padding: 40px 0 32px;
  font-size: 13.5px;
  text-align: center;
}

.site-footer a { color: #e6e0ce; text-decoration: none; }

.site-footer a:hover { text-decoration: underline; }

.footer-links { margin-bottom: 12px; }

.footer-links a { margin: 0 10px; }

.footer-extra { margin-top: 14px; opacity: 0.7; }
