:root{
  --bg: #ffffff;
  --card: #ffffff;
  --accent: #00a6e6; /* bright blue accent to match screenshot */
  --muted: #6b7280;
  --text: #0b1b2b;
  --hero-overlay: rgba(3,7,18,0.55);
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Arial;background:var(--bg);color:var(--text);}
.wrap{max-width:1200px;margin:0 auto;padding:28px}
.site-header{background:#ffffff;border-bottom:1px solid rgba(15,23,42,0.06);position:sticky;top:0;z-index:40}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between}
.logo{margin:0;font-weight:800;color:var(--text)}
.home-link{color:var(--text);text-decoration:none}
.nav a{color:var(--text);margin-left:18px;text-decoration:none;font-weight:600}

.hero{padding:48px 0 72px;display:block;background:transparent}
.hero-img{display:block;width:100%;max-width:1400px;margin:0 auto;border-radius:6px;object-fit:cover}
.hero-inner{display:flex;flex-direction:column;gap:14px;max-width:1000px;margin:18px auto 0;text-align:center;padding:0 18px}
.hero h2{font-size:42px;margin:0;line-height:1.05;font-weight:800;color:var(--text);text-shadow:none}
.hero p{margin:0;color:var(--muted);font-size:18px}
.cta{display:inline-block;margin-top:18px;background:var(--accent);color:#fff;padding:14px 22px;border-radius:999px;text-decoration:none;box-shadow:0 8px 24px rgba(3,160,230,0.18)}

.cards{display:flex;gap:18px;margin-top:24px}
.card{background:var(--card);padding:22px;border-radius:10px;flex:1;color:var(--text);box-shadow:0 6px 18px rgba(12,20,30,0.06)}

.lead-form{margin-top:28px;background:#f8fafc;padding:22px;border-radius:10px}
.lead-form input,.lead-form textarea{width:100%;padding:12px;border-radius:6px;border:1px solid #e6eef3;background:#fff;color:var(--text)}
.lead-form .row{margin-bottom:12px;display:flex;gap:12px}
.lead-form .row input{flex:1}
.lead-form button{background:var(--accent);color:#fff;border:none;padding:10px 16px;border-radius:6px;cursor:pointer}
.muted{color:var(--muted)}
.status{margin-left:12px;color:var(--muted)}
.how{margin-top:28px;padding:20px;background:#ffffff;border-radius:8px}
.site-footer{padding:28px;text-align:center;color:var(--muted);margin-top:32px;background:transparent}

@media(max-width:920px){.hero h2{font-size:34px}.hero p{font-size:16px}}
@media(max-width:720px){.cards{flex-direction:column}.lead-form .row{flex-direction:column}}

/* Podcast grid */
.podcast-grid{display:flex;flex-wrap:wrap;gap:18px;margin-top:18px}
.podcast-item{width:360px}
.podcast-item h4{font-size:16px;margin:8px 0;color:var(--text)}

@media(max-width:920px){.podcast-item{width:100%}.podcast-grid{gap:12px}}
