/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Light & Bright */
    --primary: #FF6B9D;
    --primary-light: #FF9EC4;
    --secondary: #7C4DFF;
    --secondary-light: #B388FF;
    --accent: #00E5FF;
    --accent-2: #76FF03;
    --accent-3: #FFD600;

    /* Background Colors */
    --bg-main: #FFF8F0;
    --bg-card: #FFFFFF;
    --bg-alt: #FFF0F5;

    /* Text Colors */
    --text-primary: #1A1A2E;
    --text-secondary: #4A4A6A;
    --text-muted: #8888AA;

    /* Gradients */
    --gradient-1: linear-gradient(135deg, #FF6B9D 0%, #FF9A5A 100%);
    --gradient-2: linear-gradient(135deg, #7C4DFF 0%, #00E5FF 100%);
    --gradient-3: linear-gradient(135deg, #76FF03 0%, #00E5FF 100%);
    --gradient-4: linear-gradient(135deg, #FFD600 0%, #FF6B9D 100%);
    --gradient-5: linear-gradient(135deg, #B388FF 0%, #7C4DFF 100%);
    --gradient-6: linear-gradient(135deg, #FF9EC4 0%, #FFD600 100%);
    --gradient-hero: linear-gradient(180deg, #FFF8F0 0%, #FFE8F5 50%, #E8F4FF 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(124, 77, 255, 0.3);

    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.loading {
    overflow: hidden;
}

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: none;
}

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

/* ===== CINEMATIC LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.film-strip {
    display: flex;
    gap: 8px;
    animation: filmRoll 1.5s ease-in-out infinite;
}

.film-frame {
    width: 40px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.film-frame::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0;
    animation: framePulse 1.5s ease-in-out infinite;
}

.film-frame:nth-child(1)::before { animation-delay: 0s; }
.film-frame:nth-child(2)::before { animation-delay: 0.15s; }
.film-frame:nth-child(3)::before { animation-delay: 0.3s; }
.film-frame:nth-child(4)::before { animation-delay: 0.45s; }
.film-frame:nth-child(5)::before { animation-delay: 0.6s; }

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

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

.loader-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

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

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    animation: loadProgress 2.2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== PARTICLE CANVAS ===== */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-blob {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-blob.hover {
    width: 60px;
    height: 60px;
}

.cursor-trail {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width var(--transition-base);
}

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

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

.btn-contact {
    padding: 12px 24px;
    background: var(--gradient-1);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-main);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-link {
    animation: mobileSlideIn 0.4s ease forwards;
}

.mobile-menu.active .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { animation-delay: 0.4s; }

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

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 48px 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-light);
    bottom: 10%;
    left: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 40%;
    right: 5%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-3);
    bottom: 20%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

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

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

.hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    animation: revealWord 1s ease forwards;
    opacity: 0;
    transform: translateY(100%);
    position: relative;
}

.line-1 .word {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.line-2 .word {
    animation-delay: 0.4s;
}

.word.outline {
    -webkit-text-stroke: 2px var(--secondary);
    -webkit-text-fill-color: transparent;
}

.word.outline::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.hero-title:hover .word.outline::after {
    opacity: 1;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    animation: slideIn 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

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

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: slideIn 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline:hover {
    background: var(--text-primary);
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: slideIn 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    animation: slideIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    animation: pulseGlow 2s ease-in-out infinite;
    margin-bottom: auto;
    margin-top: 40%;
}

.play-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin-left: 4px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.35);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
}

.episode-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.video-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-2);
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    width: 140px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-left {
    left: -60px;
    top: 20%;
    animation-delay: 0s;
}

.card-right {
    right: -40px;
    bottom: 15%;
    animation-delay: -2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.scroll-line {
    width: 40px;
    height: 2px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 24px 0;
    background: var(--text-primary);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

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

/* ===== VIDEO REEL SECTION ===== */
.video-reel {
    padding: 100px 0 80px;
    background: white;
    overflow: hidden;
}

.reel-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 0 48px;
}

.reel-track {
    display: flex;
    gap: 24px;
    padding: 0 48px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.reel-track::-webkit-scrollbar {
    display: none;
}

.reel-track:active {
    cursor: grabbing;
}

.reel-item {
    min-width: 320px;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.5s ease;
}

.reel-item:hover {
    transform: scale(1.03);
}

.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-item:hover img {
    transform: scale(1.1);
}

.reel-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.reel-genre {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.reel-item-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.reel-progress {
    width: 200px;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin: 40px auto 0;
    overflow: hidden;
}

.reel-progress-bar {
    width: 30%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ===== PRODUCTIONS SECTION ===== */
.productions {
    padding: var(--section-padding) 48px;
    background: var(--bg-main);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bg-alt);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Productions Filter */
.productions-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--text-secondary);
    background: white;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.filter-btn:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Productions Grid */
.productions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.production-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
}

.production-card:hover {
    box-shadow: var(--shadow-lg);
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 60%
    );
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
}

.production-card:hover .card-shine {
    opacity: 1;
    animation: shine 0.8s ease forwards;
}

@keyframes shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.card-image {
    aspect-ratio: 2 / 3;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.production-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.production-card:hover .card-overlay {
    opacity: 1;
}

.card-episodes {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.03em;
}

.card-play {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.card-play svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    margin-left: 2px;
}

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

.card-info {
    padding: 24px;
}

.card-genre {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 8px 0;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-stats {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.card-stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-stat-icon {
    font-size: 1rem;
}

/* Productions CTA */
.productions-cta {
    text-align: center;
}

/* ===== NUMBERS / IMPACT SECTION ===== */
.numbers-section {
    padding: var(--section-padding) 48px;
    background: var(--text-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.numbers-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.numbers-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.numbers-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.numbers-header .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.numbers-header .section-title {
    color: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.number-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.number-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.big-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.number-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.number-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.number-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.number-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 2px;
    transition: width 1.5s ease;
}

.number-bar-fill.animated {
    width: var(--target-width);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 48px;
    background: var(--bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-visual {
    position: relative;
    height: 500px;
}

.about-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-item {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-1 {
    width: 260px;
    height: 340px;
    top: 0;
    left: 0;
    z-index: 3;
}

.stack-2 {
    width: 220px;
    height: 290px;
    top: 50px;
    left: 150px;
    z-index: 2;
}

.stack-3 {
    width: 180px;
    height: 240px;
    top: 100px;
    left: 270px;
    z-index: 1;
}

.stack-1:hover,
.stack-2:hover,
.stack-3:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 10;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge span:first-child {
    font-size: 1.25rem;
}

.badge-1 {
    bottom: 60px;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    top: 20px;
    right: 40px;
    animation-delay: -1.5s;
}

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

.about-content {
    max-width: 520px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 24px;
    line-height: 1.2;
}

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

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-alt);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.glitch::before {
    color: var(--primary);
    animation: glitchBefore 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translateX(-2px);
    opacity: 0;
}

.glitch::after {
    color: var(--accent);
    animation: glitchAfter 3s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translateX(2px);
    opacity: 0;
}

.glitch:hover::before,
.glitch:hover::after {
    opacity: 0.8;
}

@keyframes glitchBefore {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-1px); }
    80% { transform: translateX(2px); }
}

@keyframes glitchAfter {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(3px); }
    40% { transform: translateX(-3px); }
    60% { transform: translateX(1px); }
    80% { transform: translateX(-2px); }
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--text-primary);
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature:hover {
    background: white;
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Director Card */
.director-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.director-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-info h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.director-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== SOCIAL PROOF / TESTIMONIALS ===== */
.social-proof {
    padding: var(--section-padding) 48px;
    background: white;
    overflow: hidden;
}

.proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    animation: scroll 30s linear infinite;
}

.testimonials-slider:hover {
    animation-play-state: paused;
}

.testimonial {
    min-width: 400px;
    padding: 32px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 107, 157, 0.2);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-platform {
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* ===== PLATFORMS SECTION ===== */
.platforms {
    padding: 80px 48px;
    background: var(--bg-alt);
    text-align: center;
}

.platforms-header {
    margin-bottom: 40px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.platform-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.platform-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
    background: var(--gradient-1);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding) 48px;
    background: var(--bg-main);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 24px;
    line-height: 1.2;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-text a,
.contact-text span:last-child {
    font-weight: 500;
    color: var(--text-primary);
}

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

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

.social-link {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-3px) rotate(5deg);
}

.social-link:hover svg {
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-main);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    transition: all var(--transition-base);
    cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: 16px;
    padding: 0 4px;
    background: white;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.form-group input:focus ~ label,
.form-group select:focus ~ label,
.form-group textarea:focus ~ label {
    opacity: 1;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238888AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-primary);
    padding: 80px 48px 32px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: var(--container-width);
    margin: 0 auto 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container-width);
    margin: 0 auto;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.made-with {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SPLIT TEXT ANIMATION ===== */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-90deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.split-text.animated .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 32px 60px;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-badge {
        margin: 0 auto 24px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 32px;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    .floating-card {
        display: none;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    body {
        cursor: auto;
    }

    .cursor-blob,
    .cursor-trail {
        display: none;
    }

    .navbar {
        padding: 12px 24px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 24px 40px;
    }

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

    .phone-frame {
        width: 220px;
        height: 460px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .productions,
    .about,
    .social-proof,
    .contact,
    .platforms,
    .numbers-section {
        padding: var(--section-padding) 24px;
    }

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

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .big-number {
        font-size: 2.5rem;
    }

    .about-visual {
        display: none;
    }

    .testimonial {
        min-width: 300px;
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .reel-item {
        min-width: 260px;
        height: 360px;
    }

    .footer {
        padding: 60px 24px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-logo-img {
        height: 50px;
    }

    .platform-logos {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .reel-header {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .productions-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .director-card {
        flex-direction: column;
        text-align: center;
    }

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

    .number-card {
        padding: 30px 20px;
    }
}

/* ===== ANIMATION ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
