/* ===== Modern Dark & Sleek Portfolio ===== */
/* 2025-2026 Design Trends */

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    animation: loading 1.5s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

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

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    color: #00d4ff;
}

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.06);

    /* Accent Colors */
    --accent-cyan: #00d4ff;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #a855f7 100%);
    --gradient-hover: linear-gradient(135deg, #00d4ff 0%, #ec4899 50%, #a855f7 100%);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Effects */
    --blur: blur(20px);
    --blur-heavy: blur(40px);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Spacing */
    --radius: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Subtle noise texture for depth */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9997;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

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

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

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== Glass Card Base ===== */
.glass {
    background: var(--glass);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 12px 24px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-glow);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.nav-logo:hover img {
    opacity: 1;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

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

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

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

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

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

.nav-toggle:hover span {
    background: var(--text-primary);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent-cyan);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 1) 100%
    );
}

/* Animated gradient orbs */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero::before {
    background: var(--accent-cyan);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero::after {
    background: var(--accent-purple);
    bottom: -200px;
    left: -200px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 50px) scale(1.1); }
    50% { transform: translate(0, 100px) scale(1); }
    75% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 24px;
}

.hero h1 {
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite, heroReveal 1s ease forwards;
    background-size: 200% 200%;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 48px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--accent-cyan);
    border-bottom: 2px solid var(--accent-cyan);
    transform: rotate(45deg);
    opacity: 0.6;
}

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

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

/* ===== Sections ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

/* Gradient divider between sections */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0.3;
}

.section:last-of-type::after {
    display: none;
}

.section-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

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

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Brands Section ===== */
#brands {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#brands::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
    opacity: 0.05;
    pointer-events: none;
}

/* Logo Marquee - Animated, shows 3 at a time */
.brands-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-strip {
    display: flex;
    align-items: center;
    gap: 120px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.brands-strip img {
    height: 200px;
    width: auto;
    opacity: 0.8;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover */
.brands-wrapper:hover .brands-strip {
    animation-play-state: paused;
}

/* Legacy grid support - hidden */
.brands-grid {
    display: none;
}

.brand-item {
    display: none;
}

/* ===== Bento Grid ===== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.bento-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.bento-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

/* Bento sizes */
.bento-large { grid-column: span 8; }
.bento-medium { grid-column: span 6; }
.bento-small { grid-column: span 4; }
.bento-wide { grid-column: span 12; }

.bento-card-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bento-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 16px;
}

.bento-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.bento-card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.bento-card-image {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.bento-card-image img {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Video in bento */
.bento-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--bg-tertiary);
}

.bento-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* TikTok embed in bento */
.bento-tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
    background: var(--bg-tertiary);
}

.bento-tiktok blockquote {
    margin: 0 !important;
    max-width: 100% !important;
}

.bento-tiktok iframe {
    max-width: 100% !important;
}

/* Instagram embed in bento */
.bento-instagram {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 450px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.bento-instagram blockquote {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 300px !important;
}

.bento-instagram iframe {
    max-width: 100% !important;
    border-radius: var(--radius) !important;
}

/* ===== Podcast Cards ===== */
.podcast-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.podcast-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.podcast-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.1);
}

.podcast-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.podcast-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.podcast-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.podcast-role {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.podcast-info p:last-of-type {
    color: var(--text-secondary);
    line-height: 1.7;
}

.podcast-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--bg-tertiary);
}

.podcast-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== Documentary Grid ===== */
.documentary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.documentary-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.documentary-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.documentary-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--bg-tertiary);
}

.documentary-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.documentary-info {
    padding: 28px;
}

.documentary-org {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.documentary-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.documentary-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Button ===== */
.cta-center {
    text-align: center;
    margin-top: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-cyan);
    background: var(--glass);
}

/* ===== Contact Section ===== */
#contact {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0.08;
    pointer-events: none;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 36px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-link:hover {
    border-color: var(--accent-cyan);
    background: var(--glass-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.contact-link svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-cyan);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer p {
    font-size: 14px;
    color: var(--text-muted);
}

.footer p span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for child elements */
.bento-grid .bento-card:nth-child(1) { transition-delay: 0s; }
.bento-grid .bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-grid .bento-card:nth-child(3) { transition-delay: 0.2s; }
.bento-grid .bento-card:nth-child(4) { transition-delay: 0.3s; }
.bento-grid .bento-card:nth-child(5) { transition-delay: 0.4s; }
.bento-grid .bento-card:nth-child(6) { transition-delay: 0.5s; }
.bento-grid .bento-card:nth-child(7) { transition-delay: 0.6s; }

.podcast-grid .podcast-card:nth-child(1) { transition-delay: 0s; }
.podcast-grid .podcast-card:nth-child(2) { transition-delay: 0.15s; }
.podcast-grid .podcast-card:nth-child(3) { transition-delay: 0.3s; }

.documentary-grid .documentary-card:nth-child(1) { transition-delay: 0s; }
.documentary-grid .documentary-card:nth-child(2) { transition-delay: 0.1s; }
.documentary-grid .documentary-card:nth-child(3) { transition-delay: 0.2s; }
.documentary-grid .documentary-card:nth-child(4) { transition-delay: 0.3s; }
.documentary-grid .documentary-card:nth-child(5) { transition-delay: 0.4s; }
.documentary-grid .documentary-card:nth-child(6) { transition-delay: 0.5s; }

/* Scale up animation variant */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .bento-large { grid-column: span 12; }
    .bento-medium { grid-column: span 6; }
    .bento-small { grid-column: span 6; }
}

@media (max-width: 1024px) {
    .brands-strip {
        gap: 80px;
    }

    .brands-strip img {
        height: 160px;
    }

    .podcast-card {
        grid-template-columns: 1fr;
    }

    .podcast-video {
        order: -1;
    }

    .podcast-info {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        left: 16px;
        right: 16px;
        transform: none;
        border-radius: var(--radius-lg);
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .section-subtitle {
        margin-bottom: 48px;
    }

    .brands-strip {
        gap: 60px;
    }

    .brands-strip img {
        height: 120px;
    }

    .bento-grid {
        gap: 16px;
    }

    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 12;
    }

    .bento-card-content {
        padding: 28px;
    }

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

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .contact-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

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

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 0.2em;
    }

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

    .brands-strip {
        gap: 50px;
    }

    .brands-strip img {
        height: 100px;
    }

    .podcast-info h3 {
        font-size: 24px;
    }

    .bento-card-title {
        font-size: 22px;
    }
}
