/* CSS Variables */
:root {
    --primary-green: #059669;
    --primary-green-dark: #047857;
    --primary-green-light: #4ade80;
    --secondary-green: #dcfce7;
    --dark-gray: #1f2937;
    --medium-gray: #6b7280;
    --light-gray: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    transition: padding-bottom 0.4s ease;
}

body.player-active {
    padding-bottom: 120px;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.cta-nav {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-link.cta-nav:hover {
    background: var(--primary-green-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--secondary-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-hosts {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hosts-label {
    display: block;
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.hosts-names {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.separator {
    color: var(--primary-green);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInUp 1s ease-out 1s both;
}

.podcast-artwork {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.artwork-container {
    width: 100%;
    height: 100%;
    background: url('podcast-cover.png') center center / cover;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.artwork-container:hover {
    transform: scale(1.05) rotate(1deg);
}

.artwork-container:hover .artwork-bg {
    opacity: 1;
}

.artwork-container:hover .play-button {
    transform: scale(1.1);
}

.artwork-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: var(--transition);
}

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

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: bounce 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #000000;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 222, 128, 0.05) 100%);
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.checklist-features {
    margin: 2rem 0 3rem 0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.4);
    transform: translateX(4px) translateZ(0);
}

.feature-number {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-form {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    background: #374151;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: #4b5563;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: left;
}

/* Social Proof */
.social-proof {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.proof-item {
    text-align: center;
    flex: 1;
}

.proof-item strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.proof-item span {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Checklist Mockup */
.cta-preview {
    animation: fadeInUp 1s ease-out 1s both;
}

.checklist-mockup {
    position: relative;
}

.mockup-browser {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

.mockup-browser:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    transition-delay: 0s;
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.browser-url {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
    border: 1px solid #e5e5e5;
    min-width: 200px;
    text-align: center;
}

.checklist-preview-image {
    position: relative;
    overflow: hidden;
}

.checklist-preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mockup-browser:hover .preview-overlay {
    opacity: 1;
    visibility: visible;
}

.download-hint {
    text-align: center;
    color: var(--white);
    background: rgba(74, 222, 128, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    transform: translateY(10px) scale(0.95) translateZ(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    backdrop-filter: blur(10px);
}

.mockup-browser:hover .download-hint {
    transform: translateY(0) scale(1) translateZ(0);
}

.hint-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.download-hint span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

/* Testimonial */
.checklist-testimonial {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.testimonial-quote {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-green);
}

.testimonial-quote::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-green);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Episodes Section */
.episodes-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

.episodes-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.episode-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

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

.episode-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.episode-number {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.episode-meta {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.episode-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.episode-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.episode-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.play-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn:hover {
    background: var(--primary-green-dark);
    transform: translateX(4px);
}

.episode-duration {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.loading {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.125rem;
    grid-column: 1 / -1;
    padding: 3rem;
}

/* Hosts Section */
.hosts-section {
    padding: 100px 0;
    background: var(--white);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.host-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    animation: fadeInUp 1s ease-out;
}

.host-image {
    flex-shrink: 0;
}

.host-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

.host-avatar:hover {
    transform: scale(1.03) translateZ(0); /* Reduced scale for subtlety */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition-delay: 0s;
}

.host-avatar.kyle {
    background: url('kyle-guilfoyle.png') center center / cover;
}

.host-avatar.reese {
    background: url('reese-headshot.jpg') center center / cover;
}

.host-content {
    flex: 1;
}

.host-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.host-title {
    font-size: 1rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.host-bio {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.host-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    color: var(--medium-gray);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.05s;
    will-change: transform;
    transform: translateZ(0); /* Force hardware acceleration */
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    transition-delay: 0s;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--secondary-green);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.podcast-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
}

.rss-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.rss-link:hover {
    color: var(--primary-green-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

/* Audio Player */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 222, 128, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

.audio-player.active {
    transform: translateY(0);
}

.audio-player.minimized {
    transform: translateY(calc(100% - 60px));
}

.player-container {
    display: grid;
    grid-template-columns: 300px 1fr 200px 150px;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.player-episode-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.player-artwork {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

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

.player-details {
    min-width: 0;
    flex: 1;
}

.player-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-show {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 500;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-green);
}

.play-pause-btn {
    background: var(--primary-green);
    color: var(--white);
    width: 48px;
    height: 48px;
}

.play-pause-btn:hover {
    background: var(--primary-green-dark);
    color: var(--white);
    transform: scale(1.05);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.progress-time {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.progress-bar-container {
    flex: 1;
    position: relative;
    padding: 0.5rem 0;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: var(--primary-green);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border: 2px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.progress-bar-container:hover .progress-handle {
    opacity: 1;
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

#speedBtn {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 32px;
}

.minimize-btn {
    opacity: 0.7;
}

.minimize-btn:hover {
    opacity: 1;
}

/* Responsive Audio Player */
@media (max-width: 1024px) {
    .player-container {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 1rem;
        padding: 1rem;
    }
    
    .player-episode-info {
        grid-column: 1 / -1;
    }
    
    .player-controls {
        grid-column: 1;
        justify-self: start;
    }
    
    .player-progress {
        grid-column: 1 / -1;
        order: 3;
    }
    
    .player-actions {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .player-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .player-episode-info {
        justify-content: center;
    }
    
    .player-controls {
        justify-self: center;
    }
    
    .player-actions {
        justify-self: center;
        order: 4;
    }
    
    .player-title {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
        max-width: 250px;
    }
}

/* Loading State */
.audio-player.loading .play-pause-btn {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Fallback Player Styles */
.fallback-player {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.fallback-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hosts-grid {
        grid-template-columns: 1fr;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .checklist-features .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-disclaimer {
        text-align: center;
    }
    
    .mockup-browser {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .host-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .podcast-artwork {
        width: 280px;
        height: 280px;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .episode-card {
        padding: 1.5rem;
    }
}