        :root {
            --navy: #0a1128;
            --deep-blue: #1c2e4a;
            --accent-blue: #2e5eff;
            --accent-cyan: #00d9ff;
            --gold: #ffd700;
            --cream: #fef9f3;
            --gray: #8892a6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', sans-serif;
            background: var(--navy);
            color: var(--cream);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Animated gradient background */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(46, 94, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 90%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
            z-index: 0;
        }
        
        /* Floating particles */
        .particle {
            position: fixed;
            width: 2px;
            height: 2px;
            background: var(--accent-cyan);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
            z-index: 1;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(100px, -100px); }
            50% { transform: translate(-50px, -200px); }
            75% { transform: translate(150px, -150px); }
        }
        
        /* Header */
        header {
            position: relative;
            z-index: 100;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: white;
            box-shadow: 0 4px 20px rgba(46, 94, 255, 0.3);
        }
        
        .logo-text {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        nav {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        nav a {
            color: var(--cream);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-cyan);
            transition: width 0.3s;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        .btn-contact {
            padding: 12px 28px;
            background: var(--accent-blue);
            border-radius: 8px;
            color: white;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(46, 94, 255, 0.4);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            z-index: 10;
            padding: 120px 60px 80px;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-content h1 {
            font-family: 'Syne', sans-serif;
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -2px;
            margin-bottom: 30px;
            animation: slideUp 0.8s ease-out;
        }
        
        .gradient-text {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
            line-height: 1.8;
            animation: slideUp 0.8s ease-out 0.2s both;
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            animation: slideUp 0.8s ease-out 0.4s both;
        }
        
        .btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 30px rgba(46, 94, 255, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(46, 94, 255, 0.5);
        }
        
        .btn-secondary {
            padding: 18px 40px;
            background: transparent;
            border: 2px solid var(--accent-cyan);
            border-radius: 12px;
            color: var(--cream);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-secondary:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* Hero Visual */
        .hero-visual {
            position: relative;
            animation: slideUp 0.8s ease-out 0.6s both;
        }
        
        .card-stack {
            position: relative;
            width: 100%;
            height: 500px;
        }
        
        .floating-card {
            position: absolute;
            background: rgba(28, 46, 74, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: floatCard 6s ease-in-out infinite;
        }
        
        .card-1 {
            top: 0;
            left: 0;
            width: 280px;
            animation-delay: 0s;
        }
        
        .card-2 {
            top: 120px;
            right: 0;
            width: 300px;
            animation-delay: 2s;
        }
        
        .card-3 {
            bottom: 0;
            left: 50px;
            width: 260px;
            animation-delay: 4s;
        }
        
        @keyframes floatCard {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        .card-label {
            font-size: 12px;
            color: var(--accent-cyan);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        .card-value {
            font-family: 'Syne', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: white;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 14px;
            color: var(--gray);
        }
        
        .card-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 40px;
            opacity: 0.3;
        }
        
        /* Features Section */
        .features {
            position: relative;
            z-index: 10;
            padding: 100px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-label {
            font-size: 14px;
            color: var(--accent-cyan);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 56px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 20px;
        }
        
        .section-description {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .feature-card {
            background: rgba(28, 46, 74, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
            transform: scaleX(0);
            transition: transform 0.4s;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 217, 255, 0.3);
            box-shadow: 0 20px 60px rgba(46, 94, 255, 0.2);
        }
        
        .feature-icon {
            font-size: 48px;
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .feature-title {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .feature-text {
            color: var(--gray);
            line-height: 1.7;
        }
        
        /* Stats Section */
        .stats {
            position: relative;
            z-index: 10;
            padding: 80px 60px;
            max-width: 1400px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(46, 94, 255, 0.1), rgba(0, 217, 255, 0.05));
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-value {
            font-family: 'Syne', sans-serif;
            font-size: 56px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--gray);
            font-weight: 600;
        }
        
        /* CTA Section */
        .cta-section {
            position: relative;
            z-index: 10;
            padding: 120px 60px;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--deep-blue), var(--navy));
            border: 2px solid rgba(0, 217, 255, 0.3);
            border-radius: 30px;
            padding: 80px 60px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(46, 94, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 10;
        }
        
        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 20px;
            color: var(--gray);
            margin-bottom: 40px;
        }
        
        .email-form {
            display: flex;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .email-input {
            flex: 1;
            padding: 18px 25px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: white;
            font-size: 16px;
            outline: none;
            transition: all 0.3s;
        }
        
        .email-input:focus {
            border-color: var(--accent-cyan);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .email-input::placeholder {
            color: var(--gray);
        }
        
        /* Footer */
        footer {
            position: relative;
            z-index: 10;
            padding: 60px 60px 40px;
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .footer-description {
            color: var(--gray);
            line-height: 1.7;
        }
        
        .footer-column h4 {
            font-family: 'Syne', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-cyan);
        }
        
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray);
            font-size: 14px;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-links a {
            color: var(--gray);
            font-size: 20px;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--accent-cyan);
        }
        
        /* Mobile Responsive */
        @media (max-width: 968px) {
            header {
                padding: 20px 30px;
            }
            
            nav {
                display: none;
            }
            
            .hero {
                grid-template-columns: 1fr;
                padding: 60px 30px;
                gap: 60px;
            }
            
            .hero-content h1 {
                font-size: 48px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }