:root {
  --navy: #183b63;
  --navy-dark: #102944;
  --gold: #caa43a;
  --gold-soft: #f4e7b7;
  --cream: #f8f5ee;
  --sand: #fbf9f4;
  --sky: #eef5fb;
  --text: #22313f;
  --muted: #627181;
  --white: #ffffff;
  --border: #dde6ee;
  --success: #1f7a4d;
  --shadow: 0 18px 40px rgba(16, 41, 68, 0.08);
  --shadow-soft: 0 10px 24px rgba(16, 41, 68, 0.06);
  --radius: 22px;
  --container: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 2rem), 880px); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  color: var(--navy-dark);
  font-weight: 800;
}
.brand-logo { width: 58px; height: 58px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small { color: var(--muted); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav { display: flex; align-items: center; gap: 1.2rem; }
.site-nav a { color: var(--navy-dark); font-weight: 700; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--navy-dark);
  font-size: 1.8rem;
  cursor: pointer;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, #fff7de 0%, transparent 28%), linear-gradient(135deg, #f7fbff 0%, #eef5fb 55%, #fffdf7 100%);
  padding: 5.4rem 0 4.2rem;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -120px -120px auto;
  width: 320px;
  height: 320px;
  background: rgba(202,164,58,.12);
  border-radius: 50%;
}
.hero-grid, .two-col, .three-col, .footer-grid, .cards-grid, .stat-grid, .step-grid, .stream-grid, .pillars-grid {
  display: grid;
  gap: 1.25rem;
}
.hero-grid { grid-template-columns: 1.15fr .85fr; align-items: center; }
.two-col { grid-template-columns: 1fr 1fr; align-items: start; }
.three-col, .cards-grid, .step-grid, .stream-grid, .pillars-grid, .stat-grid { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; align-items: start; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3 { line-height: 1.12; color: var(--navy-dark); margin-top: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-bottom: 1rem; }
h3 { font-size: 1.16rem; margin-bottom: .7rem; }
p { margin-top: 0; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 740px; }
.hero-actions, .hero-pills, .button-row, .pill-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-actions { margin: 1.9rem 0 1.2rem; }
.pill, .hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: .58rem .95rem;
  border-radius: 999px;
  background: rgba(24, 59, 99, 0.07);
  color: var(--navy-dark);
  border: 1px solid rgba(24, 59, 99, 0.1);
  font-weight: 700;
  font-size: .94rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); }
.btn-secondary { background: transparent; border-color: rgba(24,59,99,.16); color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy-dark); }
.btn-gold { background: var(--gold); color: #1f2430; }
.card, .hero-card, .step-card, .feature-card, .stat-card, .watch-card, .timeline-card, .quote-card, .cta-panel, .notice, .stream-box, .belief-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.card, .step-card, .feature-card, .stat-card, .watch-card, .timeline-card, .quote-card, .belief-card { padding: 1.45rem; }
.hero-card, .stream-box, .cta-panel { padding: 1.55rem; }
.hero-card { position: relative; overflow: hidden; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), #ecd67f);
}
.stream-box {
  background: linear-gradient(180deg, #fdfcf8 0%, #ffffff 100%);
}
.video-shell {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  border-radius: 20px;
  padding: 1.4rem;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.08);
}
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-soft { background: var(--sand); }
.section-dark {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #eef4fb;
}
.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark a { color: #eef4fb; }
.page-hero {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 4.2rem 0 2.2rem;
}
.page-main { min-height: 70vh; }
.clean-list { padding-left: 1.2rem; }
.clean-list li { margin-bottom: .45rem; }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.checklist li::before { content: "✓ "; color: var(--gold); font-weight: 900; }
.inline-meta {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border);
}
.meta-row strong { color: var(--navy-dark); }
.notice {
  background: #fff7df;
  color: #684f0a;
  border-color: #f0df9c;
  padding: 1rem 1.15rem;
}
.notice strong { color: #4f3a03; }
.centered { text-align: center; }
.quote {
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  color: var(--muted);
  font-style: italic;
}
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.cta-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.form-grid {
  display: grid;
  gap: 1rem;
}
label {
  display: grid;
  gap: .45rem;
  font-weight: 700;
  color: var(--navy-dark);
}
input, textarea, select {
  width: 100%;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid #cfd8e0;
  font: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(202,164,58,.35);
  border-color: var(--gold);
}
.form-note, .muted { color: var(--muted); font-size: .94rem; }
.stream-note {
  background: rgba(24,59,99,.06);
  border: 1px dashed rgba(24,59,99,.16);
  border-radius: 16px;
  padding: 1rem;
}
.site-footer {
  background: var(--navy-dark);
  color: #eaf1f7;
  padding: 2.6rem 0;
}
.site-footer h3, .site-footer p, .site-footer a { color: #eaf1f7; }
.footer-logo { width: 76px; margin-bottom: .85rem; }
.small { font-size: .92rem; }
@media (max-width: 980px) {
  .hero-grid, .two-col, .three-col, .footer-grid, .cards-grid, .stat-grid, .step-grid, .stream-grid, .pillars-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .hero-grid, .two-col, .three-col, .footer-grid, .cards-grid, .stat-grid, .step-grid, .stream-grid, .pillars-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .brand-text { font-size: .98rem; }
  .meta-row { flex-direction: column; }
}


.prayer-note {
  margin-top: 1rem;
}
.prayer-form code,
.stream-note code {
  background: rgba(255,255,255,.12);
  padding: .15rem .35rem;
  border-radius: 6px;
}
