/* ========================================
   DOPPELTGEMOPPELT - Podcast Website
   Modern, Clean, Bold Design
   ======================================== */

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

:root {
    --primary: #6C3CE1;
    --primary-light: #8B5CF6;
    --primary-dark: #4C1D95;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --bg: #141420;
    --bg-card: #1C1C2E;
    --bg-card-hover: #252540;
    --surface: #20203A;
    --text: #F0F0F5;
    --text-muted: #A8A8C0;
    --text-dim: #707088;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.16);
    --gradient-primary: linear-gradient(135deg, #7C4DFF, #B47CFF, #E879A8);
    --gradient-warm: linear-gradient(135deg, #F59E0B, #EF4444);
    --gradient-card: linear-gradient(145deg, rgba(124, 77, 255, 0.1), rgba(180, 124, 255, 0.05));
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(124, 77, 255, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
}

html {
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* --- Animated Background Blobs --- */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    width: 100%;
    max-width: 100vw;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: #5B2DA0;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #6D3FC4;
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: #8B5CF6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.25;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -50px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(20, 20, 32, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1001;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.logo-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

.mobile-link:hover {
    color: var(--text);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(108, 60, 225, 0.15);
    border: 1px solid rgba(108, 60, 225, 0.3);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-line {
    display: block;
}

.title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle strong {
    color: var(--text);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-clickable {
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
    margin: -8px -12px;
    transition: background 0.2s ease;
}

.stat-clickable:hover {
    background: rgba(124, 77, 255, 0.1);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 60, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 60, 225, 0.45);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--primary-light);
    border: 1px solid rgba(108, 60, 225, 0.4);
}

.btn-outline:hover {
    background: rgba(108, 60, 225, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Hero Background Image (blurred cover) */
.hero-bg-image {
    position: absolute;
    inset: -20%;
    z-index: -1;
    background: url('https://d3t3ozftmdmh3i.cloudfront.net/staging/podcast_uploaded_nologo/42547786/42547786-1744534684687-b5af5e9778671.jpg') center center / cover no-repeat;
    filter: blur(80px) saturate(1.5) brightness(0.35);
    opacity: 0.5;
    pointer-events: none;
}

/* Hero Visual / Podcast Cover */
.hero-visual {
    flex-shrink: 0;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.podcast-cover {
    width: 340px;
    height: 340px;
    border-radius: var(--radius-lg);
    position: relative;
    animation: coverFloat 6s ease-in-out infinite;
    overflow: hidden;
}

.podcast-cover::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: var(--gradient-primary);
    filter: blur(25px);
    opacity: 0.5;
    z-index: -1;
}

.cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.equalizer {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 12px;
}

.equalizer span {
    width: 4px;
    border-radius: 4px;
    background: var(--gradient-primary);
    animation: equalize 1.2s ease-in-out infinite;
}

.equalizer span:nth-child(1) { height: 15px; animation-delay: 0s; }
.equalizer span:nth-child(2) { height: 25px; animation-delay: 0.1s; }
.equalizer span:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.equalizer span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.equalizer span:nth-child(5) { height: 30px; animation-delay: 0.15s; }
.equalizer span:nth-child(6) { height: 18px; animation-delay: 0.25s; }
.equalizer span:nth-child(7) { height: 28px; animation-delay: 0.05s; }
.equalizer span:nth-child(8) { height: 22px; animation-delay: 0.35s; }
.equalizer span:nth-child(9) { height: 12px; animation-delay: 0.4s; }

@keyframes equalize {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

@keyframes coverFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--gradient-primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -40px; }
    100% { top: 40px; }
}

/* --- Section Dividers --- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.divider-line {
    width: 2px;
    height: 50px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.divider-line::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--gradient-primary);
    animation: scrollDown 2.5s ease-in-out infinite;
}

/* --- Instagram Stat --- */
.stat-insta {
    text-decoration: none;
    color: var(--text);
}

.stat-insta-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke: url(#instaGradient);
    stroke: var(--primary-light);
    vertical-align: middle;
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(108, 60, 225, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.about-card h3 {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Episodes Section --- */
.episodes {
    background: linear-gradient(180deg, transparent, rgba(108, 60, 225, 0.03), transparent);
}

.episodes-grid {
    display: grid;
    gap: 16px;
}

.episode-card {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.episode-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.episode-card:hover::after {
    opacity: 1;
}

.episode-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dim);
    background: rgba(108, 60, 225, 0.05);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.episode-content {
    padding: 24px 28px;
    flex: 1;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.episode-date {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.episode-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(108, 60, 225, 0.15);
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-crime {
    background: rgba(239, 68, 68, 0.15);
    color: #F87171;
}

.tag-life {
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
}

.tag-culture {
    background: rgba(34, 197, 94, 0.15);
    color: #4ADE80;
}

.episode-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.episode-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.episode-play {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.episode-play:hover {
    color: var(--text);
    gap: 12px;
}

/* Loading & Error States */
.episodes-loading,
.episodes-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 16px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.episodes-error .btn-outline {
    margin-top: 16px;
}

.tag-science {
    background: rgba(16, 185, 129, 0.15);
    color: #34D399;
}

.tag-digital {
    background: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
}

.episodes-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* --- Hosts Section --- */
.hosts-intro {
    max-width: 600px;
    margin-bottom: 40px;
}

.hosts-intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
}

.host-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    transition: all 0.4s ease;
}

.host-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.host-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.host-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.host-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- Listen Section --- */
.listen-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.listen-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 60, 225, 0.08), transparent);
    pointer-events: none;
}

.listen-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.listen-content .section-title {
    margin-top: 8px;
    margin-bottom: 16px;
}

.listen-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.platform-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    background: var(--surface);
}

.platform-btn:hover {
    transform: translateY(-2px);
    border-color: var(--border-hover);
}

.platform-btn.spotify:hover {
    background: rgba(30, 215, 96, 0.1);
    border-color: rgba(30, 215, 96, 0.3);
    color: #1ED760;
}

.platform-btn.apple:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    color: #A855F7;
}

.platform-btn.h2radio:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

/* Sound Wave Animation */
.listen-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 120px;
}

.sound-wave span {
    width: 5px;
    border-radius: 5px;
    background: var(--gradient-primary);
    animation: wave 1.5s ease-in-out infinite;
}

.sound-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.sound-wave span:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.sound-wave span:nth-child(3) { height: 60px; animation-delay: 0.15s; }
.sound-wave span:nth-child(4) { height: 80px; animation-delay: 0.2s; }
.sound-wave span:nth-child(5) { height: 100px; animation-delay: 0.25s; }
.sound-wave span:nth-child(6) { height: 80px; animation-delay: 0.3s; }
.sound-wave span:nth-child(7) { height: 60px; animation-delay: 0.35s; }
.sound-wave span:nth-child(8) { height: 90px; animation-delay: 0.4s; }
.sound-wave span:nth-child(9) { height: 70px; animation-delay: 0.2s; }
.sound-wave span:nth-child(10) { height: 50px; animation-delay: 0.15s; }
.sound-wave span:nth-child(11) { height: 30px; animation-delay: 0.3s; }
.sound-wave span:nth-child(12) { height: 55px; animation-delay: 0.1s; }
.sound-wave span:nth-child(13) { height: 75px; animation-delay: 0.25s; }
.sound-wave span:nth-child(14) { height: 45px; animation-delay: 0.35s; }
.sound-wave span:nth-child(15) { height: 25px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* --- Footer --- */
.footer {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.footer-brand .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
    border-radius: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--text);
    border-color: var(--border-hover);
    background: var(--surface);
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.7;
    margin-top: 4px;
    display: inline-block;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .podcast-cover {
        width: 280px;
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        text-align: center;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .about-grid {
        margin: 0 auto;
    }

    .episode-card {
        flex-direction: column;
    }

    .episode-number {
        width: 100%;
        min-height: auto;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        font-size: 0.85rem;
    }

    .hosts-intro {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hosts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .listen-card {
        flex-direction: column;
        padding: 40px 28px;
        text-align: center;
        gap: 40px;
    }

    .platform-links {
        justify-content: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }

    .podcast-cover {
        width: 220px;
        height: 220px;
    }

    .cover-text {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .btn-outline {
        justify-content: center;
        width: 100%;
    }

    .about-card {
        padding: 28px;
    }

    .episode-content {
        padding: 20px;
    }
}

/* --- Listening Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    padding-right: 32px;
    letter-spacing: -0.3px;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.modal-option:hover {
    transform: translateX(4px);
    border-color: var(--border-hover);
}

.modal-option.spotify:hover {
    background: rgba(30, 215, 96, 0.08);
    border-color: rgba(30, 215, 96, 0.3);
    color: #1ED760;
}

.modal-option.apple:hover {
    background: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    color: #A855F7;
}

.modal-option.h2radio:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    color: #F59E0B;
}

.modal-option.review:hover {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
    color: #FBBF24;
}

@media (max-width: 480px) {
    .modal {
        padding: 28px;
    }

    .modal-title {
        font-size: 1.1rem;
    }
}
