/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #faf7f2;
  --cream-dk:  #f0ebe1;
  --forest:    #2d6341;
  --forest-dk: #0d2015;
  --forest-md: #1f4a2e;
  --gold:      #d4a83a;
  --gold-dk:   #9a6f08;
  --dusk:      #6270be;
  --sage:      #3fa35f;
  --brick:     #b55a48;
  --text:      #1e293b;
  --text-md:   #475569;
  --text-lt:   #64748b;
  --border:    #e2d9cc;
  --radius:    14px;
  --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { line-height: 1.2; }
em { font-family: 'Lora', Georgia, serif; font-style: italic; color: var(--forest); }
p { line-height: 1.7; }
a { text-decoration: none; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; border-radius: 10px;
  transition: all .18s ease; cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
}
.btn-sm  { padding: 8px 18px;  font-size: 13px; }
.btn-lg  { padding: 14px 28px; font-size: 15px; }
.btn-xl  { padding: 18px 40px; font-size: 17px; }
.btn-primary {
  background: linear-gradient(135deg, var(--forest), var(--forest-md));
  color: #fff;
  box-shadow: 0 4px 20px rgba(45,99,65,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #3a7d52, var(--forest));
  box-shadow: 0 6px 28px rgba(45,99,65,.45);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--forest-dk);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212,168,58,.4);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,58,.5);
}

/* ── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .25s ease;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { height: 48px; filter: brightness(0) invert(1); }
.hero-logo { height: 120px; margin-bottom: 24px; display: block; margin-left: auto; margin-right: auto; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }
.nav--scrolled {
  background: rgba(13,32,21,.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-scene.svg') center/cover no-repeat,
              linear-gradient(160deg, #071410 0%, #0d2015 40%, #142b1c 70%, #1a3322 100%);
  background-color: #071410;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(7,20,10,.82) 0%, rgba(13,32,21,.75) 50%, rgba(20,43,28,.7) 100%);
}
.hero-content {
  position: relative; text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: rgba(212,168,58,.12);
  border: 1px solid rgba(212,168,58,.25);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800; color: #fff;
  line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-headline em { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.7);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-proof {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.25);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Problem ────────────────────────────────────────────────────── */
.problem {
  padding: 100px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.problem-text .label { color: var(--brick); margin-bottom: 16px; }
.problem-text h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  margin-bottom: 20px; line-height: 1.2;
}
.problem-text p { color: var(--text-md); margin-bottom: 16px; font-size: 16px; }
.problem-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pain-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.pain-icon { font-size: 24px; margin-bottom: 10px; }
.pain-text { font-size: 14px; color: var(--text-md); line-height: 1.5; font-weight: 500; }

/* ── Shared Section Styles ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 12px; display: block;
}
.section-header h2 {
  font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--text-md); max-width: 520px; margin: 0 auto; }

/* ── Features ───────────────────────────────────────────────────── */
.features { padding: 110px 0; background: var(--cream); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 22px;
}
.feature-card--large { grid-column: span 1; grid-row: span 2; }

.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}
.feature-card--large {
  background: linear-gradient(160deg, #0d2015 0%, #142b1c 100%);
  border-color: rgba(45,99,65,.4);
  color: #fff;
}
.feature-card--large h3 { color: #fff; }
.feature-card--large p { color: rgba(255,255,255,.65); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-md); line-height: 1.65; }
.feature-card--large p { color: rgba(255,255,255,.6); }

.feature-list {
  list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px;
}
.feature-list li {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 8px;
}
.feature-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── Voice Callout ──────────────────────────────────────────────── */
.voice-callout {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d2015, #142b1c);
}
.voice-inner {
  display: flex; align-items: center; gap: 40px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 48px;
}
.voice-icon {
  width: 72px; height: 72px; border-radius: 20px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-md));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(45,99,65,.2);
  animation: pulse-ring 2.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 8px rgba(45,99,65,.2); }
  50% { box-shadow: 0 0 0 16px rgba(45,99,65,.08); }
}
.voice-text { flex: 1; }
.voice-text h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.voice-text p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Who It's For ───────────────────────────────────────────────── */
.who { padding: 110px 0; background: #fff; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.who-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: transform .2s, box-shadow .2s;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.who-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.who-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.who-card p { font-size: 14px; color: var(--text-md); line-height: 1.6; }

/* ── How It Works ───────────────────────────────────────────────── */
.how { padding: 110px 0; background: var(--cream); }
.steps {
  display: flex; align-items: flex-start;
  gap: 0; max-width: 840px; margin: 0 auto;
}
.step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 0 24px;
}
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-md));
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(45,99,65,.35);
}
.step-content h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-md); line-height: 1.65; }
.step-connector {
  width: 60px; flex-shrink: 0; margin-top: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--forest), rgba(45,99,65,.2));
}

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, #0d2015, #142b1c);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 36px;
}
.testimonial p {
  font-family: 'Lora', Georgia, serif; font-style: italic;
  font-size: 16px; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 20px;
}
.testimonial cite {
  font-size: 13px; font-style: normal;
  color: rgba(255,255,255,.35); font-weight: 500;
}

/* ── CTA ────────────────────────────────────────────────────────── */
.cta {
  position: relative; padding: 120px 0;
  text-align: center; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d2015 0%, #0f2a1a 60%, #071410 100%);
}
.cta-content { position: relative; }
.cta-logo { height: 100px; margin-bottom: 32px; filter: brightness(0) invert(1); }
.cta h2 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 800;
  margin-bottom: 14px; color: #fff;
}
.cta p { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 18px; margin-bottom: 0; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--forest-dk);
  padding: 48px 0;
}
.footer-inner {
  display: flex; align-items: center; flex-direction: column;
  gap: 20px; text-align: center;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.35); margin-top: 6px; }
.footer-logo { height: 36px; filter: brightness(0) invert(1); }
.footer-links {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.4);
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }

/* ── Scroll Animations ──────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .voice-inner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--forest), rgba(45,99,65,.2)); margin: 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }
  .who-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .pain-card { grid-column: span 1; }
  .problem-cards { grid-template-columns: 1fr; }
}

/* ── App Preview / iPhone Mockups ───────────────────────────────── */
.preview {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f8f6f2 0%, #eef3ef 100%);
  overflow: hidden;
}

.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-top: 60px;
}

.phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.phone-wrap--left  { transform: rotate(-4deg) translateY(24px); }
.phone-wrap--right { transform: rotate(4deg) translateY(24px); }
.phone-wrap--center { z-index: 2; }

.phone-caption {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: .7;
}

/* iPhone frame */
.iphone {
  width: 200px;
  height: 408px;
  background: #111;
  border-radius: 38px;
  border: 6px solid #1c1c1e;
  box-shadow:
    0 0 0 1px #3a3a3c,
    0 30px 70px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
}
.iphone--hero {
  width: 224px;
  height: 460px;
  border-radius: 44px;
}

.iphone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #111;
  border-radius: 12px;
  z-index: 10;
}

.iphone-screen {
  position: absolute;
  inset: 0;
  background: #f8f7f4;
  border-radius: 32px;
  overflow: hidden;
  padding: 36px 12px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Screen: Dashboard */
.screen-dashboard { background: #f1f5f2; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px; }
.app-greeting { font-weight: 700; font-size: 11px; color: #1e3a28; }
.app-date { font-size: 9px; color: #64748b; }

.app-stats-row { display: flex; gap: 5px; margin-bottom: 2px; }
.app-stat-card { flex: 1; border-radius: 8px; padding: 7px 5px; text-align: center; }
.ac-green  { background: #d1fae5; }
.ac-purple { background: #ede9fe; }
.ac-gold   { background: #fef3c7; }
.ac-num { display: block; font-size: 16px; font-weight: 800; line-height: 1; }
.ac-green .ac-num  { color: #065f46; }
.ac-purple .ac-num { color: #4c1d95; }
.ac-gold .ac-num   { color: #78350f; }
.ac-lbl { display: block; font-size: 8px; color: #64748b; margin-top: 2px; }

.app-sec-title { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #64748b; margin-top: 4px; }

.app-person-row { display: flex; align-items: center; gap: 7px; background: #fff; border-radius: 8px; padding: 6px 8px; }
.app-av { width: 24px; height: 24px; border-radius: 50%; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.av-g    { background: #d1fae5; color: #065f46; }
.av-p    { background: #ede9fe; color: #4c1d95; }
.av-b    { background: #dbeafe; color: #1e40af; }
.av-gold { background: #fef3c7; color: #78350f; }
.av-teal { background: #ccfbf1; color: #134e4a; }
.app-pi { flex: 1; display: flex; flex-direction: column; }
.app-pi b { font-size: 9px; font-weight: 600; }
.app-pi span { font-size: 8px; color: #64748b; }
.app-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #ef4444; }
.dot-y { background: #f59e0b; }

.app-task-row { display: flex; align-items: center; gap: 6px; padding: 4px 8px; background: #fff; border-radius: 7px; font-size: 8.5px; }
.app-chk { width: 12px; height: 12px; border-radius: 3px; border: 1.5px solid #d1d5db; flex-shrink: 0; }
.chk-done { background: #2d6341; border-color: #2d6341; color: #fff; font-size: 8px; display: flex; align-items: center; justify-content: center; border: none; }
.app-task-done { opacity: .5; }
.app-task-done span:last-child { text-decoration: line-through; }

/* Screen: People */
.screen-people { background: #f8f7f4; }
.app-search-bar { display: flex; align-items: center; gap: 6px; background: #e2e8f0; border-radius: 8px; padding: 6px 10px; font-size: 9px; color: #94a3b8; margin-bottom: 2px; }
.app-tab-row { display: flex; gap: 4px; }
.app-t { padding: 3px 7px; border-radius: 20px; font-size: 8px; font-weight: 600; background: #e2e8f0; color: #64748b; cursor: pointer; }
.app-t.active { background: #2d6341; color: #fff; }

.app-pcard { display: flex; align-items: flex-start; gap: 8px; background: #fff; border-radius: 10px; padding: 8px; }
.app-pf { display: flex; flex-direction: column; gap: 2px; }
.app-pf b { font-size: 9.5px; font-weight: 600; }
.app-pf > span { font-size: 8px; color: #64748b; }
.app-tags-row { display: flex; gap: 3px; margin-top: 2px; }
.atag { padding: 1px 5px; border-radius: 20px; font-size: 7.5px; font-weight: 600; }
.atag-r    { background: #fee2e2; color: #991b1b; }
.atag-g    { background: #d1fae5; color: #065f46; }
.atag-p    { background: #ede9fe; color: #4c1d95; }
.atag-gold { background: #fef3c7; color: #78350f; }
.atag-gray { background: #f1f5f9; color: #475569; }

/* Screen: Prayer */
.screen-prayer { background: #f5f3ff; }
.prayer-hdr { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.ph-active { font-size: 10px; font-weight: 700; color: #4c1d95; }
.ph-ans { font-size: 8.5px; color: #059669; font-weight: 600; }

.prayer-card-item { display: flex; gap: 7px; background: #fff; border-radius: 10px; padding: 8px; }
.pci-bar { width: 3px; border-radius: 4px; flex-shrink: 0; min-height: 30px; }
.pci-high { background: #ef4444; }
.pci-med  { background: #f59e0b; }
.pci-ans  { background: #10b981; }
.pci-body { display: flex; flex-direction: column; gap: 2px; }
.pci-body b { font-size: 9px; font-weight: 600; }
.pci-body > span { font-size: 7.5px; color: #64748b; }
.pci-note { font-size: 7.5px; color: #6366f1; font-style: italic; margin: 2px 0 0; }
.pci-answered { opacity: .65; }
.pci-ans-badge { background: #d1fae5; color: #065f46; font-size: 7.5px; font-weight: 600; padding: 1px 5px; border-radius: 20px; }
.prayer-add-btn { margin-top: 4px; text-align: center; padding: 7px; background: #4c1d95; color: #fff; border-radius: 8px; font-size: 9px; font-weight: 600; }

/* ── Position Statement ──────────────────────────────────────────── */
.position-statement {
  padding: 48px 0;
  background: var(--cream-dk);
  border-bottom: 1px solid var(--border);
}
.position-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.position-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: block;
}
.position-inner p {
  font-size: 18px;
  color: var(--text-md);
  line-height: 1.7;
}
.position-inner strong {
  color: var(--text);
  font-weight: 700;
}

/* ── Worship Pastoral Section ────────────────────────────────────── */
.pastoral {
  padding: 110px 0;
  background: var(--cream);
}
.pastoral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.pastoral-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
.pastoral-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.07);
}
.pastoral-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream-dk);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pastoral-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}
.pastoral-content p {
  font-size: 13.5px;
  color: var(--text-md);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pastoral-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pastoral-grid { grid-template-columns: 1fr; }
}

/* ── Worship Leader Section ──────────────────────────────────────── */
.worship {
  padding: 100px 0;
  background: #1a2e22;
  position: relative;
  overflow: hidden;
}
.worship::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(45,99,65,.5) 0%, transparent 70%);
  pointer-events: none;
}
.worship .section-header h2 { color: #f8f6f2; }
.worship .section-header h2 em { color: #d4a83a; }
.worship .label { color: rgba(212,168,58,.7); }
.worship .section-sub { color: rgba(248,246,242,.6); }

.worship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.worship-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background .2s, border-color .2s, transform .2s;
}
.worship-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(212,168,58,.25);
  transform: translateY(-3px);
}
.worship-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.worship-card h4 {
  font-size: 16px; font-weight: 700;
  color: #f1ece2;
  margin-bottom: 8px;
}
.worship-card .wc-pain {
  font-size: 13px;
  color: rgba(248,246,242,.45);
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 2px solid rgba(212,168,58,.3);
}
.worship-card p {
  font-size: 14px;
  color: rgba(248,246,242,.65);
  line-height: 1.6;
}

.worship-card--wide {
  grid-column: span 2;
  background: rgba(212,168,58,.08);
  border-color: rgba(212,168,58,.2);
  display: flex;
  gap: 32px;
  align-items: center;
}
.worship-card--wide .worship-card-icon { flex-shrink: 0; width: 56px; height: 56px; }
.worship-cta {
  margin-top: 48px;
  text-align: center;
}
.worship-cta p { color: rgba(248,246,242,.5); font-size: 14px; margin-top: 12px; }

/* ── Worship Arts Spotlight ──────────────────────────────────────── */
.worship-spotlight {
  padding: 110px 0;
  background: linear-gradient(160deg, #071410 0%, #0d2015 40%, #132519 80%, #0a1e10 100%);
  position: relative;
  overflow: hidden;
}
.worship-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,168,58,.12) 0%, transparent 65%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  margin-top: 0;
}

.spotlight-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 32px 26px;
  transition: transform .2s, border-color .2s, background .2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.spotlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,58,.2);
  background: rgba(255,255,255,.06);
}

.spotlight-card--featured {
  background: rgba(212,168,58,.06);
  border-color: rgba(212,168,58,.22);
  position: relative;
}
.spotlight-card--featured:hover {
  border-color: rgba(212,168,58,.38);
  background: rgba(212,168,58,.09);
}

.spotlight-featured-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,168,58,.12);
  border: 1px solid rgba(212,168,58,.25);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}

.spotlight-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(45,99,65,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

.spotlight-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1ece2;
  margin-bottom: 10px;
}
.spotlight-card p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 18px;
}

.spotlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}
.spotlight-list li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Spotlight mockups */
.spotlight-mock {
  margin-top: auto;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px;
  font-size: 11px;
}

/* Set list mock */
.sm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.sm-title { font-size: 12px; font-weight: 700; color: #f1ece2; }
.sm-badge { font-size: 9px; font-weight: 600; padding: 2px 7px; border-radius: 20px; }
.sm-badge.confirmed { background: rgba(52,211,153,.15); color: #34d399; }
.sm-song { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.sm-song:last-of-type { border: none; }
.sm-num { width: 14px; font-size: 9px; color: rgba(255,255,255,.25); font-family: monospace; }
.sm-name { flex: 1; font-size: 11px; font-weight: 500; color: rgba(255,255,255,.8); }
.sm-key { font-size: 10px; font-weight: 700; color: var(--gold); }
.sm-note { font-size: 9px; color: rgba(255,255,255,.3); margin-top: 8px; font-style: italic; }

/* Roster mock */
.rm-member { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.rm-member:last-child { border: none; }
.rm-av { width: 24px; height: 24px; border-radius: 50%; font-size: 8px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rm-info { flex: 1; display: flex; flex-direction: column; }
.rm-info b { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.85); }
.rm-info span { font-size: 8.5px; color: rgba(255,255,255,.35); }
.rm-role-badge { font-size: 8px; font-weight: 600; padding: 2px 6px; border-radius: 20px; background: rgba(212,168,58,.15); color: var(--gold); white-space: nowrap; }

/* Library mock */
.lm-song { display: flex; align-items: center; gap: 7px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.lm-song:last-child { border: none; }
.lm-icon { font-size: 12px; color: rgba(212,168,58,.5); width: 16px; text-align: center; flex-shrink: 0; }
.lm-info { flex: 1; display: flex; flex-direction: column; }
.lm-info b { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.8); }
.lm-info span { font-size: 8px; color: rgba(255,255,255,.3); }
.lm-key { font-size: 10px; font-weight: 700; color: var(--gold); width: 20px; text-align: center; }
.lm-bpm { font-size: 8.5px; color: rgba(255,255,255,.25); white-space: nowrap; }

/* Screen: Set List (iPhone mockup) */
.screen-setlist { background: linear-gradient(160deg, #0a1e10, #132519); }
.sl-service-card { background: rgba(212,168,58,.1); border: 1px solid rgba(212,168,58,.2); border-radius: 8px; padding: 7px 10px; margin: 2px 0; }
.sl-title { font-size: 11px; font-weight: 700; color: #f1ece2; }
.sl-meta { font-size: 8.5px; color: rgba(255,255,255,.4); margin-top: 2px; }
.sl-confirmed { color: #34d399; font-weight: 600; }
.sl-song-row { display: flex; align-items: center; gap: 6px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.sl-num { width: 12px; font-size: 8px; color: rgba(255,255,255,.25); font-family: monospace; }
.sl-name { flex: 1; font-size: 9px; font-weight: 500; color: rgba(255,255,255,.8); }
.sl-key { font-size: 9px; font-weight: 700; color: #d4a83a; }
.sl-note-row { font-size: 8px; color: rgba(255,255,255,.3); font-style: italic; padding-top: 4px; }

/* Screen: Worship Overview (iPhone mockup) */
.screen-worship { background: linear-gradient(160deg, #0a1e10, #132519); }
.wu-stats-row { display: flex; gap: 5px; margin: 4px 0 6px; }
.wu-stat { flex: 1; background: rgba(212,168,58,.08); border: 1px solid rgba(212,168,58,.15); border-radius: 8px; padding: 6px 4px; text-align: center; }
.wu-num { display: block; font-size: 14px; font-weight: 800; color: #d4a83a; line-height: 1; }
.wu-lbl { display: block; font-size: 7.5px; color: rgba(255,255,255,.4); margin-top: 2px; }
.wu-role-pill { font-size: 7.5px; font-weight: 600; padding: 1.5px 5px; border-radius: 20px; background: rgba(212,168,58,.12); color: #d4a83a; white-space: nowrap; }
.wu-song-pill { background: rgba(255,255,255,.06); border-radius: 6px; padding: 4px 8px; font-size: 8.5px; font-weight: 500; color: rgba(255,255,255,.7); display: flex; justify-content: space-between; }
.wu-song-pill span { font-weight: 700; color: #d4a83a; }
.screen-worship .app-person-row { background: rgba(255,255,255,.05); }
.screen-worship .app-pi b { color: rgba(255,255,255,.85); }
.screen-worship .app-pi span { color: rgba(255,255,255,.35); }
.screen-worship .app-greeting { color: #d4a83a; }

@media (max-width: 1000px) {
  .spotlight-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .spotlight-card:last-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  .phones-row { gap: 12px; }
  .phone-wrap--left  { transform: rotate(-3deg) translateY(16px); }
  .phone-wrap--right { transform: rotate(3deg) translateY(16px); }
  .worship-grid { grid-template-columns: 1fr; }
  .worship-card--wide { grid-column: span 1; flex-direction: column; }
}
@media (max-width: 700px) {
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-card:last-child { grid-column: span 1; }
}
@media (max-width: 640px) {
  .phones-row { flex-direction: column; align-items: center; gap: 32px; }
  .phone-wrap--left, .phone-wrap--right { transform: none; }
  .iphone { width: 220px; height: 450px; }
  .iphone--hero { width: 220px; height: 450px; }
}
