:root {
    --primary: #FF3B5C;
    /* Hot Coral */
    --primary-hover: #FF4D6D;
    --secondary: #000000;
    /* Deep Black */
    --accent: #2ECC71;
    /* Cash Green */
    --bg-color: #F7F7F7;
    /* Off-white */
    --white: #FFFFFF;
    --text-color: #1A1A1A;
    --text-muted: #666666;
    --border-color: #E5E5E5;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.highlight {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary);
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* Header */
header {
    padding: 24px 0;
    position: sticky;
    top: 0;
    background-color: rgba(247, 247, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

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

.social-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-subscribe {
    background-color: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-subscribe:hover {
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
}

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

.hero h1 {
    font-size: 4.5rem;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 400;
}

.power-line {
    border-left: 4px solid var(--primary);
    padding-left: 16px;
    font-style: italic;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 40px;
}

/* About Section */
.about {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Content Pillars */
.pillars {
    padding: 100px 0;
}

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

.section-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.pillar-card {
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.pillar-icon {
    color: var(--primary);
    margin-bottom: 24px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pillar-card p {
    color: var(--text-muted);
}

/* Featured Header */
.featured-episodes {
    background-color: var(--secondary);
    color: var(--white);
    padding: 100px 0;
}

.featured-episodes .section-title {
    color: var(--white);
}

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

.video-card {
    background: #111;
    border: 1px solid #333;
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-img {
    transform: scale(1.05);
    /* Subtle zoom on hover */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 3rem;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 24px;
}

.video-tag {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.video-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.video-info p {
    color: #999;
}

/* CTA Section */
.collaborate {
    text-align: center;
    padding: 120px 0;
}

.collaborate h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    gap: 12px;
}

.hidden {
    display: none;
    /* Placeholder for form interactivity later */
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
}

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

.footer-brand {
    font-weight: 800;
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 24px;
}

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

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        display: block;
    }
}

.about-image-container {
    width: 100%;
    height: auto;
    /* Let image define height to avoid cropping */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--primary);
    /* Graphic shadow effect */
    border: 2px solid var(--secondary);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Ensure full image is always visible */
    filter: grayscale(100%);
    /* Making it black and white for that "founder media" vibe */
    transition: filter 0.3s ease;
}

.about-image:hover {
    filter: grayscale(0%);
}