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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, #0d0f17 0%, #1a1526 50%, #26192d 100%);
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            min-height: 100vh;
        }

        /* Animated Background Effects */
        .bg-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.4), transparent);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 122, 255, 0.3), transparent);
            bottom: -150px;
            right: -150px;
            animation-delay: 2s;
        }

        .orb-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(255, 0, 127, 0.25), transparent);
            top: 30%;
            right: 10%;
            animation-delay: 4s;
        }

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

        /* Glass Effect Utilities */
        .glass {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .glass-hover {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-hover:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 122, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 122, 255, 0.2);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 40px;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            background: rgba(13, 15, 23, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .logo {
            height: 40px;
            width: auto;
            display: block;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #007AFF, #8A2BE2);
            transition: width 0.3s ease;
        }

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

        .cta-nav {
            padding: 12px 24px;
            background: linear-gradient(135deg, #007AFF, #5856D6);
            border: none;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 122, 255, 0.4);
        }

        /* Hero Section */
        .hero {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 180px 40px 120px;
            text-align: center;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 122, 255, 0.3);
            border-radius: 50px;
            margin-bottom: 32px;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
        }


        h1 {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            margin: 0 auto 48px;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 18px 40px;
            background: linear-gradient(135deg, #007AFF, #5856D6);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            box-shadow: 0 12px 40px rgba(0, 122, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(0, 122, 255, 0.5);
        }

        .btn-secondary {
            padding: 18px 40px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            max-width: 1400px;
            margin: 120px auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 16px;
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(138, 43, 226, 0.1));
            border: 1px solid rgba(0, 122, 255, 0.3);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            color: #007AFF;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            padding: 40px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 2;
            fill: none;
        }

        .feature-card:nth-child(1) .feature-icon {
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.2), rgba(0, 122, 255, 0.1));
            border: 1px solid rgba(0, 122, 255, 0.3);
        }

        .feature-card:nth-child(1) .feature-icon svg {
            stroke: #007AFF;
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, rgba(52, 199, 89, 0.2), rgba(52, 199, 89, 0.1));
            border: 1px solid rgba(52, 199, 89, 0.3);
        }

        .feature-card:nth-child(2) .feature-icon svg {
            stroke: #34C759;
        }


        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, rgba(255, 149, 0, 0.2), rgba(255, 149, 0, 0.1));
            border: 1px solid rgba(255, 149, 0, 0.3);
        }

        .feature-card:nth-child(3) .feature-icon svg {
            stroke: #FF9500;
        }

        .feature-card:nth-child(4) .feature-icon {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
            border: 1px solid rgba(138, 43, 226, 0.3);
        }

        .feature-card:nth-child(4) .feature-icon svg {
            stroke: #8A2BE2;
        }


        .feature-card:nth-child(5) .feature-icon {
            background: linear-gradient(135deg, rgba(255, 45, 85, 0.2), rgba(255, 45, 85, 0.1));
            border: 1px solid rgba(255, 45, 85, 0.3);
        }

        .feature-card:nth-child(5) .feature-icon svg {
            stroke: #FF2D55;
        }

        .feature-card:nth-child(6) .feature-icon {
            background: linear-gradient(135deg, rgba(0, 199, 190, 0.2), rgba(0, 199, 190, 0.1));
            border: 1px solid rgba(0, 199, 190, 0.3);
        }

        .feature-card:nth-child(6) .feature-icon svg {
            stroke: #00C7BE;
        }

        .feature-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 16px;
            background: inherit;
            filter: blur(8px);
            opacity: 0.6;
            z-index: -1;
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
        }

        .feature-card p {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Stats Section */
        .stats {
            max-width: 1400px;
            margin: 120px auto;
            padding: 80px 40px;
            position: relative;
            z-index: 1;
        }

        .stats-container {
            padding: 60px;
            border-radius: 32px;
        }

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

        .stat-item h4 {
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, #007AFF, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .stat-item p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* CTA Section */
        .cta-section {
            max-width: 1400px;
            margin: 120px auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .cta-container {
            padding: 80px 60px;
            border-radius: 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .cta-container h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-container p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 40px 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #007AFF, #8A2BE2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        .footer-links h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: #007AFF;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 16px 24px;
            }

            .nav-links {
                display: none;
            }

            h1 {
                font-size: 42px;
            }

            .hero {
                padding: 140px 24px 80px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .features {
                padding: 0 24px;
                margin: 80px auto;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .section-title {
                font-size: 36px;
            }

            .stats-container {
                padding: 40px 24px;
            }

            .stats-grid {
                gap: 40px;
            }

            .cta-container {
                padding: 60px 30px;
            }

            .cta-container h2 {
                font-size: 36px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }