    

@charset "utf-8";
/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-orange: #fb923c;
            --primary-orange-dark: #ea580c;
            --primary-gold: #ea580c;
            --primary-yellow: #fb923c;
            --dark-grey: #374151;
            --medium-grey: #4b5563;
            --light-grey: #d1d5db;
            --white-bg: #ffffff;
            --card-bg: rgba(251, 146, 60, 0.05);
            --border-color: rgba(55, 65, 81, 0.2);
            --text-primary: #111827;
            --text-secondary: #4b5563;
            --primary-cyan: #fb923c;
            --primary-pink: #ea580c;
        }

        body {
            font-family: 'JetBrains Mono', 'Fira Code', monospace;
            background: #ffffff;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Clean White Background */
        .cyber-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #ffffff;
            overflow: hidden;
            z-index: -5;
        }

        /* Clean white background */
        .cyber-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
        }




        /* Floating particles - contained within hero section */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
            opacity: 1;
        }

        .particle {
            position: absolute;
            animation: stripeFlow 8s linear infinite;
            pointer-events: none;
            will-change: transform;
        }

        /* Vertical stripes - thinner mixed gray/orange */
        .particle:nth-child(4n) {
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg,
                transparent 0%,
                rgba(255, 140, 66, 0.12) 15%,
                rgba(200, 200, 200, 0.22) 35%,
                rgba(255, 140, 66, 0.18) 50%,
                rgba(200, 200, 200, 0.26) 65%,
                rgba(255, 140, 66, 0.12) 85%,
                transparent 100%);
            border-radius: 0;
            box-shadow: 0 0 6px rgba(255, 140, 66, 0.2);
            animation: stripeFlow 15s linear infinite !important;
            transform-origin: center;
        }

        /* Diagonal stripes - thinner mixed */
        .particle:nth-child(4n+1) {
            width: 100px;
            height: 1px;
            background: linear-gradient(45deg,
                transparent 0%,
                rgba(200, 200, 200, 0.18) 20%,
                rgba(255, 107, 53, 0.22) 40%,
                rgba(200, 200, 200, 0.26) 60%,
                rgba(255, 107, 53, 0.18) 80%,
                transparent 100%);
            border-radius: 0;
            box-shadow: 0 0 4px rgba(255, 107, 53, 0.25);
            transform: rotate(15deg);
            animation: diagonalStripe 15s linear infinite !important;
            transform-origin: center;
        }

        /* Horizontal scan lines - thinner mixed */
        .particle:nth-child(4n+2) {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(200, 200, 200, 0.15) 25%,
                rgba(255, 140, 66, 0.22) 40%,
                rgba(200, 200, 200, 0.26) 60%,
                rgba(255, 140, 66, 0.18) 75%,
                transparent 100%);
            border-radius: 0;
            box-shadow: 0 0 3px rgba(255, 140, 66, 0.28);
            animation: scanLine 15s linear infinite !important;
            transform-origin: center;
        }

        /* Tech grid lines - thinner mixed */
        .particle:nth-child(4n+3) {
            width: 50px;
            height: 50px;
            background: transparent;
            border: 0.5px solid rgba(200, 200, 200, 0.12);
            border-radius: 0;
            box-shadow: inset 0 0 3px rgba(255, 140, 66, 0.12);
            animation: gridFloat 15s linear infinite !important;
            transform-origin: center;
        }

        /* Internet text elements */
        .particle:nth-child(7n) {
            width: auto;
            height: auto;
            background: transparent;
            border: none;
            border-radius: 0;
            box-shadow: none;
            color: rgba(255, 140, 66, 0.2);
            font-size: 10px;
            font-family: 'Orbitron', monospace;
            font-weight: bold;
            text-align: center;
            line-height: 1;
            text-shadow: 0 0 4px rgba(255, 140, 66, 0.3);
            white-space: nowrap;
            animation: textFloat 18s linear infinite !important;
            transform-origin: center;
        }

        @keyframes stripeFlow {
            0% {
                transform: translateY(120%) translateX(0);
                opacity: 0;
            }
            15% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
                transform: translateY(60%) translateX(10px);
            }
            85% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-20%) translateX(-20px);
                opacity: 0;
            }
        }

        @keyframes diagonalStripe {
            0% {
                transform: translateX(-120%) translateY(120%) rotate(15deg);
                opacity: 0;
            }
            25% {
                opacity: 0.7;
            }
            75% {
                opacity: 0.9;
            }
            100% {
                transform: translateX(120%) translateY(-120%) rotate(15deg);
                opacity: 0;
            }
        }

        @keyframes scanLine {
            0% {
                transform: translateX(-120%);
                opacity: 0;
            }
            35% {
                opacity: 1;
            }
            65% {
                opacity: 1;
            }
            100% {
                transform: translateX(120%);
                opacity: 0;
            }
        }

        @keyframes gridFloat {
            0% {
                transform: translateY(120%) rotate(0deg);
                opacity: 0;
            }
            30% {
                opacity: 0.5;
            }
            70% {
                opacity: 0.8;
            }
            100% {
                transform: translateY(-20%) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes textFloat {
            0% {
                transform: translateY(120%) translateX(0) rotate(0deg);
                opacity: 0;
            }
            15% {
                opacity: 0.3;
            }
            50% {
                opacity: 0.5;
                transform: translateY(60%) translateX(20px) rotate(5deg);
            }
            85% {
                opacity: 0.4;
            }
            100% {
                transform: translateY(-20%) translateX(-30px) rotate(-5deg);
                opacity: 0;
            }
        }


        /* 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(200, 200, 200, 0.02) 50%,
                transparent 100%
            );
            background-size: 100% 8px;
            animation: scanline 20s linear infinite;
        }

        .scanlines::after {
            display: none;
        }


        @keyframes scanline {
            0% { transform: translateY(-100%); }
            100% { transform: translateY(100%); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid var(--border-color);
            z-index: 10000;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .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(--medium-grey);
            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-dark);
            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(--medium-grey);
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: all 0.25s ease-in-out;
            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-dark);
        }

        .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-dark);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 78px;
            right: -100%;
            width: 80%;
            max-width: 350px;
            height: calc(100vh - 78px);
            background: rgba(255, 255, 255, 0.98);
            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.1);
            display: flex;
            flex-direction: column;
            backdrop-filter: blur(10px);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .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: clamp(1.2rem, 4vw, 2rem);
            font-weight: 900;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 2px;
            line-height: 1.2;
            font-family: 'Orbitron', 'JetBrains Mono', 'Fira Code', monospace;
        }

        .mobile-menu-logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }

        .mobile-menu-logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-yellow);
            font-weight: 900;
            font-size: inherit;
        }

        .mobile-menu-logo:hover .logo-nexus {
            transform: translateX(-2px) scale(1.01);
        }

        .mobile-menu-logo:hover .logo-flow {
            transform: translateX(2px) scale(1.01);
        }

        .logo-flow {
            background: linear-gradient(135deg, #4b5563, #6b7280);
            background: -webkit-linear-gradient(135deg, #4b5563, #6b7280);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .mobile-menu-logo:hover {
            transform: scale(1.05);
        }

        .mobile-menu-logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange-dark);
        }



        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--medium-grey);
            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-dark);
            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(--medium-grey);
            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 var(--light-grey);
        }

        .mobile-menu-nav a:hover {
            color: var(--primary-orange-dark);
            background: rgba(251, 146, 60, 0.05);
            padding-left: 3rem;
        }

        .mobile-menu-nav a::before {
            content: '>';
            position: absolute;
            left: 2rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--primary-orange-dark);
        }

        .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-orange), var(--primary-orange-dark));
            color: #ffffff;
            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(251, 146, 60, 0.3);
            width: 100%;
            text-align: center;
        }

        .cyber-button i {
            vertical-align: middle;
            margin-right: 0.5rem;
        }

        .cyber-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(251, 146, 60, 0.5);
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
        }

        /* 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-bottom {
                flex: 0 0 auto;
            }
            
            .cyber-button {
                width: auto;
                max-width: none;
            }
        }

        .logo {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 900;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 3px;
            line-height: 1.2;
            font-family: 'Orbitron', 'JetBrains Mono', 'Fira Code', monospace;
        }

        .logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-yellow);
            font-weight: 900;
            font-size: inherit;
        }

        .logo-nexus {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            background: -webkit-linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-flow {
            background: linear-gradient(135deg, #4b5563, #6b7280);
            background: -webkit-linear-gradient(135deg, #4b5563, #6b7280);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo:hover .logo-nexus {
            transform: translateX(-3px) scale(1.02);
        }

        .logo:hover .logo-flow {
            transform: translateX(3px) scale(1.02);
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange-dark);
        }



        @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(--medium-grey);
            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: #4b5563;
            transform: translateY(-2px);
        }

        .nav-links a::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-orange-dark);
            transform: translateY(-2px);
        }

        .nav-links a:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-orange-dark);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background: #4b5563;
            transition: width 0.3s ease;
            box-shadow: 0 0 5px rgba(75, 85, 99, 0.5);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        /* Hero Section */
        .hero {
            padding: 150px 2rem 100px;
            text-align: center;
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background:
                radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, rgba(251, 146, 60, 0.02) 0%, rgba(234, 88, 12, 0.02) 100%);
        }

        .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: none;
            letter-spacing: 3px;
            position: relative;
            cursor: pointer;
            line-height: 1.2;
            font-family: 'Orbitron', 'JetBrains Mono', 'Fira Code', monospace;
        }

        .hero-title::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-gold);
            transition: all 0.3s ease;
            font-size: inherit;
            font-weight: 900;
        }

        .hero-nexus {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            background: -webkit-linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        .hero-flow {
            background: linear-gradient(135deg, #4b5563, #6b7280);
            background: -webkit-linear-gradient(135deg, #4b5563, #6b7280);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-left: 0.1em;
            display: inline-block;
            transition: all 0.3s ease;
            position: relative;
        }

        @keyframes orangePulse {
            0%, 100% {
                background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
                background: -webkit-linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                transform: translateY(0) scale(1);
            }
            50% {
                background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
                background: -webkit-linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                transform: translateY(-2px) scale(1.01);
            }
        }

        @keyframes grayPulse {
            0%, 100% {
                background: linear-gradient(135deg, #4b5563, #6b7280);
                background: -webkit-linear-gradient(135deg, #4b5563, #6b7280);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                transform: translateY(0) scale(1);
            }
            50% {
                background: linear-gradient(135deg, #6b7280, #4b5563);
                background: -webkit-linear-gradient(135deg, #6b7280, #4b5563);
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                transform: translateY(-2px) scale(1.01);
            }
        }

        /* Clean hover effect */
        .hero-title:hover::before {
            margin-right: 0.8rem;
            text-shadow: 0 0 10px var(--primary-gold);
        }

        .hero-title:hover .hero-nexus {
            transform: translateX(-3px) scale(1.02);
        }

        .hero-title:hover .hero-flow {
            transform: translateX(3px) scale(1.02);
        }


        @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: 100%;
            height: 3px;
            transition: width 0.3s ease;
        }

        .hero-nexus::after {
            background: linear-gradient(90deg, var(--primary-yellow), transparent);
        }

        .hero-flow::after {
            background: linear-gradient(90deg, transparent, var(--secondary-blue));
            left: auto;
            right: 0;
        }

        .hero-title:hover .hero-nexus::after,
        .hero-title:hover .hero-flow::after {
            width: 120%;
        }

        .hero-title::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-yellow);
            font-weight: 900;
            font-size: inherit;
        }

        /* 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(--medium-grey);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 1;
        }

        .hero-buttons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            color: white;
            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(251, 146, 60, 0.4);
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-orange-dark);
            padding: 1.2rem 3rem;
            border: 2px solid var(--primary-orange-dark);
            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-orange-dark);
            color: var(--dark-grey);
            box-shadow: 0 0 30px rgba(234, 88, 12, 0.5);
        }

        /* 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-orange-dark);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-blue));
            box-shadow: 0 0 20px var(--primary-yellow);
        }

        .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(--white-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            position: relative;
            transition: all 0.4s ease;
            clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-yellow), var(--primary-gold));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(251, 146, 60, 0.2);
            border-color: var(--primary-orange);
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            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(251, 146, 60, 0.3);
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-grey);
            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: transparent;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .stats-container {
            width: 100%;
            padding: 0 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            position: relative;
            background: linear-gradient(135deg, #1f2937, #374151);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #ffffff;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .company-description {
            text-align: left;
            margin-bottom: 2rem;
            width: 100%;
        }

        .company-text {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .company-features {
            margin-top: 3rem;
            text-align: center;
        }

        /* FAQ Section */
        .faq {
            padding: 120px 2rem;
            background: transparent;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 4rem;
        }

        .faq-item {
            background: var(--white-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(251, 146, 60, 0.2);
            border-color: var(--primary-orange);
        }

        .faq-question {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(251, 146, 60, 0.05);
            border-bottom: 1px solid var(--border-color);
        }

        .faq-question h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark-grey);
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .faq-toggle {
            font-size: 2rem;
            color: var(--primary-orange-dark);
            transition: all 0.3s ease;
            font-weight: 300;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            color: var(--primary-orange);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(251, 146, 60, 0.02);
        }

        .faq-item.active .faq-answer {
            padding: 2rem;
            max-height: 500px;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact {
            padding: 120px 2rem;
            background: transparent;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .contact-item {
            background: var(--white-bg);
            border: 1px solid var(--border-color);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0% 100%, 0% 20px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            cursor: pointer;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(251, 146, 60, 0.2);
            border-color: var(--primary-orange);
        }

        .contact-item:hover::before {
            opacity: 0.05;
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            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(251, 146, 60, 0.3);
            color: white;
        }

        .contact-item h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark-grey);
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-item p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            font-size: 1.1rem;
        }

        .contact-item a {
            color: var(--primary-orange-dark);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--primary-orange);
        }

        .feature-highlights {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .highlight-item {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
            color: #ffffff;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 0 15px rgba(251, 146, 60, 0.3);
        }

        .highlight-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(234, 88, 12, 0.5);
            background: linear-gradient(135deg, var(--primary-orange-dark), var(--primary-orange));
        }

        /* 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;
            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-orange);
            background: rgba(251, 146, 60, 0.05);
            transform: scale(1.05);
            box-shadow: 0 0 50px rgba(251, 146, 60, 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;
        }

        /* Footer */
        .footer {
            padding: 60px 2rem 20px;
            border-top: 1px solid var(--border-color);
            background: #333333;
            color: #ffffff;
            margin-top: 80px;
        }

        .footer-top {
            max-width: 1400px;
            margin: 0 auto 2rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: start;
        }

        .footer-section {
            color: #ffffff;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
        }

        .footer-logo {
            margin-bottom: 1rem;
            font-size: 2rem;
            font-weight: 900;
            text-transform: none;
            font-family: 'Orbitron', 'JetBrains Mono', 'Fira Code', monospace;
            letter-spacing: 3px;
            line-height: 1.2;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .footer-logo::before {
            content: '>';
            margin-right: 0.5rem;
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }

        .footer-logo::after {
            content: '_';
            animation: blink 1s infinite;
            color: var(--primary-yellow);
            font-weight: 900;
            font-size: inherit;
        }

        .footer-logo .logo-nexus {
            background: linear-gradient(135deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-logo .logo-flow {
            background: linear-gradient(135deg, #ffffff, #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-nav {
            list-style: none;
            padding: 0;
        }

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--primary-orange);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-orange);
            border-color: var(--primary-orange);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #999999;
            font-size: 0.85rem;
        }

        .footer-links {
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-orange);
        }

        .footer-separator {
            color: #666666;
        }

        .footer-bottom p {
            margin: 0.5rem 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-button {
                display: block !important;
            }

            .nav-container {
                gap: 0.5rem;
                padding: 0 0.25rem;
            }

            .logo {
                font-size: 20rem;
                letter-spacing: 1px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                flex-shrink: 1;
                max-width: 50%;
            }

            nav {
                padding: 0.5rem 0.25rem;
            }

            .mobile-menu {
                width: 70%;
            }

            .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;
            }
            
            .feature-highlights {
                flex-direction: column;
                gap: 1rem;
            }

            .highlight-item {
                font-size: 0.8rem;
                padding: 0.6rem 1.2rem;
                border: 1px solid #ffffff;
            }

            .company-text {
                font-size: 1rem;
                margin-bottom: 1rem;
                max-width: 800px;
            }

            .stats-container {
                padding: 0 1rem;
            }

            .faq {
                padding: 80px 1rem;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin: 0 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin: 2rem 1rem 0;
            }

            .contact-item {
                padding: 2rem 1.5rem;
            }

            .contact-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .contact-item h3 {
                font-size: 1.3rem;
            }

            .contact-item p {
                font-size: 1rem;
            }

            .faq-question {
                padding: 1.5rem;
            }

            .faq-question h3 {
                font-size: 0.9rem;
            }

            .faq-item.active .faq-answer {
                padding: 1.5rem;
                max-height: 400px;
            }

            .faq-item {
                margin-bottom: 1rem;
            }

            .faq-answer p {
                font-size: 1rem;
            }
            
            .contact {
                padding: 80px 1rem;
            }

            .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;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            nav {
                padding: 1.75rem 1rem;
            }

            .hero {
                padding: 70px 1rem 40px;
                min-height: 65vh;
            }

            .features {
                padding: 60px 1rem;
            }

            .pricing {
                padding: 60px 1rem;
            }

            .faq {
                padding: 60px 1rem;
            }

            .contact {
                padding: 60px 1rem;
            }

            .stats {
                padding: 60px 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }

            .features-grid, .pricing-grid {
                gap: 2rem;
            }

            .contact-form-wrapper {
                margin-top: 2rem;
            }
        }

        @media (max-width: 480px) {
            .mobile-menu {
                width: 85%;
                max-width: none;
            }

            .logo {
                font-size: 1.5rem;
                letter-spacing: 0.5px;
            }

            .nav-container {
                gap: 0.25rem;
                padding: 0 0.125rem;
            }

            nav {
                padding: 0.4rem 0.125rem;
            }
            
            .mobile-menu-header {
                padding: 2.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 {
                margin: 0;
            }

            nav {
                padding: 0.75rem 0.5rem;
            }

            .hero {
                padding: 50px 0.5rem 25px;
                min-height: 65vh;
            }

            .features {
                padding: 40px 0.5rem;
            }

            .pricing {
                padding: 40px 0.5rem;
            }

            .faq {
                padding: 40px 1.5rem;
            }

            .contact {
                padding: 40px 0.5rem;
            }

            .stats {
                padding: 40px 0.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .features-grid, .pricing-grid {
                gap: 1.5rem;
            }

            .contact-form-wrapper {
                margin-top: 1rem;
            }

            .feature-card h3 {
                font-size: 1.2rem;
            }

            .plan-name {
                font-size: 1.2rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .faq-grid {
                margin: 0 1.5rem;
            }
        }

        /* Scroll animations */
        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--darker-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(#4b5563, #6b7280);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(#6b7280, #4b5563);
        }