:root {
  --navy-deep:  #0A1628;
  --navy-mid:   #0F1F3D;
  --navy-light: #1A2F52;
  --gold:       #C9A84C;
  --gold-light: #E5C97A;
  --gold-dark:  #8B6914;
  --cream:      #F5F0E8;
  --text-secondary: #8A9BB5;
  --error:      #E57373;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: underline; }

/* ── Nav ───────────────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(10, 22, 40, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-brand .cross { color: var(--gold); font-size: 1.3rem; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--gold); text-decoration: none; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: linear-gradient(180deg, #0F1F3D 0%, #0A1628 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.hero-cross {
  font-size: 3.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}

.hero h1 span { color: var(--gold); }

.hero .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ── Feature cards ─────────────────────────────────────────────────── */
.features {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.features h2, .pricing h2, .section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 3rem;
}

.features h2 span, .pricing h2 span { color: var(--gold); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 2rem 1.75rem;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Pricing ───────────────────────────────────────────────────────── */
.pricing {
  padding: 5rem 2rem;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.12);
}

.pricing-card .badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: bold;
  line-height: 1.1;
}

.pricing-card .price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-card .price sub { font-size: 0.9rem; color: var(--text-secondary); }

.pricing-card ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-card ul li::before {
  content: '✓ ';
  color: var(--gold);
  font-weight: bold;
}

/* ── Verse example ─────────────────────────────────────────────────── */
.verse-example {
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.verse-example h2 { margin-bottom: 2rem; }

.verse-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  text-align: left;
  position: relative;
}

.verse-question {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.verse-question span {
  background: var(--navy-light);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  border-radius: 16px 4px 16px 16px;
  max-width: 80%;
}

.verse-quote {
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.25);
  line-height: 0.5;
  margin-bottom: 0.75rem;
}

.verse-text {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.verse-ref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.verse-ref .ref { color: var(--gold); font-size: 1rem; }

.verse-ref .translation {
  background: rgba(139, 105, 20, 0.25);
  color: var(--gold-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}

.verse-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  margin-bottom: 1rem;
}

.verse-reflection {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Generic section ───────────────────────────────────────────────── */
.section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section h2 { text-align: left; margin-bottom: 2rem; }

.section h3 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin: 2rem 0 0.5rem;
}

.section p, .section li {
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.section ul { padding-left: 1.5rem; margin-bottom: 1rem; }

.section a { color: var(--gold); }

.last-updated {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  display: block;
}

/* ── Contact form / support ────────────────────────────────────────── */
.contact-box {
  background: var(--navy-mid);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.contact-box p {
  margin-bottom: 1.25rem;
}

.contact-box .email {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: bold;
}

/* ── Footer ────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.85rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer a { color: var(--text-secondary); }
footer a:hover { color: var(--gold); text-decoration: none; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  nav ul { gap: 1.2rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .section { padding: 3rem 1.5rem; }
  .features, .pricing, .verse-example { padding: 3rem 1.5rem; }
}
