@charset "utf-8";
/* CSS Document */

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

        :root {
            --primary-grey: #e5e7eb;
            --primary-orange: #f97316;
            --primary-purple: #7c3aed;
            --secondary-amber: #fbbf24;
            --dark-bg: #1a0b2e;
            --darker-bg: #0f051a;
            --card-bg: rgba(229, 231, 235, 0.03);
            --border-color: rgba(229, 231, 235, 0.2);
            --text-primary: #ffffff;
            --text-secondary: #a1a1aa;
            --primary-cyan: #00ffff;
            --primary-pink: #ff00ff;
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            background: var(--darker-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Enhanced Cyberpunk Background */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker-bg);
            overflow: hidden;
            z-index: -5;
        }

        /* Animated gradient background */
        .cyber-gradient {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 60% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
            animation: gradientRotate 30s linear infinite;
            filter: blur(40px);
        }

        @keyframes gradientRotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Matrix rain effect */
        .matrix-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.15;
            z-index: -1;
        }

        .matrix-column {
            position: absolute;
            top: -100vh;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: var(--primary-cyan);
            text-shadow: 0 0 5px var(--primary-cyan);
            animation: matrixFall linear infinite;
            writing-mode: vertical-rl;
            text-orientation: upright;
            background: linear-gradient(to bottom, transparent 0%, var(--primary-cyan) 50%, transparent 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            z-index: -1;
        }

        .matrix-column:nth-child(3n) {
            color: var(--primary-pink);
            text-shadow: 0 0 5px var(--primary-pink);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-pink) 50%, transparent 100%);
        }

        .matrix-column:nth-child(5n) {
            color: var(--primary-purple);
            text-shadow: 0 0 5px var(--primary-purple);
            background: linear-gradient(to bottom, transparent 0%, var(--primary-purple) 50%, transparent 100%);
        }

        @keyframes matrixFall {
            0% { transform: translateY(0); }
            100% { transform: translateY(200vh); }
        }

        /* Animated grid overlay */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
        }

        .grid-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }

        .grid-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 0, 255, 0.03) 2px, transparent 2px),
                linear-gradient(90deg, rgba(255, 0, 255, 0.03) 2px, transparent 2px);
            background-size: 100px 100px;
            animation: gridMove 30s linear infinite reverse;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Floating particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--primary-cyan);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-cyan);
            animation: float 20s infinite;
            opacity: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .particle:nth-child(odd) {
            background: var(--primary-pink);
            box-shadow: 0 0 10px var(--primary-pink);
            animation-duration: 25s;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }

        /* Glowing orbs */
        .orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: orbFloat 20s ease-in-out infinite;
            pointer-events: none;
            z-index: -4;
        }

        .orb1 {
            width: 300px;
            height: 300px;
            background: var(--primary-cyan);
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }

        .orb2 {
            width: 400px;
            height: 400px;
            background: var(--primary-pink);
            bottom: 10%;
            right: -200px;
            animation-delay: 5s;
        }

        .orb3 {
            width: 250px;
            height: 250px;
            background: var(--primary-purple);
            top: 50%;
            left: 50%;
            animation-delay: 10s;
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(100px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-50px, 100px) scale(0.9);
            }
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .scanlines::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                transparent 0%,
                rgba(0, 255, 255, 0.03) 50%,
                transparent 100%
            );
            background-size: 100% 4px;
            animation: scanline 8s linear infinite;
        }

        .scanlines::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
            pointer-events: none;
        }

        /* Noise texture overlay */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            pointer-events: none;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
                repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0, 255, 255, 0.02) 2px, rgba(0, 255, 255, 0.02) 4px);
        }

        @keyframes scanline {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            z-index: 10000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Mobile Menu Button */
        .mobile-menu-button {
            display: none;
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 30px;
            transition: all 0.3s ease;
        }

        .mobile-menu-button:hover {
            color: var(--primary-orange);
            transform: scale(1.1);
        }

        .hamburger {
            position: relative;
            width: 25px;
            height: 20px;
            margin: auto;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--primary-cyan);
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.25s ease-in-out;
            box-shadow: 0 0 5px var(--primary-cyan);
            transform-origin: center;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            top: 18px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(1) {
            top: 9px;
            transform: rotate(135deg);
            background: var(--primary-orange);
        }

        .mobile-menu-button.active .hamburger span:nth-child(2) {
            opacity: 0;
            left: -25px;
        }

        .mobile-menu-button.active .hamburger span:nth-child(3) {
            top: 9px;
            transform: rotate(-135deg);
            background: var(--primary-orange);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 78px;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: calc(100vh - 78px);
            background: var(--darker-bg);
            backdrop-filter: blur(20px);
            border-left: 2px solid var(--border-color);
            z-index: 9999;
            transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            overflow-y: auto;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            /* Force menu to be hidden by default */
            visibility: hidden;
            opacity: 0;
        }

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

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .mobile-menu-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }

        .mobile-menu-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 15px var(--primary-cyan);
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

        .mobile-menu-logo:hover {
            text-shadow: 0 0 25px var(--primary-cyan);
            transform: scale(1.05);
        }

        .mobile-menu-logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--primary-cyan);
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-close:hover {
            color: var(--primary-orange);
            transform: rotate(90deg);
        }

        .mobile-menu-nav {
            padding: 0;
            flex-grow: 1;
        }

        .mobile-menu-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-nav li {
            margin: 0;
        }

        .mobile-menu-nav a {
            display: block;
            padding: 1.5rem 2rem;
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            border-bottom: 1px solid rgba(229, 231, 235, 0.1);
        }

        .mobile-menu-nav a:hover {
            color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.05);
            padding-left: 3rem;
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .mobile-menu-nav a::before {
            content: '>';
            position: absolute;
            left: 2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--primary-orange);
        }

        .mobile-menu-nav a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu-nav li:last-child a {
            border-bottom: none;
        }

        .mobile-menu-cta {
            padding: 2rem;
            flex-shrink: 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cyber-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
            width: 100%;
            text-align: center;
        }

        .cyber-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        /* Animation keyframes for mobile menu */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        /* Desktop Navigation Layout */
        @media (min-width: 769px) {
            .mobile-menu-button {
                display: none !important;
            }
            
            .nav-container {
                flex-direction: row;
                align-items: center;
                gap: 0;
            }
            
            .nav-top {
                flex: 0 0 auto;
            }
            
            .nav-links {
                flex: 1;
                display: flex;
                flex-direction: row;
                justify-content: center;
                margin: 0 2rem;
                max-width: none;
            }
            
            .nav-links a {
                padding: 0;
                border-bottom: none;
                font-size: 0.9rem;
            }
            
            .nav-links a:hover {
                background: none;
                transform: none;
                padding-left: 0;
            }
            
            .nav-links a::before {
                display: none;
            }
            
            .nav-bottom {
                flex: 0 0 auto;
            }
            
            .cyber-button {
                width: auto;
                max-width: none;
            }
        }

        /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--primary-cyan);
            font-weight: 700;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-image {
            width: 40px;
            height: 40px;
            object-fit: contain;
            filter: drop-shadow(0 0 10px var(--primary-cyan));
            transition: all 0.3s ease;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .logo:hover .logo-image {
            filter: drop-shadow(0 0 20px var(--primary-cyan)) brightness(1.2);
            transform: scale(1.1);
        }

        .logo:hover .logo-text {
            text-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
        }

        /* Mobile Logo Styling */
        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--primary-cyan);
            font-weight: 700;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .mobile-logo-image {
            width: 35px;
            height: 35px;
            object-fit: contain;
            filter: drop-shadow(0 0 8px var(--primary-cyan));
        }

        .mobile-logo-text {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hero Section Logo */
        .hero-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            filter: drop-shadow(0 0 30px var(--primary-cyan));
            animation: logoFloat 3s ease-in-out infinite;
        }

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

        /* Footer Logo */
        .footer-logo {
            width: 60px;
            height: 60px;
            margin: 0 auto 1rem;
            filter: drop-shadow(0 0 15px var(--primary-cyan));
            opacity: 0.8;
        }

        /* Responsive Logo */
        @media (max-width: 768px) {
            .logo-image {
                width: 35px;
                height: 35px;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .hero-logo {
                width: 100px;
                height: 100px;
            }
        }

        @media (max-width: 480px) {
            .logo-image {
                width: 30px;
                height: 30px;
            }
            
            .logo-text {
                font-size: 1rem;
            }
            
            .hero-logo {
                width: 80px;
                height: 80px;
            }
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-shadow: 0 0 20px var(--primary-cyan);
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .logo:hover {
            text-shadow: 0 0 30px var(--primary-cyan);
            transform: scale(1.05);
        }

        .logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-orange);
            transition: all 0.3s ease;
        }

        .logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange);
        }

        .logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-cyan);
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-size: 0.9rem;

            letter-spacing: 1px;
        }

        .nav-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
            transition: width 0.3s ease;
            box-shadow: 0 0 10px var(--primary-cyan);
        }

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

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            cursor: pointer;
            line-height: 1.2;
        }

        .hero-nexus {
            background: linear-gradient(135deg, var(--primary-cyan), #00ccff);
            background: -webkit-linear-gradient(135deg, var(--primary-cyan), #00ccff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
            animation: cyanPulse 3s ease-in-out infinite;
            position: relative;
        }

        .hero-flow {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            background: -webkit-linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            animation: purplePulse 3s ease-in-out infinite;
            animation-delay: 1.5s;
            position: relative;
        }

        @keyframes cyanPulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(0, 255, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(0, 255, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        @keyframes purplePulse {
            0%, 100% { 
                filter: brightness(1) drop-shadow(0 0 15px rgba(255, 0, 255, 0.6));
                transform: translateY(0) scale(1);
            }
            50% { 
                filter: brightness(1.1) drop-shadow(0 0 25px rgba(255, 0, 255, 0.8));
                transform: translateY(-2px) scale(1.01);
            }
        }

        /* Clean hover effect */
        .hero-title:hover .hero-nexus {
            transform: translateX(-3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(0, 255, 255, 0.9));
        }

        .hero-title:hover .hero-flow {
            transform: translateX(3px) scale(1.02);
            filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 0, 255, 0.9));
        }

        /* Subtle background glow for each word */
        .hero-nexus::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            pointer-events: none;
        }

        .hero-flow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 0, 255, 0.08) 0%, transparent 60%);
            filter: blur(50px);
            z-index: -1;
            animation: glowPulse 4s ease-in-out infinite;
            animation-delay: 2s;
            pointer-events: none;
        }

        @keyframes glowPulse {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
        }

        /* Apply animation pause on hover */
        .hero-title:hover .hero-nexus,
        .hero-title:hover .hero-flow {
            animation-play-state: paused;
        }

        /* Border animation */
        .hero-nexus::after,
        .hero-flow::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 3px;
            transition: width 0.3s ease;
        }

        .hero-nexus::after {
            background: linear-gradient(90deg, var(--primary-cyan), transparent);
        }

        .hero-flow::after {
            background: linear-gradient(90deg, transparent, var(--primary-pink));
            left: auto;
            right: 0;
        }

        .hero-title:hover .hero-nexus::after,
        .hero-title:hover .hero-flow::after {
            width: 100%;
        }

        /* Typing effect for hero text on load */
        @keyframes typeIn {
            0% { 
                opacity: 0;
                transform: translateY(20px);
            }
            100% { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Remove scanner line for cleaner look */

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 0.9;
            background: linear-gradient(135deg, var(--text-secondary), var(--primary-grey));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            color: var(--darker-bg);
            padding: 1.2rem 3rem;
            border: none;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

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

        .btn-secondary {
            background: transparent;
            color: var(--primary-cyan);
            padding: 1.2rem 3rem;
            border: 2px solid var(--primary-cyan);
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
        }

        .btn-secondary:hover {
            background: var(--primary-cyan);
            color: var(--darker-bg);
            box-shadow: 0 0 30px var(--primary-cyan);
        }

        /* Features Section */
        .features {
            padding: 120px 2rem;
            position: relative;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--primary-purple));
            box-shadow: 0 0 20px var(--primary-cyan);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
        }

        .feature-card:hover::before {
            opacity: 0.1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            clip-path: polygon(15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0% 100%, 0% 15px);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .feature-card p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Stats Section */
        .stats {
            padding: 80px 2rem;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            position: relative;
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            margin-bottom: 0.5rem;
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Pricing Section */
        .pricing {
            padding: 120px 2rem;
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 5rem;
        }

        .pricing-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
        }

        .pricing-card.featured {
            border-color: var(--primary-cyan);
            background: rgba(0, 255, 255, 0.05);
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
        }

        .pricing-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            color: var(--darker-bg);
            padding: 0.5rem 2rem;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 255, 255, 0.2);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-cyan);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px var(--primary-cyan);
        }

        .plan-period {
            color: var(--text-secondary);
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 3rem;
            text-align: left;
        }

        .plan-features li {
            padding: 1rem 0;
            color: var(--text-secondary);
            position: relative;
            padding-left: 2rem;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .plan-features li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-cyan);
            font-size: 0.8rem;
        }

        /* Contact CTA Section */
        .contact-cta {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem;
            background: rgba(0, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
            clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
            z-index: -1;
        }

        .contact-cta:hover::before {
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
        }

        .cta-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-primary,
        .cta-buttons .btn-secondary {
            min-width: 200px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .contact-cta {
                padding: 2rem 1rem;
            }
            
            .cta-content h3 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn-primary,
            .cta-buttons .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Contact Section */
        .contact {
            padding: 120px 2rem;
            background: rgba(0, 255, 255, 0.02);
            border-top: 1px solid var(--border-color);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Footer */
        .footer {
            padding: 60px 2rem 40px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-links {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0 0.5rem;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
            text-shadow: 0 0 10px var(--primary-cyan);
            transform: translateY(-2px);
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
            box-shadow: 0 0 5px var(--primary-cyan);
        }

        .footer-links a:hover::after {
            width: 80%;
        }

        .footer-separator {
            color: var(--primary-cyan);
            opacity: 0.5;
            font-size: 0.8rem;
            margin: 0 0.2rem;
        }

        .footer-bottom {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        .footer-credit {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-top: 0.5rem;
        }

        .footer-credit a {
            color: var(--primary-cyan);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-credit a:hover {
            color: var(--primary-pink);
            text-shadow: 0 0 10px var(--primary-pink);
            text-decoration: underline;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-button {
                display: block !important;
            }
            
            .nav-links {
                display: none;
            }
            
            .nav-bottom .cyber-button {
                display: none;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact {
                padding: 80px 1rem;
            }
            
            .contact-form {
                padding: 2rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .footer-links a {
                padding: 0.5rem 1rem;
            }
            
            .footer-separator {
                display: none;
            }
            
            .footer {
                margin-top: 40px;
                padding: 40px 1rem 30px;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 90%;
                max-width: none;
            }
            
            .mobile-menu-header {
                padding: 1.5rem;
            }
            
            .mobile-menu-nav a {
                padding: 1.2rem 1.5rem;
                font-size: 1rem;
            }
            
            .mobile-menu-cta {
                padding: 1.5rem;
            }
            
            .cyber-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-nexus, .hero-flow {
                display: block;
                margin: 0;
            }
        }

        /* Scroll animations */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

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

        /* Data streams */
        .data-streams {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -3;
            pointer-events: none;
        }

        .data-stream {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
            opacity: 0;
            animation: dataFlow 3s ease-in-out infinite;
        }

        .data-stream:nth-child(odd) {
            background: linear-gradient(90deg, transparent, var(--primary-pink), transparent);
            animation-duration: 4s;
        }

        @keyframes dataFlow {
            0% {
                width: 0;
                opacity: 0;
                transform: translateX(0);
            }
            50% {
                width: 300px;
                opacity: 0.8;
            }
            100% {
                width: 0;
                opacity: 0;
                transform: translateX(100vw);
            }
        }



        /* Mobile matrix rain enhancement */
        @media (max-width: 768px) {
            .matrix-rain {
                opacity: 0.3;
            }
            
            .matrix-column {
                font-size: 12px;
                text-shadow: 0 0 8px currentColor;
            }
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            .cyber-gradient,
            .grid-lines,
            .grid-glow,
            .particle,
            .orb,
            .matrix-column,
            .scanlines::before,
            .data-stream {
                animation: none !important;
            }
        }

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

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

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary-cyan), var(--primary-pink));
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--primary-pink), var(--primary-cyan));
        }

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navigation fixes */
    nav {
        padding: 0.8rem 1rem;
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .nav-container {
        gap: 1rem;
        height: 100%;
        align-items: center;
    }
    
    .logo {
        font-size: 1.4rem;
        letter-spacing: 1px;
        flex-shrink: 0;
    }
    
    /* Mobile menu improvements */
    .mobile-menu {
        top: 70px;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        border-left: 1px solid var(--border-color);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-menu-header {
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-logo {
        font-size: 1.3rem;
    }
    
    .mobile-menu-nav a {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 0.5px;
        min-height: 50px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-cta {
        padding: 1.5rem;
    }
    
    .cyber-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 120px 1rem 80px;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }
    
    .hero-container {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: 2px;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .hero-nexus, .hero-flow {
        display: inline-block;
        margin: 0;
        word-break: keep-all;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        line-height: 1.5;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    /* Features section mobile fixes */
    .features {
        padding: 80px 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        word-break: keep-all;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin: 0;
        min-height: auto;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        word-break: keep-all;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Stats section mobile fixes */
    .stats {
        padding: 60px 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
        word-break: keep-all;
    }
    
    .stat-label {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    /* Contact section mobile fixes */
    .contact {
        padding: 80px 1rem;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        word-break: keep-all;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        word-break: break-word;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons .btn-primary {
        width: 100%;
        max-width: 280px;
        min-height: 50px;
    }
    
    /* Footer mobile fixes */
    .footer {
        padding: 40px 1rem 30px;
        margin-top: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        padding: 0.3rem 0;
        font-size: 0.85rem;
        min-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        word-break: break-word;
    }
    
    .footer-credit {
        font-size: 0.75rem;
    }
    
    /* Mobile menu button improvements */
    .mobile-menu-button {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-button:hover {
        background: rgba(0, 255, 255, 0.1);
    }
    
    .hamburger {
        width: 20px;
        height: 16px;
    }
    
    .hamburger span {
        height: 2px;
        border-radius: 1px;
    }
    
    /* Reduce background effects on mobile for better performance */
    .cyber-gradient {
        filter: blur(20px);
        opacity: 0.5;
    }
    
    .matrix-rain {
        opacity: 0.1;
    }
    
    .particle {
        display: none;
    }
    
    .orb {
        opacity: 0.3;
    }
    
    .grid-lines {
        opacity: 0.3;
    }
    
    .grid-glow {
        opacity: 0.2;
    }
    
    .scanlines::before {
        opacity: 0.1;
    }
    
    .noise-overlay {
        opacity: 0.02;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Navigation for very small screens */
    nav {
        padding: 0.6rem 0.8rem;
        height: 65px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    /* Mobile menu for very small screens */
    .mobile-menu {
        width: 90%;
        max-width: none;
        top: 65px;
        height: calc(100vh - 65px);
    }
    
    .mobile-menu-header {
        padding: 1.2rem;
    }
    
    .mobile-menu-logo {
        font-size: 1.1rem;
    }
    
    .mobile-menu-nav a {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
        min-height: 45px;
    }
    
    .mobile-menu-cta {
        padding: 1.2rem;
    }
    
    .cyber-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        min-height: 45px;
    }
    
    /* Hero section for very small screens */
    .hero {
        padding: 100px 0.8rem 60px;
        min-height: 85vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        letter-spacing: 1px;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.3rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
        gap: 0.8rem;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 260px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
        min-height: 45px;
    }
    
    /* Features for very small screens */
    .features {
        padding: 60px 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
    
    .feature-card {
        padding: 1.8rem 1.2rem;
        margin: 0;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    /* Stats for very small screens */
    .stats {
        padding: 50px 0.8rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
        padding: 0 0.3rem;
    }
    
    .stat-number {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Contact for very small screens */
    .contact {
        padding: 60px 0.8rem;
    }
    
    .contact-cta {
        padding: 1.8rem 1.2rem;
        margin: 0;
        border-radius: 12px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .cta-buttons .btn-primary {
        max-width: 260px;
        min-height: 45px;
    }
    
    /* Footer for very small screens */
    .footer {
        padding: 30px 0.8rem 25px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        min-height: 25px;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .footer-credit {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    /* Mobile menu button for very small screens */
    .mobile-menu-button {
        width: 35px;
        height: 35px;
    }
    
    .hamburger {
        width: 18px;
        height: 14px;
    }
}

/* Landscape mobile orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 1rem 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: 200px;
        min-height: 45px;
    }
    
    .mobile-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .features {
        padding: 60px 1rem;
    }
    
    .stats {
        padding: 40px 1rem;
    }
    
    .contact {
        padding: 60px 1rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-links a,
    .mobile-menu-nav a,
    .btn-primary,
    .btn-secondary,
    .cyber-button {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Better button spacing */
    .hero-buttons {
        gap: 1.2rem;
    }
    
    /* Improved card spacing */
    .feature-card {
        margin-bottom: 1rem;
        touch-action: manipulation;
    }
    
    /* Better text readability */
    .hero-subtitle,
    .section-subtitle,
    .feature-card p,
    .cta-content p {
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Prevent text selection on buttons */
    .btn-primary,
    .btn-secondary,
    .cyber-button {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Improve scrolling performance */
    .hero,
    .features,
    .stats,
    .contact {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix for iOS Safari viewport issues */
    .hero {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
}

/* High DPI display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title,
    .section-title,
    .feature-card h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .cyber-gradient,
    .grid-lines,
    .grid-glow,
    .particle,
    .orb,
    .matrix-column,
    .scanlines::before,
    .data-stream,
    .hero-nexus,
    .hero-flow {
        animation: none !important;
    }
    
    .mobile-menu {
        transition: none !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .feature-card:hover {
        transform: none !important;
    }
}

/* Chrome-specific performance optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Chrome-specific fixes */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        will-change: auto;
    }
    
    /* Reduce animation complexity for Chrome */
    .cyber-gradient {
        animation-duration: 40s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .matrix-column {
        animation-duration: 12s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .particle {
        animation-duration: 25s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .orb {
        animation-duration: 25s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .grid-lines {
        animation-duration: 25s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .grid-glow {
        animation-duration: 35s;
        will-change: transform;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Chrome-specific navigation fixes */
    nav {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .mobile-menu {
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Chrome-specific button fixes */
    .btn-primary,
    .btn-secondary,
    .cyber-button {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Chrome-specific card fixes */
    .feature-card {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    
    /* Chrome-specific hero fixes */
    .hero-title {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: auto;
    }
    
    .hero-nexus,
    .hero-flow {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: auto;
    }
}

/* Chrome-specific layout fixes for header, menu, and general layout */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Chrome-specific navigation layout fixes */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 70px;
        padding: 0.8rem 1rem;
        background: rgba(15, 15, 35, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        z-index: 10000;
        display: flex;
        align-items: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        gap: 1rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    /* Chrome-specific logo fixes */
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-cyan);
        text-shadow: 0 0 20px var(--primary-cyan);
        text-decoration: none;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Chrome-specific desktop navigation fixes */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 2.5rem;
        margin: 0;
        padding: 0;
        align-items: center;
        flex: 1;
        justify-content: center;
    }
    
    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0.5rem 0;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
    }
    
    .nav-links a:hover {
        color: var(--primary-cyan);
        text-shadow: 0 0 10px var(--primary-cyan);
    }
    
    /* Chrome-specific mobile menu button fixes */
    .mobile-menu-button {
        display: none;
        background: none;
        border: none;
        color: var(--primary-cyan);
        font-size: 1.5rem;
        cursor: pointer;
        position: relative;
        width: 40px;
        height: 40px;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-button:hover {
        color: var(--primary-orange);
        -webkit-transform: translateZ(0) scale(1.1);
        transform: translateZ(0) scale(1.1);
    }
    
    .hamburger {
        position: relative;
        width: 20px;
        height: 16px;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger span {
        display: block;
        position: relative;
        height: 2px;
        width: 100%;
        background: var(--primary-cyan);
        border-radius: 1px;
        opacity: 1;
        transition: all 0.25s ease-in-out;
        box-shadow: 0 0 5px var(--primary-cyan);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
    
    /* Chrome-specific mobile menu fixes */
    .mobile-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: var(--darker-bg);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        z-index: 9999;
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        display: flex;
        flex-direction: column;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
        /* Force menu to be hidden by default */
        visibility: hidden;
        opacity: 0;
    }
    
    .mobile-menu.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-header {
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }
    
    .mobile-menu-logo {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-cyan);
        text-shadow: 0 0 15px var(--primary-cyan);
        text-decoration: none;
        display: flex;
        align-items: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        color: var(--primary-cyan);
        font-size: 1.5rem;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .mobile-menu-close:hover {
        color: var(--primary-orange);
        -webkit-transform: translateZ(0) rotate(90deg);
        transform: translateZ(0) rotate(90deg);
    }
    
    .mobile-menu-nav {
        padding: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-menu-nav li {
        margin: 0;
        display: flex;
    }
    
    .mobile-menu-nav a {
        display: flex;
        align-items: center;
        padding: 1.2rem 1.5rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        border-bottom: 1px solid rgba(229, 231, 235, 0.1);
        min-height: 50px;
        width: 100%;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-nav a:hover {
        color: var(--primary-cyan);
        background: rgba(0, 255, 255, 0.05);
        padding-left: 2.5rem;
        text-shadow: 0 0 10px var(--primary-cyan);
    }
    
    .mobile-menu-cta {
        padding: 1.5rem;
        flex-shrink: 0;
        border-top: 1px solid var(--border-color);
    }
    
    .cyber-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
        color: var(--darker-bg);
        padding: 0.9rem 1.5rem;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
        width: 100%;
        text-align: center;
        min-height: 50px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
    }
    
    .cyber-button:hover {
        -webkit-transform: translateZ(0) translateY(-2px);
        transform: translateZ(0) translateY(-2px);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    
    /* Chrome-specific hero section fixes */
    .hero {
        padding: 150px 2rem 100px;
        text-align: center;
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        margin-top: 70px;
    }
    
    .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 900;
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        position: relative;
        cursor: pointer;
        line-height: 1.2;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
        opacity: 0.9;
        line-height: 1.6;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .hero-buttons {
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Chrome-specific button fixes */
    .btn-primary,
    .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        -webkit-appearance: none;
        min-height: 50px;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
        color: var(--darker-bg);
        padding: 1.2rem 3rem;
        border: none;
        clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    }
    
    .btn-secondary {
        background: transparent;
        color: var(--primary-cyan);
        padding: 1.2rem 3rem;
        border: 2px solid var(--primary-cyan);
        clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        -webkit-transform: translateZ(0) translateY(-3px);
        transform: translateZ(0) translateY(-3px);
    }
    
    /* Chrome-specific desktop navigation display */
    @media (min-width: 769px) {
        .mobile-menu-button {
            display: none !important;
        }
        
        .nav-container {
            flex-direction: row;
            align-items: center;
            gap: 0;
        }
        
        .nav-links {
            flex: 1;
            display: flex;
            flex-direction: row;
            justify-content: center;
            margin: 0 2rem;
            max-width: none;
        }
        
        .nav-links a {
            padding: 0;
            border-bottom: none;
            font-size: 0.9rem;
        }
        
        .nav-links a:hover {
            background: none;
            -webkit-transform: none;
            transform: none;
            padding-left: 0;
        }
        
        .nav-bottom {
            flex: 0 0 auto;
        }
        
        .cyber-button {
            width: auto;
            max-width: none;
        }
    }
    
    /* Chrome-specific mobile navigation display */
    @media (max-width: 768px) {
        .mobile-menu-button {
            display: flex !important;
        }
        
        .nav-links {
            display: none;
        }
        
        .nav-bottom .cyber-button {
            display: none;
        }
        
        .nav-container {
            justify-content: space-between;
        }
        
        .logo {
            font-size: 1.4rem;
        }
    }
}

/* Chrome-specific mobile layout fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    nav {
        height: 70px;
        padding: 0.8rem 1rem;
    }
    
    .mobile-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero {
        padding: 120px 1rem 80px;
        min-height: 90vh;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* Chrome-specific very small screen layout fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 480px) {
    nav {
        height: 65px;
        padding: 0.6rem 0.8rem;
    }
    
    .mobile-menu {
        top: 65px;
        height: calc(100vh - 65px);
        width: 90%;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .mobile-menu-button {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        padding: 100px 0.8rem 60px;
        min-height: 85vh;
        margin-top: 65px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 260px;
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Chrome-specific landscape layout fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 1rem 60px;
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        max-width: 200px;
    }
    
    .mobile-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* Chrome-specific background fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .cyber-bg {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .matrix-rain {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .particles {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .data-streams {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .grid-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .scanlines {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .noise-overlay {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Chrome-specific mobile optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
    /* Disable complex animations on Chrome mobile */
    .cyber-gradient {
        animation: none;
        opacity: 0.3;
    }
    
    .matrix-rain {
        opacity: 0.05;
    }
    
    .particle {
        display: none;
    }
    
    .orb {
        opacity: 0.2;
        animation: none;
    }
    
    .grid-lines {
        opacity: 0.2;
        animation: none;
    }
    
    .grid-glow {
        opacity: 0.1;
        animation: none;
    }
    
    .scanlines::before {
        opacity: 0.05;
        animation: none;
    }
    
    .data-stream {
        display: none;
    }
    
    /* Chrome-specific mobile navigation */
    nav {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    .mobile-menu {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    /* Chrome-specific mobile button fixes */
    .btn-primary,
    .btn-secondary,
    .cyber-button {
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Chrome-specific mobile card fixes */
    .feature-card {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    
    /* Chrome-specific mobile text fixes */
    .hero-title,
    .section-title,
    .feature-card h3 {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Chrome-specific very small screen optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 480px) {
    /* Further reduce animations for very small screens */
    .cyber-gradient {
        display: none;
    }
    
    .matrix-rain {
        display: none;
    }
    
    .orb {
        display: none;
    }
    
    .grid-lines {
        display: none;
    }
    
    .grid-glow {
        display: none;
    }
    
    .scanlines {
        display: none;
    }
    
    .noise-overlay {
        display: none;
    }
    
    /* Chrome-specific very small screen navigation */
    nav {
        background: rgba(15, 15, 35, 0.95);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    
    .mobile-menu {
        background: var(--darker-bg);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
    
    /* Chrome-specific very small screen card fixes */
    .feature-card {
        background: var(--card-bg);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}

/* Chrome-specific landscape optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) and (orientation: landscape) {
    /* Reduce animations further in landscape */
    .cyber-gradient {
        opacity: 0.2;
        animation: none;
    }
    
    .matrix-rain {
        opacity: 0.03;
    }
    
    .particle {
        display: none;
    }
    
    .orb {
        opacity: 0.15;
        animation: none;
    }
    
    .grid-lines {
        opacity: 0.15;
        animation: none;
    }
    
    .grid-glow {
        opacity: 0.08;
        animation: none;
    }
    
    .scanlines::before {
        opacity: 0.03;
        animation: none;
    }
}

/* Chrome-specific performance fixes for all screen sizes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* Reduce animation complexity */
    @keyframes gradientRotate {
        0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); }
        50% { -webkit-transform: rotate(180deg) scale(1.1); transform: rotate(180deg) scale(1.1); }
        100% { -webkit-transform: rotate(360deg) scale(1); transform: rotate(360deg) scale(1); }
    }
    
    @keyframes matrixFall {
        0% { -webkit-transform: translateY(0); transform: translateY(0); }
        100% { -webkit-transform: translateY(200vh); transform: translateY(200vh); }
    }
    
    @keyframes float {
        0% {
            -webkit-transform: translateY(100vh) translateX(0);
            transform: translateY(100vh) translateX(0);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            -webkit-transform: translateY(-100vh) translateX(100px);
            transform: translateY(-100vh) translateX(100px);
            opacity: 0;
        }
    }
    
    @keyframes orbFloat {
        0%, 100% {
            -webkit-transform: translate(0, 0) scale(1);
            transform: translate(0, 0) scale(1);
        }
        33% {
            -webkit-transform: translate(100px, -50px) scale(1.1);
            transform: translate(100px, -50px) scale(1.1);
        }
        66% {
            -webkit-transform: translate(-50px, 100px) scale(0.9);
            transform: translate(-50px, 100px) scale(0.9);
        }
    }
    
    @keyframes gridMove {
        0% { -webkit-transform: translate(0, 0); transform: translate(0, 0); }
        100% { -webkit-transform: translate(50px, 50px); transform: translate(50px, 50px); }
    }
    
    @keyframes scanline {
        0% { -webkit-transform: translateY(-100%); transform: translateY(-100%); }
        100% { -webkit-transform: translateY(100%); transform: translateY(100%); }
    }
    
    @keyframes dataFlow {
        0% {
            width: 0;
            opacity: 0;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        50% {
            width: 300px;
            opacity: 0.8;
        }
        100% {
            width: 0;
            opacity: 0;
            -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
        }
    }
    
    /* Chrome-specific scrollbar fixes */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--darker-bg);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(var(--primary-cyan), var(--primary-pink));
        border-radius: 3px;
        -webkit-border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(var(--primary-pink), var(--primary-cyan));
    }
    
    /* Chrome-specific focus fixes */
    *:focus {
        outline: 2px solid var(--primary-cyan);
        outline-offset: 2px;
    }
    
    /* Chrome-specific selection fixes */
    ::selection {
        background: var(--primary-cyan);
        color: var(--darker-bg);
    }
    
    ::-moz-selection {
        background: var(--primary-cyan);
        color: var(--darker-bg);
    }
}

/* Chrome-specific reduced motion support */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (prefers-reduced-motion: reduce) {
    .cyber-gradient,
    .grid-lines,
    .grid-glow,
    .particle,
    .orb,
    .matrix-column,
    .scanlines::before,
    .data-stream,
    .hero-nexus,
    .hero-flow {
        animation: none !important;
        -webkit-animation: none !important;
    }
    
    .mobile-menu {
        transition: none !important;
        -webkit-transition: none !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .feature-card:hover {
        transform: none !important;
        -webkit-transform: none !important;
    }
    
    /* Disable all animations for Chrome with reduced motion */
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        -webkit-animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
    }
}