/* ============================================
   Workshopr Podcast - Audio Studio Aesthetic
   Matches Tips design system with podcast identity
   ============================================ */

/* CSS Variables - Matching Tips Design System */
:root {
    /* Core Palette - Warm, earthy, tactile (from Tips) */
    --color-paper: #FAF7F2;
    --color-paper-dark: #F0EBE3;
    --color-kraft: #D4C4A8;
    --color-ink: #2C2416;
    --color-ink-light: #5C5242;
    --color-pencil: #78716C;
    --color-white: #FFFFFF;
    --color-border: rgba(44, 36, 22, 0.12);
    --color-border-dark: rgba(44, 36, 22, 0.2);

    /* Podcast Accent - Crimson */
    --color-accent: #BE123C;
    --color-accent-light: #FECDD3;
    --color-accent-dark: #9F1239;
    --color-accent-very-light: #FFE4E6;

    /* Platform Colors */
    --color-spotify: #1DB954;
    --color-amazon: #FF9900;
    --color-iheart: #C6002B;
    --color-substack: #FF6719;

    /* Typography - Same as Tips */
    --font-display: 'Bitter', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Fraunces', Georgia, serif;

    /* Spacing */
    --container-max: 1140px;
    --container-padding: 32px;
    --section-spacing: 80px;

    /* Effects */
    --shadow-paper: 0 1px 3px rgba(44, 36, 22, 0.08), 0 4px 12px rgba(44, 36, 22, 0.06);
    --shadow-card: 0 2px 8px rgba(44, 36, 22, 0.1), 0 8px 24px rgba(44, 36, 22, 0.08);
    --shadow-elevated: 0 8px 32px rgba(44, 36, 22, 0.15), 0 16px 48px rgba(44, 36, 22, 0.1);
    --shadow-accent: 0 4px 14px rgba(190, 18, 60, 0.3);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-ink);
    background: var(--color-paper);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ============================================
   Navigation - Now using global header
   See /includes/global-header.php and /css/styles.css
   ============================================ */

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    transition: all 0.25s var(--ease-out);
}

.btn .icon {
    width: 20px; height: 20px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190, 18, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: rgba(190, 18, 60, 0.1);
    border-color: var(--color-accent-dark);
    color: var(--color-accent-dark);
}

/* ============================================
   Hero Section - Matching Tips/Intervention
   ============================================ */
.hero {
    padding: 60px 0;
    padding-top: 124px; /* 64px header + 60px original padding */
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    background: var(--color-paper);
}

/* Background pattern - matching tips/intervention */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(190, 18, 60, 0.15);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-ink);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}

.hero-title-accent {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--color-accent-light);
    text-decoration-thickness: 8px;
    text-underline-offset: 4px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-ink-light);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

/* Hero Stats - Matching Tips/Intervention */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.hero-stat .stat-label {
    font-size: 13px;
    color: var(--color-pencil);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Podcast Image */
.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 16px;
    box-shadow: var(--shadow-elevated);
    object-fit: cover;
}

.cassette-player {
    position: relative;
    width: 340px;
    transform: rotate(-3deg);
    transition: transform 0.4s var(--ease-spring);
}

.cassette-player:hover {
    transform: rotate(0deg) scale(1.02);
}

.cassette-body {
    background: linear-gradient(180deg, #3D3428 0%, #2C2416 100%);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow-elevated);
    position: relative;
}

.cassette-body::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(139, 115, 85, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

.cassette-label {
    background: var(--color-paper);
    border-radius: 8px;
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Lined paper effect on label */
.cassette-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    bottom: 0;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 18px,
        rgba(190, 18, 60, 0.15) 18px,
        rgba(190, 18, 60, 0.15) 19px
    );
    pointer-events: none;
}

.cassette-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ink);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    position: relative;
}

.cassette-subtitle {
    font-size: 11px;
    color: var(--color-pencil);
    font-weight: 500;
    position: relative;
}

.cassette-reels {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.reel {
    width: 80px;
    height: 80px;
    background: #1a1610;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3);
}

.reel::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 3px solid #8B7355;
    border-radius: 50%;
    position: absolute;
}

.reel::after {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--color-accent);
    border-radius: 50%;
}

.reel-left {
    animation: spin 4s linear infinite;
}

.reel-right {
    animation: spin 4s linear infinite reverse;
}

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

.cassette-window {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 4px;
    height: 24px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
}

.tape-line {
    width: 100%;
    height: 2px;
    background: var(--color-kraft);
    opacity: 0.6;
}

/* Sound bars animation */
.sound-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 100%;
    padding: 6px 8px;
}

.bar {
    width: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    animation: soundBar 0.8s ease-in-out infinite;
}

.bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.bar:nth-child(7) { height: 45%; animation-delay: 0.6s; }

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

/* ============================================
   Section Styles
   ============================================ */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-eyebrow .icon {
    width: 16px; height: 16px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-ink-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   Platforms Section
   ============================================ */
.platforms {
    padding: 48px 0;
    background: var(--color-paper-dark);
}

.platforms-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.platforms-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-pencil);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

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

.platform-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-ink);
    transition: all 0.3s var(--ease-out);
}

.platform-link svg {
    width: 22px;
    height: 22px;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.platform-link.spotify svg { color: var(--color-spotify); }
.platform-link.spotify:hover { border-color: var(--color-spotify); }

.platform-link.amazon svg { color: var(--color-amazon); }
.platform-link.amazon:hover { border-color: var(--color-amazon); }

.platform-link.iheart svg { color: var(--color-iheart); }
.platform-link.iheart:hover { border-color: var(--color-iheart); }

.platform-link.substack svg { color: var(--color-substack); }
.platform-link.substack:hover { border-color: var(--color-substack); }

/* ============================================
   Latest Episode Section
   ============================================ */
.latest-episode {
    padding: var(--section-spacing) 0;
    background: var(--color-paper);
}

.featured-episode {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-paper);
}

.featured-artwork {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-card);
}

.featured-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artwork-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c9574a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.artwork-placeholder .icon {
    width: 48px; height: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.artwork-placeholder::after {
    content: 'Workshopr.io';
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-artwork:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s var(--ease-spring);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(190, 18, 60, 0.4);
}

.featured-content {
    padding: 8px 0;
}

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

.episode-number {
    display: inline-flex;
    padding: 6px 12px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 6px;
}

.episode-date {
    font-size: 13px;
    color: var(--color-pencil);
}

.featured-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-ink);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-description {
    font-size: 16px;
    color: var(--color-ink-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.featured-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-paper);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-ink);
    transition: all 0.3s var(--ease-out);
}

.listen-btn svg {
    width: 20px;
    height: 20px;
}

.listen-btn.spotify svg { color: var(--color-spotify); }
.listen-btn.spotify:hover {
    border-color: var(--color-spotify);
    background: rgba(29, 185, 84, 0.08);
}

.listen-btn.amazon svg { color: var(--color-amazon); }
.listen-btn.amazon:hover {
    border-color: var(--color-amazon);
    background: rgba(255, 153, 0, 0.08);
}

.listen-btn.iheart svg { color: var(--color-iheart); }
.listen-btn.iheart:hover {
    border-color: var(--color-iheart);
    background: rgba(198, 0, 43, 0.08);
}

/* ============================================
   Episodes Grid
   ============================================ */
.episodes-section {
    padding: var(--section-spacing) 0;
    background: var(--color-paper);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.episode-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
    animation: fadeInUp 0.5s var(--ease-out) both;
    animation-delay: var(--delay, 0s);
}

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

.episode-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.episode-badge {
    display: inline-flex;
    padding: 6px 12px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.03em;
}

.episode-date {
    font-size: 13px;
    color: var(--color-pencil);
}

.episode-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-ink);
    line-height: 1.35;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-card-description {
    font-size: 15px;
    color: var(--color-ink-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-card-footer {
    margin-top: auto;
}

.episode-listen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    transition: gap 0.2s ease;
}

.episode-listen .icon {
    width: 22px; height: 22px;
}

.episode-card:hover .episode-listen {
    gap: 12px;
}

/* ============================================
   Hosts Section
   ============================================ */
.hosts-section {
    padding: var(--section-spacing) 0;
    background: var(--color-accent-light);
    position: relative;
    overflow: hidden;
}

.hosts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(190, 18, 60, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(190, 18, 60, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hosts-section .section-header {
    position: relative;
}

.hosts-section .section-eyebrow {
    color: var(--color-accent);
}

.hosts-section .section-title {
    color: var(--color-ink);
}

.hosts-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.hosts-description {
    font-size: 18px;
    color: var(--color-ink-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hosts-cta {
    display: flex;
    justify-content: center;
}

/* ============================================
   Resources Section
   ============================================ */
.resources-section {
    padding: var(--section-spacing) 0;
    background: var(--color-paper);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: var(--resource-color, var(--color-accent));
}

.resource-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--resource-color, var(--color-accent)) 12%, transparent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out);
}

.resource-icon .icon {
    width: 26px; height: 26px;
    color: var(--resource-color, var(--color-accent));
    transition: color 0.3s var(--ease-out);
}

.resource-card:hover .resource-icon {
    background: var(--resource-color, var(--color-accent));
}

.resource-card:hover .resource-icon .icon {
    color: var(--color-white);
}

.resource-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 14px;
    color: var(--color-pencil);
    line-height: 1.6;
    margin-bottom: 16px;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--resource-color, var(--color-accent));
}

.resource-link .icon {
    width: 18px; height: 18px;
    transition: transform 0.2s ease;
}

.resource-card:hover .resource-link .icon {
    transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-ink);
    padding: 56px 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 18px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .hero-visual {
        display: none;
    }

    .featured-episode {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .featured-artwork {
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-content {
        text-align: center;
    }

    .episode-meta {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
        --container-padding: 20px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 24px 32px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .platform-links {
        flex-direction: column;
        align-items: stretch;
    }

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

    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .episode-card {
        padding: 20px;
    }

    .episode-card-title {
        font-size: 18px;
    }

    .episode-card-description {
        -webkit-line-clamp: 2;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .featured-episode {
        padding: 20px;
    }

    .featured-title {
        font-size: 22px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
