/* P12 STUNDE NULL — Podcast Landing Page */

@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/space-grotesk-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-light.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-semibold.woff2') format('woff2');
}

:root {
  --bg: #0b0e1a;
  --bg-card: #111627;
  --bg-card-hover: #181e33;
  --card: #111627;
  --border: rgba(26,92,255,.15);
  --fg: #e8eaf0;
  --fg2: #9098b0;
  --fg3: #5a6380;
  --primary: #FFE500;
  --primary-dim: rgba(26,92,255,.1);
  --primary-border: rgba(26,92,255,.3);
  --primary-glow: rgba(26,92,255,.06);
  --accent: #1A5CFF;
  --accent-dim: rgba(26,92,255,.12);
  --radius: 12px;
  --radius-sm: 8px;
}

[data-theme="light"] {
  --bg: #f5f7fb;
  --bg-card: #eaeff6;
  --bg-card-hover: #dfe5f0;
  --card: #eaeff6;
  --border: rgba(26,92,255,.12);
  --fg: #111827;
  --fg2: #4b5563;
  --fg3: #6b7280;
  --primary: #1A5CFF;
  --primary-dim: rgba(26,92,255,.08);
  --primary-border: rgba(26,92,255,.2);
  --primary-glow: rgba(26,92,255,.05);
  --accent: #CC9900;
  --accent-dim: rgba(204,153,0,.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }
h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 500; letter-spacing: .02em; line-height: 1.3; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: var(--bg); padding: .5rem 1rem;
  border-radius: var(--radius); z-index: 100;
}
.skip-link:focus { top: 1rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
html, body { overflow-x: hidden; }

/* LANG SWITCH */
.lang-switch {
  display: flex; gap: 2px;
  border: 1px solid var(--primary-dim); border-radius: 4px; overflow: hidden;
}
.lang-btn {
  padding: .25rem .5rem; font-size: .65rem; letter-spacing: .05em;
  color: var(--fg3); text-decoration: none; transition: all .2s;
  font-weight: 500;
}
.lang-btn:hover { color: var(--primary); opacity: 1; }
.lang-btn.lang-active {
  background: var(--primary-dim); color: var(--primary);
}

/* THEME TOGGLE */
.theme-toggle {
  background: none; border: 1px solid var(--primary-border); color: var(--fg2);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .3s, color .3s; flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.95); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--primary-dim);
  padding: .6rem 0;
}
[data-theme="light"] nav { background: rgba(245,247,251,.95); }
nav .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: 0 1.5rem;
}
nav .logo {
  font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: .9rem; color: var(--primary);
  letter-spacing: .04em; display: flex; align-items: center; gap: .4rem;
  white-space: nowrap; flex-shrink: 0;
}
.logo-img {
  width: 26px; height: 26px; border-radius: 4px;
  border: 1px solid var(--primary-border); flex-shrink: 0;
}
nav .nav-links {
  display: flex; gap: .9rem; align-items: center; flex-shrink: 0;
}
nav .nav-actions {
  display: flex; gap: .35rem; align-items: center; flex-shrink: 0;
}
nav a { color: var(--fg2); font-size: .78rem; font-weight: 400; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--primary); opacity: 1; }

/* BURGER */
.burger {
  display: none; flex-direction: column; gap: 4px; cursor: pointer;
  background: none; border: 1px solid var(--primary-dim); border-radius: 6px;
  padding: 7px 6px; min-width: 34px; min-height: 34px;
  align-items: center; justify-content: center;
}
.burger span {
  display: block; width: 16px; height: 1.5px; background: var(--fg2);
  transition: all .3s;
}
.burger:hover span { background: var(--primary); }

/* MOBILE MENU */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(10,10,10,.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  padding: 2rem;
}
[data-theme="light"] .mobile-menu { background: rgba(245,247,251,.97); }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--fg); text-decoration: none; font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.3rem; font-weight: 500; letter-spacing: .04em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary); opacity: 1; }
.mobile-menu-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; color: var(--fg2);
  font-size: 1.5rem; cursor: pointer; padding: .5rem;
  line-height: 1;
}
.mobile-menu-close:hover { color: var(--primary); }
.mobile-menu-footer { margin-top: 1rem; }

/* RESPONSIVE NAV BREAKPOINTS */
@media (max-width: 900px) {
  nav .nav-links { display: none; }
  nav .nav-actions .lang-switch { display: none; }
  .burger { display: flex; }
}

/* BREADCRUMB */
.breadcrumb { padding: 1rem 0; }
.breadcrumb ol { list-style: none; display: flex; gap: .5rem; font-size: .8rem; color: var(--fg3); }
.breadcrumb li::after { content: '›'; margin-left: .5rem; }
.breadcrumb li:last-child::after { content: ''; }
.breadcrumb a { color: var(--fg2); }
.breadcrumb [aria-current] { color: var(--primary); }

/* HERO */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  border-bottom: 1px solid var(--primary-dim);
  position: relative;
  overflow: hidden;
}
.hero > *:not(canvas) { position: relative; z-index: 2; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--bg)); pointer-events: none; z-index: 2;
}
#heroCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; display: block; }

/* SVG ICONS */
.icon-svg { display: inline-flex; align-items: center; justify-content: center; }
.icon-svg svg { width: 24px; height: 24px; color: var(--primary); }
.hero-logo {
  width: 160px; height: 160px;
  border-radius: 12px;
  border: 3px solid var(--primary-border);
  box-shadow: 0 0 30px rgba(255, 229, 0, .15);
  margin-bottom: 1.5rem;
  object-fit: cover;
}
.hero h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: .03em;
}
.hero .tagline { font-size: 1.1rem; color: var(--fg2); font-weight: 300; margin-bottom: 2.5rem; }

/* STATS BAR */
.stats-bar {
  display: flex; justify-content: center; gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 1.25rem 0;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.4rem; color: var(--primary); }
.stat-label { font-size: .75rem; color: var(--fg2); text-transform: uppercase; letter-spacing: 1px; }

/* HOSTS */
.hosts-section {
  display: flex; flex-direction: row; justify-content: center; align-items: flex-start; gap: 2rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.host { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-decoration: none; flex: 0 0 auto; min-width: 140px; max-width: 180px; }
.host-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-dim);
  border: 2px solid var(--primary-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: .8rem; color: var(--primary);
  flex-shrink: 0;
}
.host-info { text-align: center; }
.host-info strong { display: block; font-size: .9rem; color: var(--fg); }
.host-info span { font-size: .75rem; color: var(--fg2); }

.spotify-direct-link { text-align: center; margin-top: .5rem; font-size: .85rem; }
.spotify-direct-link a { color: var(--primary); text-decoration: none; }
.spotify-direct-link a:hover { text-decoration: underline; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-grid {
  display: flex; gap: .4rem .8rem; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 1rem; font-size: .75rem;
}
.platform-grid a {
  color: var(--fg3); text-decoration: none; transition: color .2s;
  display: flex; align-items: center; gap: .3rem;
}
.platform-grid a:hover { color: var(--primary); }
.platform-grid a svg { opacity: .6; }
.platform-grid a:hover svg { opacity: 1; }
.episode-platforms {
  display: flex; gap: .5rem; justify-content: center; align-items: center;
  flex-wrap: wrap; margin: .75rem 0 1.5rem; font-size: .85rem;
}
.episode-platforms a { color: var(--fg2); text-decoration: none; transition: color .2s; }
.episode-platforms a:hover { color: var(--primary); }
.episode-platforms .sep { color: var(--fg3); font-size: .7rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem; border-radius: 50px; font-size: .9rem; font-weight: 600;
  transition: transform .2s, background .2s, box-shadow .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: var(--bg); }
.btn-primary:hover { transform: translateY(-2px); opacity: 1; box-shadow: 0 4px 20px rgba(26,92,255,.3); }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary-border); }
.btn-outline:hover { background: var(--primary-dim); transform: translateY(-2px); opacity: 1; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* LATEST EPISODE */
.latest { padding: 4rem 0; border-bottom: 1px solid var(--primary-dim); }
.latest h2 { font-size: 1.3rem; color: var(--fg2); margin-bottom: 2rem; text-align: center; text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter', sans-serif; font-weight: 600; }
.latest-card {
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.latest-card h3 { font-size: 1.5rem; color: var(--fg); margin-bottom: .75rem; }
.latest-card h3 a { color: var(--fg); }
.latest-card h3 a:hover { color: var(--primary); }

/* EP NUMBER + DATE */
.ep-number-date { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; flex-wrap: wrap; }
.ep-number {
  font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: .8rem; color: var(--primary);
  background: var(--primary-dim); padding: .15rem .6rem; border-radius: 4px;
  font-weight: 500;
}
.ep-date { font-size: .8rem; color: var(--fg2); }
.ep-guest-line { font-size: .9rem; color: var(--fg2); margin-bottom: 1rem; }

/* SPOTIFY EMBED */
.spotify-embed {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.spotify-embed iframe { border-radius: var(--radius); }

/* TAKEAWAYS */
.takeaways {
  background: rgba(26,92,255,.05);
  border: 1px solid var(--primary-dim);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.takeaways h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 600;
}
.takeaways ul { list-style: none; }
.takeaways li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: .75rem;
  font-size: .88rem;
  color: var(--fg2);
  line-height: 1.6;
}
.takeaways li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--primary);
}

.ep-card-footer { margin-top: 1.25rem; }

/* TAGS */
.tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .75rem; }
.tag {
  font-size: .65rem; padding: .2rem .6rem; border-radius: 50px;
  background: var(--primary-dim); color: var(--primary); border: 1px solid rgba(26,92,255,.2);
  letter-spacing: .5px; text-transform: uppercase; font-weight: 500;
  transition: background .2s;
}
.tag:hover { background: var(--primary-border); opacity: 1; }
.tag-more { background: transparent; border-style: dashed; }

/* EPISODES */
.episodes { padding: 4rem 0; }
.episodes h2 { font-size: 1.3rem; color: var(--fg2); margin-bottom: 1.5rem; text-align: center; text-transform: uppercase; letter-spacing: 2px; font-family: 'Inter', sans-serif; font-weight: 600; }

.filter-bar {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-bar input, .filter-bar select {
  background: var(--bg-card); color: var(--fg); border: 1px solid var(--primary-dim);
  border-radius: var(--radius-sm); padding: .6rem 1rem; font-size: .85rem;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color .2s;
}
.filter-bar input:focus, .filter-bar select:focus { border-color: var(--primary); }
.filter-bar input { min-width: 240px; }
.filter-bar select { cursor: pointer; }

.ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.ep-card {
  background: var(--bg-card);
  border: 1px solid var(--primary-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s, border-color .2s, background .2s;
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--fg);
}
.ep-card:hover { transform: translateY(-3px); border-color: var(--primary-border); background: var(--bg-card-hover); opacity: 1; }
.ep-card h3 { font-size: .95rem; color: var(--fg); margin-bottom: .5rem; }
.ep-card .ep-meta { display: flex; gap: .5rem; font-size: .75rem; color: var(--fg2); margin-bottom: .75rem; align-items: center; flex-wrap: wrap; }
.ep-card .ep-excerpt { font-size: .8rem; color: var(--fg3); font-weight: 300; line-height: 1.6; flex: 1; }

/* Featured cards (first 3) */
.ep-card-featured { border-color: var(--primary-border); }
.ep-card-featured h3 { font-size: 1.05rem; }

.ep-type-badge {
  font-size: .6rem; padding: .15rem .5rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .5px; font-weight: 600;
  display: inline-block;
}
.ep-type-badge.solo { background: rgba(52,152,219,.12); color: #3498db; }
.ep-type-badge.interview { background: rgba(39,174,96,.12); color: #27ae60; }
[data-theme="light"] .ep-type-badge.solo { background: rgba(52,152,219,.1); color: #2980b9; }
[data-theme="light"] .ep-type-badge.interview { background: rgba(39,174,96,.1); color: #1e8449; }

/* EPISODE DETAIL */
.ep-detail { padding: 3rem 0 4rem; max-width: 800px; margin: 0 auto; }
.ep-detail h1 { font-size: 2rem; color: var(--fg); margin-bottom: 1.5rem; }

.guest-info {
  background: var(--bg-card); border: 1px solid var(--primary-border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem;
}
.guest-info-header { display: flex; align-items: center; gap: .75rem; }
.guest-info h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0; font-family: 'Inter', sans-serif; font-weight: 600; }
.guest-info p { font-size: .85rem; color: var(--fg2); margin-top: .15rem; }

.ep-summary-full { margin: 2rem 0; }
.ep-summary-full h4 {
  font-family: 'Inter', sans-serif; font-size: .8rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--fg2); margin-bottom: 1rem; font-weight: 600;
}
.ep-summary-text {
  font-size: .92rem; color: var(--fg2); font-weight: 300; line-height: 1.8;
  white-space: pre-line;
}

.related-episodes { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--primary-dim); }
.related-episodes h2 { font-size: 1.1rem; color: var(--primary); margin-bottom: 1.5rem; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* GUESTS */
.guests { padding: 3rem 0 4rem; }
.guests h1 { font-size: 2rem; color: var(--primary); margin-bottom: .5rem; text-align: center; }
.guests .subtitle, .theme-page .subtitle { text-align: center; color: var(--fg2); font-size: .95rem; margin-bottom: 3rem; }
.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.guest-card {
  background: var(--bg-card);
  border: 1px solid var(--primary-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s, border-color .2s;
}
.guest-card:hover { transform: translateY(-3px); border-color: var(--primary-border); }
.guest-card-header { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.guest-card h3 { font-size: 1rem; color: var(--fg); margin-bottom: 0; font-family: 'Inter', sans-serif; font-weight: 600; }
.guest-title { font-size: .8rem; color: var(--primary); margin-top: .15rem; }
.guest-org { font-size: .8rem; color: var(--fg2); }
.guest-link { font-size: .8rem; display: inline-block; margin-top: .75rem; }

/* THEME PAGE */
.theme-page { padding: 3rem 0 4rem; }
.theme-page h1 { font-size: 2rem; color: var(--primary); margin-bottom: .5rem; text-align: center; }

/* TOPIC GRAPH */
.graph-container {
  position: relative;
  width: 100%;
  margin: 1.5rem 0 2rem;
  border: 1px solid var(--primary-dim);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}
.graph-container canvas {
  display: block;
  width: 100%;
  cursor: grab;
}
.graph-hint {
  position: absolute; bottom: .75rem; left: 0; right: 0;
  text-align: center; font-size: .7rem; color: var(--fg3);
  letter-spacing: .5px; pointer-events: none;
}

/* TAG CLOUD */
.tag-cloud {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem; padding: 2rem 0 3rem;
  max-width: 900px; margin: 0 auto;
}
.cloud-tag {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem .9rem; border-radius: 50px;
  background: var(--primary-dim); border: 1px solid var(--primary-border);
  color: var(--primary); text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap; line-height: 1;
}
.cloud-tag:hover { transform: scale(1.08); background: var(--primary-border); box-shadow: 0 2px 12px var(--primary-glow); opacity: 1; }
.cloud-count {
  font-size: .6em; background: rgba(26,92,255,.2); padding: .1em .4em;
  border-radius: 50px; min-width: 1.4em; text-align: center;
}
.cloud-size-sm { font-size: .72rem; opacity: .7; }
.cloud-size-md { font-size: .85rem; font-weight: 500; }
.cloud-size-lg { font-size: 1.05rem; font-weight: 600; }
.cloud-size-xl { font-size: 1.3rem; font-weight: 600; letter-spacing: .02em; }

.section-heading {
  font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--fg2);
  text-align: center; margin: 1rem 0 2rem;
  padding-top: 2rem; border-top: 1px solid var(--primary-dim);
}

/* TOP THEMES GRID */
.top-themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.top-theme-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--primary-dim);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  text-decoration: none; color: var(--fg);
  transition: transform .2s, border-color .2s, background .2s;
  position: relative;
}
.top-theme-card:hover { transform: translateY(-3px); border-color: var(--primary); background: var(--bg-card-hover); opacity: 1; }
.top-theme-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-dim); border-radius: 10px;
  color: var(--primary);
}
.top-theme-info h3 { font-size: .95rem; color: var(--fg); margin-bottom: .15rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.top-theme-info p { font-size: .8rem; color: var(--fg2); }
.top-theme-arrow { position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%); color: var(--fg3); transition: color .2s; }
.top-theme-card:hover .top-theme-arrow { color: var(--primary); }

/* FOOTER */
footer {
  border-top: 1px solid var(--primary-dim);
  padding: 3rem 0;
  text-align: center;
}
footer .footer-brand { font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--primary); font-size: 1rem; margin-bottom: .75rem; }
footer p { font-size: .8rem; color: var(--fg2); margin-bottom: .25rem; }
footer .footer-links { display: flex; gap: 1.5rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
footer .footer-links a { font-size: .8rem; color: var(--fg2); }
footer .footer-links a:hover { color: var(--primary); }

/* NEWSLETTER CTA */
.newsletter-cta {
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.newsletter-cta h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: .75rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.newsletter-cta p { font-size: .9rem; color: var(--fg2); margin-bottom: 1.5rem; }

.no-results { text-align: center; padding: 3rem; color: var(--fg2); font-size: .9rem; }

/* LEGAL PAGE */
.legal-page { max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.15rem; color: var(--primary); margin: 2rem 0 .8rem; }
.legal-page h3 { font-size: 1rem; color: var(--primary); margin: 1.2rem 0 .4rem; }
.legal-page p { color: var(--fg2); margin-bottom: 1rem; font-size: .9rem; line-height: 1.8; }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-page li { color: var(--fg2); margin-bottom: .3rem; font-size: .9rem; line-height: 1.7; }
.legal-page strong { color: var(--fg); font-weight: 500; }
.legal-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); margin-bottom: .2rem; }
.legal-meta { font-size: .82rem; color: var(--fg3); }

/* CONTACT PAGE */
.contact-page h1 { text-align: center; margin-bottom: .5rem; }
.contact-page .subtitle { text-align: center; margin-bottom: 3rem; }
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
.contact-form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .8rem; color: var(--fg2); font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: .7rem .9rem; color: var(--fg);
  font-family: 'Inter', sans-serif; font-size: .88rem;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--primary);
}
.contact-form select { cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-privacy { flex-direction: row; align-items: flex-start; gap: .5rem; }
.form-privacy label { display: flex; gap: .5rem; align-items: flex-start; font-size: .75rem; color: var(--fg3); cursor: pointer; }
.form-privacy input[type="checkbox"] { margin-top: 2px; accent-color: var(--primary); }
.btn-submit { width: 100%; padding: .85rem; font-size: .95rem; cursor: pointer; }
.form-status { margin-top: .75rem; padding: .75rem; border-radius: 8px; font-size: .85rem; text-align: center; }
.form-success { background: rgba(39,174,96,.1); color: #27ae60; border: 1px solid rgba(39,174,96,.2); }
.form-error { background: rgba(231,76,60,.1); color: #e74c3c; border: 1px solid rgba(231,76,60,.2); }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: .75rem; }
.contact-info-card p { font-size: .85rem; color: var(--fg2); line-height: 1.6; margin-bottom: .5rem; }
.contact-guide { display: flex; flex-direction: column; gap: 1rem; }
.guide-item strong { font-size: .85rem; display: block; margin-bottom: .25rem; }
.guide-item p { font-size: .78rem; color: var(--fg3); line-height: 1.5; margin: 0; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.25rem; }
  .contact-info-card { padding: 1.25rem; }
}

/* BLOG PAGE */
.blog-page h1 { text-align: center; margin-bottom: .5rem; }
.blog-page .subtitle { text-align: center; margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  text-decoration: none; color: var(--fg);
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: var(--primary-border); transform: translateY(-2px); opacity: 1; }
.blog-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.blog-date { font-size: .75rem; color: var(--fg3); }
.blog-author { font-size: .75rem; color: var(--primary); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: .75rem; line-height: 1.4; }
.blog-summary { font-size: .85rem; color: var(--fg2); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-read-more {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--primary); margin-top: auto;
}
.blog-cta {
  text-align: center; margin-top: 3rem; padding: 2rem;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--card);
}
.blog-cta h3 { margin-bottom: .5rem; }
.blog-cta p { color: var(--fg2); font-size: .9rem; margin-bottom: 1.25rem; }
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* HOST PROFILES PAGE */
.hosts-page h1 { text-align: center; margin-bottom: .5rem; font-family: 'Space Grotesk', 'Inter', sans-serif; }
.hosts-page .hosts-subtitle { text-align: center; margin-bottom: 2.5rem; color: var(--fg2); font-size: .95rem; }
.hosts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.host-profile {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
}
.host-profile-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.host-photo {
  width: 72px; height: 72px; min-width: 72px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary-border);
}
.host-avatar-img {
  width: 48px; height: 48px; min-width: 48px; max-width: 48px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--primary-border); flex-shrink: 0;
}
.host-profile-header h2 { margin: 0; font-size: 1.3rem; font-family: 'Space Grotesk', 'Inter', sans-serif; }
.host-role { color: var(--primary); font-size: .8rem; margin: .2rem 0 0; }
.host-podcast-role { color: var(--fg3); font-size: .75rem; font-style: italic; margin: .1rem 0 0; }
.host-bio p { color: var(--fg2); line-height: 1.6; margin-bottom: .75rem; font-size: .85rem; }
.host-bio strong { color: var(--fg); }
.host-highlights {
  display: flex; gap: 1rem; margin: 1rem 0; padding: .75rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.highlight { text-align: center; flex: 1; min-width: 60px; }
.highlight-num {
  display: block; font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.1rem;
  color: var(--primary); font-weight: 600;
}
.highlight-label { font-size: .65rem; color: var(--fg3); }
.host-tags { margin: .75rem 0; }
.host-tags .tag { font-size: .7rem; padding: .2rem .5rem; white-space: nowrap; }
.host-links { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .75rem; }
.host-superpower { margin-top: 1rem; padding: .75rem; background: rgba(26,92,255,.05); border-radius: 8px; border-left: 3px solid var(--primary); }
.host-superpower h3 { font-size: .85rem; margin-bottom: .3rem; font-family: 'Space Grotesk', 'Inter', sans-serif; color: var(--primary); }
.host-superpower p { font-size: .8rem; color: var(--fg2); line-height: 1.5; margin: 0; }

.hosts-together, .hosts-synergy { margin: 3rem 0 2rem; text-align: left; }
.hosts-together h2, .hosts-synergy h2 { margin-bottom: 1.5rem; font-family: 'Space Grotesk', 'Inter', sans-serif; text-align: center; }
.synergy-intro { color: var(--fg2); font-size: .9rem; margin-bottom: 1.5rem; text-align: center; }
.together-grid, .synergy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.together-card, .synergy-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.25rem; text-align: left;
}
.together-card svg, .synergy-card svg { margin-bottom: .5rem; }
.together-card h3, .synergy-card h3 { font-size: .9rem; margin-bottom: .4rem; font-family: 'Space Grotesk', 'Inter', sans-serif; }
.together-card p, .synergy-card p { font-size: .8rem; color: var(--fg2); line-height: 1.5; text-align: left; }
.synergy-bullets, .synergy-list { text-align: left; font-size: .8rem; color: var(--fg2); list-style: none; padding: 0; margin: .5rem 0 0 0; }
.synergy-bullets li, .synergy-list li { padding-left: 1.2rem; position: relative; margin-bottom: .3rem; font-weight: normal; }
.synergy-bullets li::before, .synergy-list li::before { content: "→ "; color: var(--primary); position: absolute; left: 0; }
.synergy-stats { text-align: center; margin: 2.5rem 0; }
.synergy-stats h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; margin-bottom: 1rem; }
.stats-grid { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.3rem; color: var(--primary); font-weight: 600; }
.stat-label { font-size: .7rem; color: var(--fg3); text-transform: uppercase; letter-spacing: .05em; }

@media (max-width: 900px) {
  .hosts-grid { grid-template-columns: 1fr; }
  .together-grid, .synergy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .host-highlights { gap: .75rem; }
  .highlight-num { font-size: 1rem; }
  .host-profile { padding: 1rem; }
}

/* 404 PAGE */
.error-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh; padding: 3rem 1.5rem; text-align: center;
}
.error-content { max-width: 500px; }
.error-logo {
  width: 160px; height: 160px; border-radius: 12px;
  border: 2px solid var(--primary-border);
  margin-bottom: 2rem;
  animation: error-float 3s ease-in-out infinite;
}
@keyframes error-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-2deg); }
  75% { transform: translateY(4px) rotate(1deg); }
}
.error-page h1 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 5rem; color: var(--fg2); margin-bottom: 1rem;
  letter-spacing: .1em;
}
.error-accent { color: var(--primary); }
.error-tagline {
  font-size: 1.1rem; color: var(--fg); margin-bottom: 1.5rem;
  line-height: 1.6;
}
.error-joke {
  font-size: .85rem; color: var(--fg3); font-style: italic;
  margin-bottom: 2.5rem; line-height: 1.6;
}
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .stats-bar { gap: 1.5rem; }
  .stat-num { font-size: 1.1rem; }
  .hosts-section { gap: 1.5rem; }
  .latest-card { padding: 1.5rem; }
  .ep-grid { grid-template-columns: 1fr; }
  .guest-grid { grid-template-columns: 1fr; }
  .top-themes-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-bar input { min-width: unset; }
  nav .container { padding: 0 1rem; }
  .ep-detail h1 { font-size: 1.5rem; }
  .ep-detail { padding: 2rem 0 3rem; }
  .container { padding: 0 1rem; }
  .breadcrumb { display: none; }
  .newsletter-cta { padding: 1.75rem 1.25rem; margin: 2rem 0; }
  .newsletter-cta h3 { font-size: 1rem; }
  .latest h2, .episodes h2 { font-size: 1rem; letter-spacing: 1.5px; }
  .tag-cloud { gap: .4rem; padding: 1.5rem 0 2rem; }
  .cloud-size-xl { font-size: 1.1rem; }
  .cloud-size-lg { font-size: .9rem; }
  footer { padding: 2rem 0; }
  footer .footer-links { gap: 1rem; }
  .guest-card-header { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; letter-spacing: .04em; }
  .hero-logo { width: 90px; height: 90px; margin-bottom: 1rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hosts-section { gap: 1rem; }
  .ep-card { padding: 1.25rem; }
  .ep-card h3 { font-size: .9rem; }
  .tags { gap: .3rem; }
  .tag { font-size: .6rem; padding: .15rem .5rem; }
  .latest-card h3 { font-size: 1.2rem; }
  .top-theme-card { padding: 1rem 1.25rem; }
  .top-theme-icon { width: 40px; height: 40px; }
  .top-theme-icon svg { width: 22px; height: 22px; }
  .stat-label { font-size: .65rem; }
  .theme-toggle { width: 30px; height: 30px; }
  .theme-toggle svg { width: 14px; height: 14px; }
  .logo-img { width: 22px; height: 22px; }
  nav .logo { font-size: .75rem; gap: .3rem; }
}
/* cache-bust 1772843327 */

/* Host Avatar Initials */
.host-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-dim); border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: .9rem; font-weight: 500;
  color: var(--primary); flex-shrink: 0;
}
.host-avatar::after { content: attr(data-initials); }
.host-avatar-lg {
  width: 80px; height: 80px; font-size: 1.4rem;
}

/* HOSTS PAGE - Trio Grid */
.hosts-dynamic { margin-bottom: 3rem; padding: 1.5rem; background: var(--bg-card); border-radius: var(--radius); border-left: 3px solid var(--primary); }
.hosts-dynamic h2 { font-size: 1.2rem; margin-bottom: .75rem; color: var(--primary); }
.hosts-dynamic p { color: var(--fg2); line-height: 1.7; }
.hosts-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.host-card { background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--border); transition: transform .2s, border-color .2s; }
.host-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.host-photo { width: 120px; height: 120px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: 3px solid var(--primary); }
.host-photo img { width: 100%; height: 100%; object-fit: cover; }
.host-card h3 { font-size: 1.1rem; margin-bottom: .25rem; color: var(--fg); }
.host-role-label { color: var(--primary); font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.host-card .host-title { color: var(--fg2); font-size: .8rem; margin-bottom: .75rem; }
.host-bio-short { color: var(--fg2); font-size: .85rem; line-height: 1.6; text-align: left; margin-bottom: 1rem; }
.host-bio-short h4 { color: var(--primary); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin: 1rem 0 .3rem 0; }
.host-bio-short h4:first-child { margin-top: 0; }
.host-bio-short p { margin: 0 0 .5rem 0; }
.host-bio-short ul { margin: .25rem 0 .5rem 0; padding-left: 1.2rem; }
.host-bio-short li { margin-bottom: .2rem; font-size: .82rem; }
.host-card .host-tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-bottom: 1rem; }
.host-card .host-tags .tag { font-size: .7rem; padding: .2rem .5rem; background: var(--accent-dim); color: var(--accent); border-radius: 4px; }
.host-card .host-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.host-card .host-links a { color: var(--primary); font-size: .8rem; text-decoration: none; padding: .3rem .6rem; border: 1px solid var(--border); border-radius: 4px; transition: background .2s; }
.host-card .host-links a:hover { background: var(--primary-dim); }
@media (max-width: 900px) { .hosts-trio { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* Platform Buttons */
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.btn-platform { display: inline-flex; align-items: center; gap: .4rem; }
@media (max-width: 600px) { .hero-actions { flex-direction: column; align-items: center; } .btn-platform { width: 100%; max-width: 280px; justify-content: center; } }

/* Host avatars with photos */
.host-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Pulsing share button in nav */
.nav-share-btn{
  color:var(--primary)!important;
  font-weight:600;
  animation:shareGlow 2s ease-in-out infinite;
  border-radius:4px;
  padding:.25rem .6rem!important;
}
@keyframes shareGlow{
  0%,100%{box-shadow:0 0 4px rgba(255,229,0,.2);text-shadow:0 0 4px rgba(255,229,0,.15)}
  50%{box-shadow:0 0 16px rgba(255,229,0,.5),0 0 30px rgba(26,92,255,.3);text-shadow:0 0 8px rgba(255,229,0,.4)}
}
[data-theme="light"] .nav-share-btn{
  animation:shareGlowLight 2s ease-in-out infinite;
}
@keyframes shareGlowLight{
  0%,100%{box-shadow:0 0 4px rgba(26,92,255,.15);text-shadow:0 0 4px rgba(26,92,255,.1)}
  50%{box-shadow:0 0 16px rgba(26,92,255,.4),0 0 30px rgba(26,92,255,.2);text-shadow:0 0 8px rgba(26,92,255,.3)}
}
