/*
Theme Name: Sermon Prep Theme
Theme URI: http://localhost
Author: Tom
Description: Custom theme based on my previous Netlify site
Version: 1.0
Text Domain: sermonprep-theme
*/


    /* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --bg-base:       #0d0f14;
      --bg-surface:    #13161e;
      --bg-elevated:   #1a1e2a;
      --bg-card:       #1e2230;

```
  --neon:          #3b82f6;
  --neon-bright:   #60a5fa;
  --neon-glow:     rgba(59,130,246,.35);
  --neon-subtle:   rgba(59,130,246,.12);

  --accent-gold:   #f59e0b;
  --accent-green:  #10b981;
  --accent-purple: #8b5cf6;

  --text-primary:  #f0f4ff;
  --text-secondary:#94a3b8;
  --text-muted:    #4b5563;

  --border:        rgba(255,255,255,.07);
  --border-neon:   rgba(59,130,246,.4);

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font: 'Inter', system-ui, sans-serif;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── GRID NOISE TEXTURE OVERLAY ────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ─── AMBIENT GLOW ORBS ──────────────────────────────────────── */
.orb {
  position: fixed; border-radius: 50%; pointer-events: none; filter: blur(90px); z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,.15), transparent 70%);
  top: -200px; left: -200px; animation: drift1 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.1), transparent 70%);
  bottom: 10%; right: -150px; animation: drift2 25s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(80px, 60px); } }
@keyframes drift2 { to { transform: translate(-60px, -80px); } }

/* ─── GLASSMORPHISM NAV ──────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(13,15,20,.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--neon), var(--accent-purple));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; color: #fff;
  box-shadow: 0 0 16px var(--neon-glow);
  overflow: hidden;
}
.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--text-secondary);
  transition: all .2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--neon-subtle); }
.nav-cta {
  padding: 8px 20px; border-radius: var(--radius-sm);
  background: var(--neon); color: #fff;
  font-size: .875rem; font-weight: 600;
  box-shadow: 0 0 20px var(--neon-glow);
  transition: all .2s;
}
.nav-cta:hover { background: var(--neon-bright); box-shadow: 0 0 30px var(--neon-glow); transform: translateY(-1px); }
.nav-links .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-links .nav-menu a {
  display: block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all .2s;
}

.nav-links .nav-menu a:hover {
  color: var(--text-primary);
}

/* ─── SECTION WRAPPER ────────────────────────────────────────── */
.section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── BADGE ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 99px;
  border: 1px solid var(--border-neon);
  background: var(--neon-subtle);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--neon-bright);
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--neon-bright);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 var(--neon-glow); }
  50% { opacity: .6; box-shadow: 0 0 0 4px transparent; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(59,130,246,.12), transparent);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 800px; margin: 0 auto 24px;
  background: linear-gradient(160deg, #fff 40%, var(--neon-bright) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 1.2rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto 40px;
  font-weight: 400; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  background: var(--neon); color: #fff;
  font-size: .9rem; font-weight: 700;
  box-shadow: 0 0 30px var(--neon-glow), 0 4px 20px rgba(0,0,0,.3);
  transition: all .25s; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px var(--neon-glow), 0 8px 30px rgba(0,0,0,.4); background: var(--neon-bright); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-md);
  background: transparent; color: var(--text-primary);
  font-size: .9rem; font-weight: 600;
  border: 1px solid var(--border); cursor: pointer;
  transition: all .25s;
}
.btn-ghost:hover { background: var(--bg-elevated); border-color: var(--border-neon); }

/* ─── VIDEO PLACEHOLDER ──────────────────────────────────────── */
.video-wrap {
  max-width: 860px; margin: 64px auto 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px var(--border-neon), 0 40px 80px rgba(0,0,0,.6);
}
.video-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,.08) 0%, transparent 60%);
}
.play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(59,130,246,.15);
  border: 2px solid var(--border-neon);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s;
  backdrop-filter: blur(8px);
}
.play-btn:hover { background: rgba(59,130,246,.3); transform: scale(1.08); }
.play-btn svg { width: 28px; height: 28px; fill: var(--neon-bright); margin-left: 4px; }
.video-label { color: var(--text-secondary); font-size: .85rem; font-weight: 500; }

/* ─── STAT STRIP ─────────────────────────────────────────────── */
.stat-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--neon-bright), var(--accent-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--text-secondary); font-weight: 500; margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }

/* ─── SECTION HEADINGS ───────────────────────────────────────── */
.section-tag {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--neon-bright); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -.025em; line-height: 1.15;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 540px; margin-top: 16px; line-height: 1.7;
}
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px;
  margin-bottom: 48px;
}

/* ─── PROBLEM SECTION ────────────────────────────────────────── */
.problem-section { padding: 100px 0; }

/* ─── AUDIO SECTION ────────────────────────────────────────── */
.audio-player-wrap {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
  max-width: 480px; margin: 0 auto;
}
.audio-label {
  display: flex; align-items: center; gap: 12px;
}
.audio-icon { font-size: 1.6rem; }
.audio-title { font-weight: 700; font-size: .95rem; }
.audio-sub { font-size: .78rem; color: var(--text-secondary); margin-top: 2px; }
audio { accent-color: var(--neon); border-radius: 8px; 
}


/* ─── FEATURE CARDS ──────────────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--neon-subtle) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  border-radius: inherit;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-bright), transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--border-neon);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px var(--neon-glow);
}
.feature-card:hover::before, .feature-card:hover::after { opacity: 1; }

.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--neon-subtle); border: 1px solid var(--border-neon);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  transition: all .3s;
}
.feature-card:hover .card-icon { background: rgba(59,130,246,.25); box-shadow: 0 0 20px var(--neon-glow); }

.card-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.01em; }
.card-body { font-size: .875rem; color: var(--text-secondary); line-height: 1.65; }
.card-tag {
  display: inline-block; margin-bottom: 12px;
  padding: 3px 10px; border-radius: 99px;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  font-size: .7rem; font-weight: 600; color: #f87171; letter-spacing: .04em; text-transform: uppercase;
}

/* ─── SOLUTION SECTION ───────────────────────────────────────── */
.solution-section {
  padding: 100px 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(59,130,246,.07), transparent);
}

/* Wide feature card */
.card-wide {
  grid-column: span 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center;
}
.card-wide-visual {
  background: linear-gradient(135deg, rgba(59,130,246,.1), rgba(139,92,246,.1));
  border-radius: var(--radius-sm); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
}
.card-wide-visual .mock-steps {
  display: flex; flex-direction: column; gap: 10px; padding: 24px; width: 100%;
  max-height: 220px;
  overflow-y: auto;
}
.card-wide-visual .mock-steps::-webkit-scrollbar {
  width: 4px;
}
.card-wide-visual .mock-steps::-webkit-scrollbar-track {
  background: transparent;
}
.card-wide-visual .mock-steps::-webkit-scrollbar-thumb {
  background: var(--border-neon);
  border-radius: 99px;
}
.mock-step {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); padding: 10px 14px;
  border-radius: 8px; border: 1px solid var(--border);
  font-size: .78rem; color: var(--text-secondary);
  animation: slideIn .5s ease both;
}
.mock-step .step-num {
  min-width: 22px; height: 22px; border-radius: 6px;
  background: var(--neon-subtle); border: 1px solid var(--border-neon);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: var(--neon-bright);
}
.mock-step:nth-child(1) { animation-delay: .1s; }
.mock-step:nth-child(2) { animation-delay: .2s; }
.mock-step:nth-child(3) { animation-delay: .3s; }
@keyframes slideIn { from { opacity:0; transform:translateX(-10px); } to { opacity:1; transform:translateX(0); } }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all .3s;
}
.testimonial-card:hover { border-color: var(--border-neon); transform: translateY(-3px); }
.stars { color: var(--accent-gold); font-size: .9rem; margin-bottom: 16px; letter-spacing: 2px; }
.quote { font-size: .925rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.quote::before { content: '"'; color: var(--neon-bright); font-size: 1.5rem; font-style: normal; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.quote::after { content: '"'; color: var(--neon-bright); font-size: 1.5rem; font-style: normal; line-height: 0; vertical-align: -10px; margin-left: 4px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--accent-purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem;
  box-shadow: 0 0 12px var(--neon-glow);
}
.reviewer-name { font-weight: 700; font-size: .875rem; }
.reviewer-loc { font-size: .75rem; color: var(--text-secondary); }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 840px; margin: 0 auto; }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--border-neon);
  background: linear-gradient(160deg, rgba(59,130,246,.08) 0%, var(--bg-card) 50%);
  box-shadow: 0 0 40px var(--neon-glow), 0 20px 60px rgba(0,0,0,.4);
}
.pricing-card.featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--accent-purple));
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  padding: 4px 12px; border-radius: 99px;
  background: var(--neon); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 0 16px var(--neon-glow);
}
.plan-name { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-secondary); margin-bottom: 12px; }
.plan-price { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-secondary); vertical-align: middle; }
.plan-desc { font-size: .85rem; color: var(--text-secondary); margin: 12px 0 28px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.check { color: var(--accent-green); flex-shrink: 0; margin-top: 2px; font-size: .85rem; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  transition: all .3s;
}
.faq-card:hover { border-color: var(--border-neon); }
.faq-q { font-weight: 700; font-size: .9rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.faq-q::before { content: '?'; min-width: 22px; height: 22px; border-radius: 6px; background: var(--neon-subtle); border: 1px solid var(--border-neon); display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; color: var(--neon-bright); flex-shrink: 0; }
.faq-a { font-size: .85rem; color: var(--text-secondary); line-height: 1.65; padding-left: 32px; }

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 56px;
  display: flex; align-items: center; gap: 48px;
  max-width: 900px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-bright), transparent);
}
.about-avatar {
  min-width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--accent-purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900;
  box-shadow: 0 0 40px var(--neon-glow);
  border: 3px solid rgba(255,255,255,.15);
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.about-cred { font-size: .8rem; color: var(--neon-bright); font-weight: 600; margin-bottom: 16px; letter-spacing: .03em; }
.about-bio { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ─── EMAIL CTA ───────────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59,130,246,.08), transparent);
}
.cta-box {
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-box h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -.025em; margin-bottom: 16px; }
.cta-box p { color: var(--text-secondary); margin-bottom: 32px; }
.email-row {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto 12px;
}
.email-row input {
  flex: 1; padding: 14px 18px; border-radius: var(--radius-md);
  background: var(--bg-elevated); border: 1px solid var(--border);
  color: var(--text-primary); font-family: var(--font); font-size: .9rem;
  outline: none; transition: border-color .2s;
}
.email-row input:focus { border-color: var(--border-neon); box-shadow: 0 0 0 3px var(--neon-subtle); }
.email-row input::placeholder { color: var(--text-muted); }
.cta-fine { font-size: .75rem; color: var(--text-muted); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  text-align: center; color: var(--text-muted); font-size: .8rem;
}

/* ─── GUARANTEE STRIP ────────────────────────────────────────── */
.guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 12px 20px; border-radius: var(--radius-md);
  background: var(--bg-elevated); border: 1px solid var(--border);
  font-size: .8rem; color: var(--text-secondary);
}
.guarantee-icon { font-size: 1.2rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-card { flex-direction: column; text-align: center; padding: 36px 24px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 0 60px; }
  .email-row { flex-direction: column; }
}
