/* ULTRA PREMIUM STYLING - FULL PORTFOLIO */

:root {
    --bg-base: #030305;
    --bg-elevated: rgba(20, 20, 25, 0.4);
    --bg-card: rgba(15, 15, 20, 0.6);

    --text-pure: #ffffff;
    --text-primary: #f4f4f5;
    --text-muted: #a1a1aa;

    --accent-primary: #5e6ad2;
    --accent-secondary: #904e95;
    --accent-glow: #e96443;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.2);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

::selection {
    background: var(--accent-primary);
    color: var(--text-pure);
}



html {
    background-color: var(--bg-base);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* 0. Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.intro-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.intro-mask-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.mask-text-main {
    font-family: var(--font-display);
    font-size: 12vw;
    font-weight: 900;
    fill: black; /* This becomes the transparent part in the mask */
}

#nameMask rect {
    fill: white;
}

.preloader-content-footer {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.preloader-counter {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--accent-primary);
}

.preloader-bar-bg {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-glow);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Custom Magnetic Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s var(--ease-out-expo), width 0.3s, height 0.3s, background 0.3s;
}

.cursor.active {
    transform: scale(0);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-color: transparent;
}

/* Noise & Environment */
.noise-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-base);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    animation: orbFloat 30s infinite alternate linear;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.4), transparent 60%);
    top: -20%;
    left: -20%;
}

.orb-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(144, 78, 149, 0.3), transparent 60%);
    bottom: -20%;
    right: -20%;
    animation-delay: -10s;
}

.orb-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(233, 100, 67, 0.2), transparent 60%);
    top: 30%;
    left: 20%;
    animation-delay: -20s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(15vw, 15vh) scale(1.1) rotate(45deg);
    }
}

/* Base Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.container-sm {
    max-width: 1000px;
}

.section-padding {
    padding: 10vw 0;
}

.text-center {
    text-align: center;
}

h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-glow));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Navbar */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: padding 0.4s var(--ease-out-expo), background 0.4s;
}

.nav.scrolled {
    padding: 16px 0;
    background: rgba(3, 3, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-pure);
    cursor: pointer;
    z-index: 101;
}

.nav-logo .dot {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.nav-link span {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link::after {
    content: attr(data-hover);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--text-pure);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover span {
    transform: translateY(-100%);
}

.nav-link:hover::after {
    transform: translateY(-100%);
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    overflow: hidden;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
    gap: 10px;
}

.btn-nav {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-pure);
    backdrop-filter: blur(10px);
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
}

.btn-primary {
    padding: 16px 32px;
    background: var(--text-pure);
    color: var(--bg-base);
    font-size: 1.05rem;
}

.btn-outline {
    padding: 16px 32px;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-pure);
    font-size: 1.05rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-hover);
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 102px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-glow), var(--accent-primary));
    background-size: 300%;
    animation: borderGlow 4s linear infinite;
}

.btn-primary:hover::before {
    opacity: 1;
}

.flex-gap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* 1. Hero Split Layout */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
}

.hero-content-left {
    text-align: left;
}

.hero-badge-wrapper {
    overflow: hidden;
    margin-bottom: 2vw;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #00ffaa;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffaa;
}

.hero-h1 {
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-h1 .line {
    overflow: hidden;
}

.hero-p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.5;
    opacity: 0;
}

.hero-cta-wrapper {
    opacity: 0;
}

.hero-mini-stats {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat strong {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: var(--text-pure);
}

.mini-stat span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Hero Photo 3D Frame */
.scene-3d {
    perspective: 1200px;
    position: relative;
    opacity: 0;
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 40px;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image-inner {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    height: 500px;
    max-width: 400px;
    margin: 0 auto;
}



/* Base image styling */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.6s var(--ease-out-expo), filter 0.2s;
}

.img-smile {
    opacity: 0;
}

.hero-image-inner:hover .img-smile {
    opacity: 1;
}

.hero-image-inner:hover .img-normal {
    opacity: 0;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
    z-index: 2;
}

/* Floating Tech Labels on Photo */
.floating-tech {
    position: absolute;
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-light);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: floatTech 8s ease-in-out infinite alternate;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-tech i {
    width: 16px;
    color: var(--accent-primary);
}

.ft-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.ft-2 {
    top: 50%;
    left: -30px;
    animation-delay: -2s;
}

.ft-3 {
    bottom: 15%;
    right: 10px;
    animation-delay: -4s;
}

@keyframes floatTech {
    0% {
        transform: translateY(0) rotate(0);
    }

    100% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* 2. Manifesto / Scroll Reveal */
.manifesto-section {
    padding: 15vw 0;
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(200, 120, 255, 0.1);
    /* Subtle purple base */
}

/* SplitType characters will be targeted by GSAP to animate to glowing purple */
.manifesto-author {
    margin-top: 60px;
    font-size: 1.5rem;
    color: var(--text-muted);
    padding-left: 20px;
    border-left: 2px solid var(--accent-primary);
}

/* Marquee */
.marquee-divider {
    padding: 30px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: rgba(3, 3, 5, 0.5);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.bullet {
    color: var(--accent-primary);
    margin: 0 40px;
}

@keyframes marqueeScroll {
    100% {
        transform: translateX(-50%);
    }
}

/* Shared Headers */
.section-header {
    margin-bottom: 6vw;
}

.subtitle-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(94, 106, 210, 0.1);
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

/* 3. Services List (Hover Rows) */
.services-list {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s;
}

.service-row:last-child {
    border-bottom: 1px solid var(--border-light);
}

.sr-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--border-light);
    transition: color 0.4s;
}

.sr-content h3 {
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    transition: transform 0.4s var(--ease-out-expo);
}

.sr-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
    height: 0;
    overflow: hidden;
}

.sr-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out-expo);
}

.sr-tags span {
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s var(--ease-out-expo);
    margin-left: auto;
}

.sr-icon i {
    width: 32px;
    height: 32px;
    color: var(--text-pure);
}

/* Row Hover State */
.service-row:hover {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.service-row:hover .sr-number {
    color: var(--accent-primary);
}

.service-row:hover .sr-content h3 {
    transform: translateX(20px);
}

.service-row:hover .sr-content p {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.service-row:hover .sr-tags {
    opacity: 1;
    transform: translateY(0);
}

.service-row:hover .sr-icon {
    transform: scale(1);
    background: var(--text-pure);
    border-color: var(--text-pure);
}

.service-row:hover .sr-icon i {
    color: var(--bg-base);
}

/* 4. Impact Stats */
.impact-section {
    background: rgba(10, 10, 12, 0.3);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(20px);
}

.stat-val {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 5. Infinite Testimonials */
.testimonial-slider {
    margin-top: 80px;
    overflow: hidden;
    position: relative;
    display: flex;
}

/* Fade edges */
.testimonial-slider::before,
.testimonial-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.testimonial-track {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    animation: testScroll 30s linear infinite;
    width: max-content;
}

.test-card {
    width: 450px;
    background: rgba(20, 20, 25, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
}

.stars {
    color: #FBBF24;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.test-card p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.client-info a {
    color: var(--text-muted);
}

.client-info strong {
    color: var(--text-pure);
    display: block;
    font-size: 1.1rem;
}

@keyframes testScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* 6. Massive CTA Footer */
.footer {
    padding: 0 4vw 4vw 4vw;
}

.cta-massive {
    position: relative;
    background: #000;
    border-radius: 40px;
    padding: 10vw 4vw;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.cta-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(94, 106, 210, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.heavy-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.cta-p {
    font-size: 1.5rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.btn-uber-premium {
    padding: 24px 48px;
    border-radius: 100px;
    background: #25D366;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

.btn-uber-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 211, 102, 0.3);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
}

.social-links-footer {
    display: flex;
    gap: 24px;
}

.social-links-footer a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.social-links-footer a:hover {
    color: var(--text-pure);
}

/* GSAP Utils */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 40px;
    }

    .hero-content-left {
        text-align: center;
        order: 2;
    }

    .hero-badge-wrapper {
        justify-content: center;
    }

    .hero-p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-wrapper {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-image-inner {
        height: 350px;
        max-width: 300px;
    }

    .ft-1 {
        right: 10px;
    }

    .ft-2 {
        left: 10px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 40px 0;
    }

    .sr-number {
        font-size: 2rem;
    }

    .sr-icon {
        display: none;
    }

    .sr-content p,
    .sr-tags {
        opacity: 1;
        transform: translateY(0);
        height: auto;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .scroll-indicator-custom {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(3, 3, 5, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s var(--ease-out-expo);
        z-index: 100;
        border-left: 1px solid var(--border-light);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .test-card {
        width: 85vw;
    }

    .hero-image-inner {
        height: 300px;
        max-width: 260px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .huly-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .huly-section {
        padding: 40px 0;
    }

    .huly-mockup-wrapper {
        padding: 0 4vw;
        max-width: 100%;
    }

    .huly-mockup-frame {
        padding: 4px;
        border-radius: 8px;
    }

    .marquee-text {
        font-size: 1.1rem;
    }

    /* Disable custom cursor on mobile */
    .cursor, .cursor-follower {
        display: none !important;
    }
    
    * {
        cursor: auto !important;
    }
}

/* =========================================
   HULY-STYLE SECTIONS
   ========================================= */
.huly-section {
    position: relative;
    z-index: 5;
    background: var(--bg-base);
}

.huly-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 700;
    margin-bottom: 24px;
}

.huly-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.huly-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1500px;
    border-radius: 20px;
}

.huly-glow-layer {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(94, 106, 210, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
    border-radius: inherit;
    opacity: 0.8;
}

.huly-glow-layer.github-glow {
    inset: -2px;
    background: transparent;
    border-radius: 16px;
    filter: blur(8px);
    overflow: hidden;
    opacity: 1;
}

.huly-glow-layer.github-glow::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        transparent 25%,
        rgba(0, 140, 255, 1) 35%,
        transparent 45%,
        transparent 75%,
        rgba(255, 91, 34, 1) 85%,
        transparent 95%
    );
    animation: rotateGlow 4s linear infinite;
    z-index: -1;
    filter: none;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.office-glow {
    background: radial-gradient(circle, rgba(144, 78, 149, 0.3) 0%, transparent 65%);
}

.office-bg-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vw;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.02) 10%, transparent 20%),
                radial-gradient(circle, rgba(255,255,255,0.02) 10%, transparent 20%);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.huly-mockup-frame {
    position: relative;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0d0d12;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

.huly-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
    margin-top: 80px;
}

.h-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.h-feature p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 1.05rem;
}

.h-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.git-icon { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" stroke="%23ff5b22" stroke-width="2" fill="none" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12c0 4.42 2.87 8.17 6.84 9.5.5.08.66-.23.66-.5v-1.69c-2.77.6-3.36-1.34-3.36-1.34-.45-1.15-1.11-1.46-1.11-1.46-.91-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.87 1.52 2.34 1.07 2.91.83.09-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.92 0-1.11.38-2 1.03-2.71-.1-.25-.45-1.29.1-2.64 0 0 .84-.27 2.75 1.02.79-.22 1.65-.33 2.5-.33.85 0 1.71.11 2.5.33 1.91-1.29 2.75-1.02 2.75-1.02.55 1.35.2 2.39.1 2.64.65.71 1.03 1.6 1.03 2.71 0 3.82-2.34 4.66-4.57 4.91.36.31.69.92.69 1.85V21c0 .27.16.59.67.5C19.14 20.16 22 16.42 22 12A10 10 10 0 0 12 2Z"/></svg>'); filter: drop-shadow(0 0 8px rgba(255, 91, 34, 0.6)); }
.task-icon { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" stroke="%233b82f6" fill="none" viewBox="0 0 24 24" stroke-width="2"><rect x="3" y="3" width="7" height="7"></rect><rect x="14" y="3" width="7" height="7"></rect><rect x="14" y="14" width="7" height="7"></rect><rect x="3" y="14" width="7" height="7"></rect></svg>'); filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));}
.repo-icon { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" stroke="%233b82f6" fill="none" viewBox="0 0 24 24" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10"/></svg>'); filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.6));}

.huly-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 900px) {
    .huly-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   CUSTOM PREMIUM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary) 0%, #008cff 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff7140 0%, #33a1ff 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) #050505;
}

/* =========================================
   MOUSE SCROLL INDICATOR
   ========================================= */
.scroll-indicator-custom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-indicator-custom:hover {
    opacity: 1;
}

.mouse-outline {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.mouse-wheel-custom {
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-primary);
}

.scroll-text-custom {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}