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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    overflow-x: hidden;
    background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 20px 20px;
    font-size: var(--fs-500);
}

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #f59e0b;
    --accent: #ec4899;
    --dark: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px 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);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --gradient-hero: linear-gradient(90deg, #6366f1 0%, #8b5cf6 35%, #ec4899 70%, #f43f5e 100%);
    --fs-900: clamp(2.75rem, 6vw + 1rem, 4rem); /* h1 */
    --fs-800: clamp(2rem, 4vw + 0.5rem, 3rem);   /* h2 */
    --fs-700: clamp(1.5rem, 3vw + 0.5rem, 2.25rem); /* h3 */
    --fs-600: 1.25rem; /* large text */
    --fs-500: 1.1rem;  /* body */
    --fs-400: 1rem;    /* small body */
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255,255,255,0.9);
    border-color: var(--gray-200);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.5rem;
}

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

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

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Burger icon animation */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* New Homepage Styles */
.home-hero {
    background: var(--white);
    padding: 140px 0 80px 0;
    border-bottom: 1px solid var(--gray-200);
    background-image: radial-gradient(circle at 30% 30%, rgba(99,102,241,0.1), transparent 40%), radial-gradient(circle at 80% 20%, rgba(236,72,153,0.08), transparent 40%);
    overflow-x: hidden;
}

.home-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap-reverse;
}

.home-hero-content h1 {
    font-size: var(--fs-900);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1.5rem;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-hero-content .tagline {
    font-size: var(--fs-700);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.home-hero-content .subtitle {
    font-size: var(--fs-500);
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}

.hero-visual .card-stack {
    position: relative;
    width: 100%;
    height: auto;
}

.visual-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: none !important;
}

.visual-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.visual-card.card-1 {
    width: 280px;
    height: 180px;
    top: 0;
    left: 20px;
    transform: rotate(-5deg);
}

.visual-card.card-2 {
    width: 300px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 2;
}

.visual-card.card-3 {
    width: 260px;
    height: 170px;
    bottom: 0;
    right: 0;
    transform: rotate(7deg);
}

.home-hero:hover .visual-card.card-1 {
    transform: rotate(-10deg) translate(-20px, 10px);
}
.home-hero:hover .visual-card.card-2 {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.05);
}
.home-hero:hover .visual-card.card-3 {
    transform: rotate(12deg) translate(20px, -10px);
}

.visual-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.featured-journey {
    padding: 4rem 0;
    background: var(--background);
    overflow-x: hidden;
}

.highlight-title {
    font-size: var(--fs-800);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.highlight-description {
    font-size: var(--fs-500);
    color: var(--gray-600);
    max-width: 600px;
}

.journey-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow-x: hidden;
}

.journey-info h3 {
    margin-top: 0;
    font-size: var(--fs-700);
    color: var(--primary);
}

.journey-info p {
    font-size: var(--fs-500);
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.journey-stats-preview {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.journey-stats-preview .stat {
    text-align: left;
}
.journey-stats-preview .stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.journey-stats-preview .stat span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.video-preview-card {
    display: block;
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.video-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-preview-card:hover .play-icon-overlay {
    opacity: 1;
}

.home-newsletter {
    padding: 80px 0;
    background: var(--white);
}

.newsletter-box {
    background: var(--gradient);
    color: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.newsletter-box h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-box .email-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box .email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1rem;
}
.newsletter-box .email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-box .email-input:focus {
    outline: none;
    background: rgba(255,255,255,0.3);
    border-color: var(--white);
}

.newsletter-box .btn-primary {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Scroll Animation Styles */
.home-hero-content, .hero-visual, .section-header, .journey-preview, .newsletter-box {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.home-hero-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-visual.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.section-header.is-visible,
.journey-preview.is-visible,
.newsletter-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Journey Hero Section */
.journey-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    overflow-x: hidden;
}

.journey-hero .hero-bg { position: absolute; inset: 0; overflow: hidden; }

/* Constrain floating shapes */
.journey-hero .floating-shapes { max-width: 100%; overflow: hidden; }

.journey-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
    max-width: none;
    margin: 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.journey-hero h1 {
    font-size: var(--fs-900);
    line-height: 1.15;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.journey-hero .hero-subtitle {
    font-size: var(--fs-500);
    color: var(--gray-600);
    max-width: 550px;
}

.journey-hero-stats {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.journey-hero-stats .stat-item {
    margin-bottom: 1.5rem;
}

.journey-hero-stats .stat-item:last-child {
    margin-bottom: 0;
}

.journey-hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: block;
    margin-bottom: 0.25rem;
}

.journey-hero-stats .stat-number {
    font-size: var(--fs-700);
    font-weight: 700;
    color: var(--dark);
}

.progress-bar-container {
    background-color: var(--gray-200);
    border-radius: 999px;
    height: 10px;
    width: 100%;
    overflow: hidden;
    margin-top: 1.5rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 999px;
}
.episodes-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    overflow-x: hidden;
}

.episode-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
    aspect-ratio: 9 / 16;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
    max-width: 100%;
    box-sizing: border-box;
}

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

.episode-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.episode-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-card.available:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

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

.episode-card.available:hover .play-button {
    transform: scale(1.1);
}

.episode-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Coming Soon Card Styles */
.episode-card.coming-soon {
    background: var(--gray-100);
    cursor: not-allowed;
}

.episode-card.coming-soon:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.episode-card.coming-soon .episode-thumbnail {
    filter: grayscale(1);
}

.placeholder-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray-400);
}

.coming-soon-icon svg {
    width: 48px;
    height: 48px;
}

.episode-badge.upcoming {
    background: var(--primary);
    color: var(--white);
}

.video-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal .modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    aspect-ratio: 9/16;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary);
}

.video-container {
    position: relative;
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
    .journey-hero h1 {
        font-size: var(--fs-800);
    }
    
    .journey-hero-content {
        grid-template-columns: 1fr !important;
    }

    .journey-hero-text {
        margin-bottom: 2rem;
    }

    .home-hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .home-hero-content .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        max-width: 320px;
    }
    .journey-preview {
        grid-template-columns: 1fr;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .episode-card { width: 100%; max-width: 100%; }

    .video-modal .modal-content {
        width: 95%;
    }

    /* Mobile Navigation */
    .nav-toggle {
        display: flex !important;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background: rgba(255,255,255,0.95);
        position: absolute;
        top: 80px;
        left: 0;
        padding: 1.25rem 1.5rem;
        box-shadow: var(--shadow-lg);
        border-bottom-left-radius: var(--radius-lg);
        border-bottom-right-radius: var(--radius-lg);
    }
    .nav-menu.active {
        display: flex;
    }

    .home-hero .container {
        flex-direction: column-reverse;
        text-align: center;
    }

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

    .journey-preview {
        flex-direction: column;
    }

    .journey-visual .video-preview-card {
        padding-top: 56.25%;
    }

    .journey-hero .hero-subtitle {
        font-size: var(--fs-400);
    }

    .journey-hero-stats .stat-number {
        font-size: var(--fs-600);
    }
}

.home-hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.journey-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.journey-link:hover {
    transform: translateY(-3px);
}

.journey-link:hover h3 {
    text-decoration: underline;
}

h1, h2, h3 {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ======== Button Redesign ======== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: var(--gradient-hero);
    color: var(--white) !important;
    padding: 0.85rem 2rem;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 0.85rem 2rem;
}
.btn-secondary:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ======== Hero Image Refinement ======== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
}
.hero-visual .card-stack {
    position: relative;
    width: 100%;
    height: auto;
}
.visual-card {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: none !important;
}
.visual-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-visual {
        max-width: 320px;
    }
}

/* ======== About Page Modern Centered Layout ======== */
.philosophy {
    padding: 100px 0;
}
.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.philosophy-text p {
    margin-top: 1rem;
    font-size: var(--fs-500);
    color: var(--gray-600);
}
.philosophy-principles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.principle {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.principle:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Contact Cards */
.connect {
    padding: 80px 0;
    background: var(--gray-50);
}
.connect-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.social-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA refinement */
.cta-section {
    padding: 100px 0;
    text-align: center;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
/* Responsive tweaks */
@media (max-width: 600px) {
    .philosophy {
        padding: 80px 0;
    }
    .connect {
        padding: 60px 0;
    }
    .cta-section {
        padding: 80px 0;
    }
}

/* ======== About Page Styles ======== */
.about-hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
}
.about-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-hero h1 {
    font-size: var(--fs-800);
    font-weight: 800;
    margin-bottom: 1rem;
}
.about-hero .hero-subtitle {
    font-size: var(--fs-500);
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-stats {
    display: flex;
    gap: 2rem;
}
.hero-stats .stat-number {
    font-size: var(--fs-700);
    font-weight: 700;
    color: var(--primary);
}
.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}
.hero-image .image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.image-container:hover .image-overlay {
    opacity: 1;
}
.quote p {
    font-size: 0.9rem;
    font-style: italic;
}

/* Floating shapes background */
.hero-bg .floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}
.shape-1 { width: 250px; height: 250px; background: var(--primary); top: -50px; left: -50px; }
.shape-2 { width: 180px; height: 180px; background: var(--accent); bottom: -60px; right: 20%; }
.shape-3 { width: 120px; height: 120px; background: var(--secondary); top: 40%; left: 80%; }

/* Timeline */
.story-timeline {
    position: relative;
    margin-top: 3rem;
}
.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}
.timeline-marker {
    position: relative;
    width: 40px;
    display: flex;
    justify-content: center;
}
.marker-line {
    position: absolute;
    top: 20px;
    bottom: -20px;
    left: 50%;
    width: 2px;
    background: var(--gray-300);
}
.marker-dot {
    width: 14px;
    height: 14px;
    background: var(--gray-400);
    border-radius: 50%;
    margin-top: 4px;
}
.marker-dot.active { background: var(--primary); }
.timeline-content {
    flex: 1;
}
.timeline-date {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}
.timeline-tags { margin-top: 0.75rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
}

/* Principles & Values Grid */
.philosophy {
    padding: 80px 0;
    background: var(--gray-50);
}
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.philosophy-principles { margin-top: 2rem; display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1.5rem; }
.principle {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}
.principle-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.principle h4 { font-size: var(--fs-600); margin-bottom: 0.5rem; }
.principle p { font-size: var(--fs-400); color: var(--gray-600); }

.values {
    padding: 80px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 1.5rem;
    min-width: 0;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }

/* Connect */
.connect-content { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.contact-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.social-links { margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.social-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.social-link:hover { text-decoration: underline; }
.connect-form { background: var(--gray-50); padding: 2rem; border-radius: var(--radius-lg); }
.form-group { margin-bottom: 1rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-300); border-radius: var(--radius); font-size: var(--fs-400); }
.form-group input:focus, .form-group textarea:focus { outline:none; border-color: var(--primary); }

/* CTA */
.cta-section { padding: 80px 0; text-align:center; background: var(--white); }
.cta-content { max-width: 700px; margin: 0 auto; }
.cta-buttons { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 0.85rem 2rem; transition: all 0.3s ease; }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
    .about-hero .hero-content, .philosophy-content, .connect-content { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; }
    .about-hero h1 { font-size: var(--fs-700); }
}

/* ======== Season 1 Page Typography ======== */
.journey-hero h1 {
    font-size: var(--fs-900);
    line-height: 1.15;
}
.journey-hero .hero-subtitle {
    font-size: var(--fs-500);
    color: var(--gray-600);
    max-width: 550px;
}
.hero-badge {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
}
.journey-hero-stats .stat-number {
    font-size: var(--fs-700);
}
.journey-hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}
.section-header h2 {
    font-size: var(--fs-800);
}
.section-header p {
    font-size: var(--fs-500);
    color: var(--gray-600);
}
.episode-badge {
    font-size: 0.8rem;
}
@media (max-width: 768px) {
    .journey-hero h1 { font-size: var(--fs-800); }
    .journey-hero .hero-subtitle { font-size: var(--fs-400); }
    .journey-hero-stats .stat-number { font-size: var(--fs-600); }
}

/* ======== Global Mobile Responsive Tweaks ======== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    h1 { font-size: var(--fs-800); }
    h2 { font-size: var(--fs-700); }
    h3 { font-size: var(--fs-600); }

    /* Navigation */
    .nav-container { height: 60px; }
    .nav-toggle span { width: 22px; }
    .nav-menu { top: 60px; }

    /* Hero sections */
    .home-hero, .about-hero, .journey-hero { padding-top: 100px; padding-bottom: 60px; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .btn-large { width: 100%; text-align: center; }

    /* Featured / Episodes grids */
    .journey-preview, .episodes-grid, .values-grid, .philosophy-principles, .connect-content {
        grid-template-columns: 1fr !important;
    }
    .episode-card { aspect-ratio: 16 / 9; }

    /* Contact cards */
    .contact-card { padding: 1.5rem 1rem; }

    /* CTA */
    .cta-buttons { flex-direction: column; }
} 