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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Revolutionary 3D Background */
        .bg-matrix {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background:
                radial-gradient(circle at 25% 25%, #1a0033 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, #001a33 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, #330033 0%, transparent 50%),
                linear-gradient(45deg, #000000, #0a0a0a);
            animation: matrixShift 15s infinite ease-in-out;
        }

        @keyframes matrixShift {
            0%, 100% { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
            33% { transform: scale(1.05) rotate(120deg); filter: hue-rotate(120deg); }
            66% { transform: scale(0.95) rotate(240deg); filter: hue-rotate(240deg); }
        }

        /* Ultra-Modern Navigation with Scroll Effects */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 245, 255, 0.2);
            padding: 15px 0;
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: translateY(0);
        }

        /* Scroll States */
        nav.scrolled {
            padding: 8px 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid rgba(0, 245, 255, 0.4);
            box-shadow: 0 4px 30px rgba(0, 245, 255, 0.1);
        }

        nav.hidden {
            transform: translateY(-100%);
        }

        nav.compact {
            padding: 5px 0;
            background: linear-gradient(90deg,
                rgba(0, 245, 255, 0.15) 0%,
                rgba(255, 0, 110, 0.15) 50%,
                rgba(255, 190, 11, 0.15) 100%);
            backdrop-filter: blur(40px);
            border-radius: 0 0 25px 25px;
            width: 70%;
            left: 15%;
            border: 1px solid rgba(0, 245, 255, 0.3);
            box-shadow:
                0 8px 40px rgba(0, 245, 255, 0.2),
                0 0 0 1px rgba(255, 0, 110, 0.1);
        }

        /* Silverlinings Trail Effect */
        nav::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 245, 255, 0.3) 30%,
                rgba(255, 0, 110, 0.5) 50%,
                rgba(255, 190, 11, 0.3) 70%,
                transparent 100%);
            transition: left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
            z-index: -1;
        }

        nav.comet-trail::after {
            left: 100%;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 40px;
            transition: all 0.5s ease;
        }

        /* Compact State Adjustments */
        nav.compact .nav-container {
            padding: 0 20px;
        }

        nav.compact .nav-logo {
            font-size: 18px;
        }

        nav.compact .nav-links {
            gap: 15px;
        }

        nav.compact .nav-links a {
            font-size: 12px;
            padding: 4px 8px;
        }

        .nav-logo {
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(45deg, #00f5ff, #ff006e, #ffbe0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
            animation: logoGlow 3s infinite ease-in-out;
        }

        @keyframes logoGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 245, 255, 0.5)); }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            padding: 8px 16px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
            transition: left 0.5s;
        }

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

        .nav-links a:hover {
            color: #00f5ff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 245, 255, 0.3);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 20px;
            justify-content: space-between;
        }

        .hamburger span {
            width: 100%;
            height: 2px;
            background: linear-gradient(45deg, #00f5ff, #ff006e);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* Revolutionary Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            z-index: 10;
            padding: 0 40px;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(45deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 110, 0.2));
            border: 1px solid rgba(0, 245, 255, 0.3);
            border-radius: 25px;
            padding: 8px 20px;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #00f5ff;
            margin-bottom: 30px;
            animation: badgePulse 2s infinite ease-in-out;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0, 245, 255, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(0, 245, 255, 0.6); }
        }

        .hero-title {
            font-size: clamp(60px, 10vw, 140px);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #00f5ff, #ff006e, #ffbe0b);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: rainbowText 4s ease-in-out infinite;
            position: relative;
        }

        @keyframes rainbowText {
            0%, 100% { background-position: 0% 50%; }
            25% { background-position: 50% 50%; }
            50% { background-position: 100% 50%; }
            75% { background-position: 50% 50%; }
        }

        .hero-subtitle {
            font-size: 24px;
            color: #a0a0a0;
            margin-bottom: 50px;
            font-weight: 300;
            line-height: 1.4;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .cta-primary {
            background: linear-gradient(45deg, #00f5ff, #ff006e);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .cta-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 245, 255, 0.4);
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-secondary {
            background: transparent;
            color: #00f5ff;
            padding: 18px 40px;
            border: 2px solid #00f5ff;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .cta-secondary:hover {
            background: rgba(0, 245, 255, 0.1);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 245, 255, 0.3);
        }

        /* Trust Bar */
        .trust-bar {
            margin-top: 80px;
            text-align: center;
        }

        .trust-bar-title {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #a0a0a0;
            margin-bottom: 20px;
        }

        .trust-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            opacity: 0.7;
        }

        .trust-logos img {
            max-height: 40px;
            filter: grayscale(100%) brightness(1.5);
            transition: all 0.3s;
        }

        .trust-logos img:hover {
            filter: grayscale(0%) brightness(1);
        }

        /* Innovation Showcase */
        .innovation-showcase {
            padding: 100px 50px;
            position: relative;
        }

        .showcase-title {
            font-size: 48px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #ffffff, #00f5ff, #ff006e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .innovation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .innovation-card {
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 110, 0.1));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 245, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .innovation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f5ff, #ff006e, #ffbe0b);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .innovation-card:hover::before {
            transform: scaleX(1);
        }

        .innovation-card:hover {
            transform: translateY(-10px) rotateX(5deg);
            border-color: rgba(0, 245, 255, 0.5);
            box-shadow: 0 30px 60px rgba(0, 245, 255, 0.2);
        }

        .innovation-icon {
            font-size: 48px;
            margin-bottom: 20px;
            display: block;
        }

        .innovation-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .innovation-desc {
            font-size: 16px;
            color: #a0a0a0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .innovation-link {
            color: #00f5ff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .innovation-link:hover {
            color: #ff006e;
            transform: translateX(5px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links a {
                font-size: 20px;
                padding: 15px 30px;
            }

            .hero-title { font-size: 60px; }
            .innovation-showcase { padding: 60px 20px; }
            .showcase-title { font-size: 36px; }
            .innovation-grid { grid-template-columns: 1fr; }
            .hero-cta { flex-direction: column; align-items: center; }
        }