/* ═══════════════════════════════════════════════════════════
   SUSHIL — VIDEO EDITOR PORTFOLIO
   Black & White Minimal Theme
═══════════════════════════════════════════════════════════ */

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

:root {
    --black: #000000;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --gray-950: #0a0a0a;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-600) var(--gray-950);
}
html::-webkit-scrollbar { width: 5px; }
html::-webkit-scrollbar-track { background: var(--gray-950); }
html::-webkit-scrollbar-thumb { background: var(--gray-600); border-radius: 3px; }

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; }
img { display: block; max-width: 100%; }

/* ─── CURSOR ─── */
.cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%; pointer-events: none; z-index: 10000;
    transition: width 0.3s var(--ease), height 0.3s var(--ease),
                border-color 0.3s, transform 0.15s ease-out;
    transform: translate(-50%, -50%);
}
.cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: var(--white);
    mix-blend-mode: difference;
}
.cursor-dot {
    position: fixed; width: 5px; height: 5px;
    background: var(--white); border-radius: 50%;
    pointer-events: none; z-index: 10001;
    transform: translate(-50%, -50%);
}

/* ─── LOADER ─── */
#loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-text {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 32px;
}
.loader-bar {
    width: 200px; height: 1px;
    background: var(--gray-800);
    margin: 0 auto; overflow: hidden;
}
.loader-fill {
    height: 100%; width: 0%;
    background: var(--white);
    transition: width 0.15s linear;
}

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px clamp(24px, 5vw, 64px);
    background: transparent;
    transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    color: var(--white);
    transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-links {
    display: flex; align-items: center; gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gray-400);
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 1px;
    background: var(--white);
    transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--gray-600) !important;
    border-radius: 999px;
    transition: all 0.3s var(--ease) !important;
    color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--white) !important;
    color: var(--black) !important;
    border-color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column; gap: 6px;
    background: none; border: none; padding: 8px;
}
.nav-toggle span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}
.nav-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav-toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 32px; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 600;
    color: var(--gray-400);
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--white); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 24px;
    opacity: 0; transform: translateY(20px);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 96px);
    font-weight: 700; line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    opacity: 0; transform: translateY(40px);
}
.hero-title .line1 {
    display: block; color: var(--white);
}
.hero-title .line2 {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gray-400);
    transition: all 0.5s var(--ease);
}
.hero-title:hover .line2 {
    color: var(--white);
    -webkit-text-stroke: 0px;
}
.hero-sub {
    font-size: clamp(14px, 1.4vw, 18px);
    color: var(--gray-500);
    max-width: 480px; margin: 0 auto 48px;
    line-height: 1.7; font-weight: 400;
    opacity: 0; transform: translateY(20px);
}

.hero-stats {
    display: flex; align-items: center; gap: 0;
    border: 1px solid var(--gray-800);
    border-radius: 16px; overflow: hidden;
    opacity: 0; transform: translateY(20px);
}
.stat {
    padding: 24px 36px; text-align: center;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 32px; font-weight: 700;
    color: var(--white);
}
.stat-plus {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600;
    color: var(--gray-500);
}
.stat-label {
    display: block;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 4px;
}
.stat-divider {
    width: 1px; height: 40px;
    background: var(--gray-800);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    opacity: 0;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(180deg, var(--gray-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}
.scroll-indicator span {
    font-size: 9px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-600);
}

/* ─── MARQUEE ─── */
.marquee-strip {
    padding: 20px 0;
    border-top: 1px solid var(--gray-900);
    border-bottom: 1px solid var(--gray-900);
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex; gap: 32px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    width: max-content;
}
.marquee-track span {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-600);
}
.marquee-track .dot {
    font-size: 6px; color: var(--gray-700);
    display: flex; align-items: center;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section {
    padding: clamp(80px, 10vh, 140px) clamp(24px, 5vw, 80px);
    position: relative;
}
.section-header {
    margin-bottom: 64px;
    opacity: 0; transform: translateY(30px);
}
.section-num {
    font-family: var(--font-display);
    font-size: 12px; font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.15em;
    display: block; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700; letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 16px;
    color: var(--white);
}
.section-desc {
    font-size: 16px; color: var(--gray-500);
    max-width: 400px; line-height: 1.6;
}
.section-dark {
    background: var(--gray-950);
}

/* ─── REELS GRID ─── */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.reel-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    background: var(--gray-950);
    transition: all 0.4s var(--ease);
    opacity: 0; transform: translateY(30px);
}
.reel-card:hover {
    border-color: var(--gray-600);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.reel-embed {
    width: 100%;
    aspect-ratio: 9/16;
    position: relative;
    background: var(--gray-900);
}
.reel-embed iframe {
    width: 100%; height: 100%;
    border: none;
}
.reel-info {
    padding: 16px 18px;
    display: flex; flex-direction: column; gap: 4px;
}
.reel-client {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray-500);
}
.reel-title {
    font-size: 14px; font-weight: 600;
    color: var(--white);
}
.reel-type {
    font-size: 11px; color: var(--gray-600);
}

/* ─── VIDEO GRID ─── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.video-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-800);
    background: var(--gray-900);
    transition: all 0.4s var(--ease);
    opacity: 0; transform: translateY(30px);
}
.video-card:hover {
    border-color: var(--gray-600);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-card-large {
    grid-column: 1 / -1;
}
.video-thumb {
    display: block;
    position: relative;
    overflow: hidden;
}
.video-card-large .video-thumb { aspect-ratio: 16/7; }
.video-card:not(.video-card-large) .video-thumb { aspect-ratio: 16/9; }

.video-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.video-card:hover .video-thumb img {
    transform: scale(1.05);
}
.video-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s;
}
.video-card:hover .video-overlay {
    background: rgba(0,0,0,0.1);
}
.play-btn {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.05);
}
.play-btn svg {
    width: 20px; height: 20px;
    color: var(--white);
    margin-left: 3px;
}
.video-card:hover .play-btn {
    background: var(--white);
    border-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-card:hover .play-btn svg { color: var(--black); }

.video-info { padding: 20px 24px; }
.video-client {
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray-500);
    display: block; margin-bottom: 8px;
}
.video-info h3 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 4px;
}
.video-type {
    font-size: 12px; color: var(--gray-600);
}

/* ─── ABOUT ─── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-left { opacity: 0; transform: translateY(30px); }
.about-right { opacity: 0; transform: translateY(30px); }
.about-text {
    font-size: 16px; color: var(--gray-400);
    line-height: 1.8; margin-top: 20px;
}
.about-text strong { color: var(--white); font-weight: 600; }

.skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.skill-item {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}
.skill-item:hover {
    border-color: var(--gray-600);
    background: var(--gray-950);
}
.skill-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.skill-icon svg {
    width: 20px; height: 20px;
    color: var(--gray-400);
}
.skill-item span {
    font-size: 13px; font-weight: 500;
    color: var(--gray-300);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.tool-card {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--gray-800);
    border-radius: 14px;
    transition: all 0.35s var(--ease);
    cursor: none;
}
.tool-card:hover {
    border-color: var(--tool-color);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 24px color-mix(in srgb, var(--tool-color) 20%, transparent),
                0 0 0 1px color-mix(in srgb, var(--tool-color) 15%, transparent);
    transform: translateY(-2px);
}
.tool-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tool-icon svg { width: 100%; height: 100%; display: block; }
.tool-name {
    font-size: 13px; font-weight: 600;
    color: var(--white); display: block;
    line-height: 1.2;
}
.tool-desc {
    font-size: 10px; font-weight: 500;
    color: var(--gray-500); display: block;
    letter-spacing: 0.02em;
}

/* ─── CLIENTS MARQUEE ─── */
.clients-strip {
    padding: 28px 0;
    border-top: 1px solid var(--gray-900);
    border-bottom: 1px solid var(--gray-900);
    overflow: hidden;
}
.clients-track {
    display: flex; gap: 40px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
}
.clients-track span {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500;
    color: var(--gray-700);
    display: flex; align-items: center;
}
.clients-track .cdot {
    font-size: 14px; color: var(--gray-800);
}

/* ─── CONTACT ─── */
.contact-section {
    display: flex; align-items: center; justify-content: center;
    text-align: center; min-height: 70vh;
}
.contact-content { opacity: 0; transform: translateY(30px); }
.contact-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700; letter-spacing: -0.04em;
    line-height: 1.1; margin: 24px 0;
    color: var(--white);
}
.contact-sub {
    font-size: 16px; color: var(--gray-500);
    margin-bottom: 40px;
}
.contact-links {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
}
.contact-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.05em;
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--white);
    border-radius: 999px;
    transition: all 0.3s var(--ease);
}
.contact-btn svg { width: 18px; height: 18px; }
.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,255,255,0.15);
}
.contact-btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-700);
}
.contact-btn-ghost:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* ─── FOOTER ─── */
.footer {
    padding: 32px clamp(24px, 5vw, 64px);
    border-top: 1px solid var(--gray-900);
}
.footer-inner {
    display: flex; align-items: center;
    justify-content: space-between;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    color: var(--gray-600);
}
.footer-copy {
    font-size: 12px; color: var(--gray-700);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-ring, .cursor-dot { display: none; }

    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero-title { font-size: clamp(32px, 10vw, 56px); }

    .hero-stats {
        flex-direction: column;
        border-radius: 12px;
    }
    .stat { padding: 16px 32px; }
    .stat-divider { width: 40px; height: 1px; }

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

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

    .contact-title { font-size: clamp(28px, 8vw, 48px); }
}

@media (max-width: 480px) {
    .reels-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .stat { padding: 12px 24px; }
}

/* ─── ANIMATION CLASSES ─── */
[data-anim] { opacity: 0; transform: translateY(30px); }
[data-anim].visible {
    opacity: 1; transform: translateY(0);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ═══════════════════════════════════════════════════════════
   3D SCROLL ANIMATIONS & COLORFUL EFFECTS
═══════════════════════════════════════════════════════════ */

/* ─── COLORFUL ACCENT VARS ─── */
:root {
    --neon-purple: #a855f7;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --neon-orange: #f97316;
    --neon-green: #22c55e;
    --gradient-1: linear-gradient(135deg, #a855f7, #3b82f6, #06b6d4);
    --gradient-2: linear-gradient(135deg, #ec4899, #f97316);
    --gradient-3: linear-gradient(135deg, #06b6d4, #22c55e);
}

/* ─── FLOATING GLOW ORBS (background) ─── */
.glow-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.glow-orb {
    position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12;
    animation: orbFloat 12s ease-in-out infinite alternate;
    will-change: transform;
}
.glow-orb:nth-child(1) { width: 500px; height: 500px; background: var(--neon-purple); top: -10%; left: -5%; animation-delay: 0s; }
.glow-orb:nth-child(2) { width: 400px; height: 400px; background: var(--neon-blue); top: 30%; right: -8%; animation-delay: -4s; }
.glow-orb:nth-child(3) { width: 600px; height: 600px; background: var(--neon-pink); bottom: -15%; left: 30%; animation-delay: -8s; }
.glow-orb:nth-child(4) { width: 350px; height: 350px; background: var(--neon-cyan); top: 60%; left: -10%; animation-delay: -2s; }
@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.15); }
    100% { transform: translate(-20px, 20px) scale(0.9); }
}

/* ─── HERO GRADIENT TEXT ON HOVER ─── */
.hero-title .line2 {
    -webkit-text-stroke: 1.5px rgba(168,85,247,0.6);
    transition: all 0.6s var(--ease);
}
.hero-title:hover .line2 {
    color: transparent; -webkit-text-stroke: 0px;
    background: var(--gradient-1); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ─── HERO TAG GRADIENT ─── */
.hero-tag { color: var(--neon-cyan) !important; }

/* ─── STATS GLOW BORDER ─── */
.hero-stats {
    border-color: transparent;
    background: linear-gradient(var(--black), var(--black)) padding-box,
                linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-cyan)) border-box;
    border: 1px solid transparent;
}
.stat-num { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ─── FILMSTRIP TIMELINE ─── */
.filmstrip {
    position: relative; padding: 40px 0; overflow: hidden;
    border-top: 1px solid rgba(168,85,247,0.15);
    border-bottom: 1px solid rgba(168,85,247,0.15);
}
.filmstrip-track {
    display: flex; gap: 4px; animation: filmScroll 30s linear infinite;
    width: max-content;
}
.film-frame {
    width: 80px; height: 56px; border-radius: 4px; flex-shrink: 0;
    position: relative; overflow: hidden;
}
.film-frame::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(168,85,247,0.3), rgba(59,130,246,0.3), rgba(6,182,212,0.3));
    opacity: 0.6;
}
.film-frame-inner {
    width: 100%; height: 100%; background: var(--gray-900);
    border: 1px solid rgba(168,85,247,0.2);
    display: flex; align-items: center; justify-content: center;
}
.film-frame-inner::after {
    content: '▶'; font-size: 10px; color: rgba(168,85,247,0.4);
}
.filmstrip-holes {
    position: absolute; top: 0; left: 0; right: 0;
    display: flex; gap: 16px; padding: 0 8px;
}
.filmstrip-holes.bottom { top: auto; bottom: 0; }
.filmstrip-hole {
    width: 12px; height: 8px; border-radius: 2px; flex-shrink: 0;
    background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.12);
}
@keyframes filmScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── 3D PERSPECTIVE CONTAINER ─── */
.section { perspective: 1200px; }

/* ─── 3D SCROLL REVEAL ─── */
[data-3d] {
    transform: perspective(1200px) rotateX(8deg) translateY(60px) scale(0.95);
    opacity: 0; transform-origin: center bottom;
    transition: transform 1s var(--ease), opacity 0.8s var(--ease);
}
[data-3d].in-view {
    transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
    opacity: 1;
}

/* ─── 3D TILT CARDS ─── */
.reel-card, .video-card {
    transform-style: preserve-3d; transition: all 0.5s var(--ease);
}
.reel-card:hover {
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg) translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(168,85,247,0.15), 0 0 30px rgba(168,85,247,0.05);
    border-color: rgba(168,85,247,0.3);
}
.video-card:hover {
    transform: perspective(800px) rotateY(2deg) rotateX(-1deg) translateY(-6px) scale(1.01);
    box-shadow: 0 25px 60px rgba(59,130,246,0.15), 0 0 30px rgba(59,130,246,0.05);
    border-color: rgba(59,130,246,0.3);
}

/* ─── COLORFUL SECTION NUMBERS ─── */
.section-num {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
    font-size: 14px; font-weight: 700;
}

/* ─── SECTION TITLES GRADIENT ON SCROLL ─── */
.section-title.color-reveal {
    background: linear-gradient(90deg, #fff 0%, #a855f7 30%, #3b82f6 60%, #06b6d4 100%);
    background-size: 300% 100%; background-position: 0% 50%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite alternate;
}
@keyframes titleShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ─── PLAY BUTTON GLOW ─── */
.play-btn {
    border-color: rgba(168,85,247,0.6);
    box-shadow: 0 0 20px rgba(168,85,247,0.15);
}
.video-card:hover .play-btn {
    background: var(--gradient-1); border-color: transparent;
    box-shadow: 0 0 40px rgba(168,85,247,0.3);
}
.video-card:hover .play-btn svg { color: #fff; }

/* ─── SKILL ITEMS GLOW ─── */
.skill-item:hover {
    border-color: rgba(168,85,247,0.3);
    background: rgba(168,85,247,0.05);
    box-shadow: 0 0 20px rgba(168,85,247,0.08);
}
.skill-item:hover .skill-icon svg { color: var(--neon-purple); }

/* ─── TOOL CARDS GLOW HOVER ─── */
.tool-card:hover {
    border-color: var(--tool-color);
    box-shadow: 0 0 20px color-mix(in srgb, var(--tool-color) 15%, transparent);
}

/* ─── CTA GRADIENT BUTTONS ─── */
.contact-btn {
    background: var(--gradient-1); border: none; color: #fff;
    box-shadow: 0 8px 30px rgba(168,85,247,0.25);
}
.contact-btn:hover {
    box-shadow: 0 15px 50px rgba(168,85,247,0.35);
    transform: translateY(-3px) scale(1.02);
}
.contact-btn-ghost {
    background: transparent; border: 1px solid rgba(168,85,247,0.3); color: #fff;
    box-shadow: none;
}
.contact-btn-ghost:hover {
    background: var(--gradient-2); border-color: transparent; color: #fff;
    box-shadow: 0 15px 50px rgba(236,72,153,0.2);
}

/* ─── CONTACT TITLE GRADIENT ─── */
.contact-title {
    background: linear-gradient(135deg, #fff 30%, var(--neon-purple) 60%, var(--neon-blue) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── PARALLAX DEPTH LAYERS ─── */
.parallax-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: -1; overflow: hidden;
}
.parallax-line {
    position: absolute; height: 1px; opacity: 0.06;
    background: linear-gradient(90deg, transparent, var(--neon-purple), var(--neon-blue), transparent);
}

/* ─── TIMELINE PROGRESS BAR ─── */
.timeline-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 1001;
    background: var(--gradient-1); width: 0%;
    box-shadow: 0 0 10px rgba(168,85,247,0.5);
    transition: width 0.1s linear;
}

/* ─── WAVEFORM DECORATION ─── */
.waveform {
    display: flex; align-items: center; gap: 3px; justify-content: center;
    padding: 16px 0;
}
.wave-bar {
    width: 3px; border-radius: 2px;
    background: linear-gradient(180deg, var(--neon-purple), var(--neon-blue));
    animation: waveAnim 1.2s ease-in-out infinite alternate;
}
@keyframes waveAnim {
    0% { height: 8px; opacity: 0.3; }
    100% { height: 32px; opacity: 0.8; }
}

/* ─── CLIENTS STRIP COLORFUL ─── */
.clients-track span { color: var(--gray-500); }
.clients-track .cdot { color: var(--neon-purple); opacity: 0.4; }

/* ─── MARQUEE GRADIENT ─── */
.marquee-track span { color: var(--gray-500); }
.marquee-track .dot { color: var(--neon-purple); opacity: 0.5; }

/* ─── NAV CTA GRADIENT ─── */
.nav-cta {
    border: 1px solid rgba(168,85,247,0.4) !important;
}
.nav-cta:hover {
    background: var(--gradient-1) !important;
    color: #fff !important; border-color: transparent !important;
    box-shadow: 0 0 20px rgba(168,85,247,0.3);
}

/* ─── SCROLL INDICATOR COLOR ─── */
.scroll-line { background: linear-gradient(180deg, var(--neon-purple), transparent); }

/* ─── FOOTER GRADIENT LINE ─── */
.footer { border-top: 1px solid rgba(168,85,247,0.15); }

/* ─── REEL/VIDEO CARD BORDER GRADIENT ON HOVER ─── */
.reel-card { border: 1px solid var(--gray-800); }
.video-card { border: 1px solid var(--gray-800); }

/* ─── LOADER GRADIENT ─── */
.loader-fill {
    background: var(--gradient-1);
}
.loader-text {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── SCROLLBAR COLORFUL ─── */
html { scrollbar-color: var(--neon-purple) var(--gray-950); }
html::-webkit-scrollbar-thumb { background: var(--neon-purple); }
