
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary: #6C5CE7;
            --secondary: #0a0a1a;
            --accent: #00D9FF;
            --dark: #050510;
            --light: #ffffff;
            --gradient: linear-gradient(135deg, #6C5CE7, #a29bfe);
        }
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        /* Scroll Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 50px;
            z-index: 1000;
            transition: all 0.4s ease;
            background: transparent;
        }
        nav.scrolled {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(108, 92, 231, 0.2);
        }
        .nav-center {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 4px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 1px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }
        .nav-links a:hover { color: var(--accent); }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(180deg, var(--dark), var(--secondary), var(--primary));
        }
        /* Hero background image is set via inline style using {{hero_image_url}} */
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            opacity: 0.25;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, var(--dark), transparent);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }
        .hero h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            letter-spacing: 8px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.3rem;
            opacity: 0.85;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        .cta-btn {
            display: inline-block;
            padding: 16px 50px;
            background: var(--gradient);
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 2px;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4);
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(108, 92, 231, 0.6);
        }
        /* Cards Section */
        .section { padding: 120px 50px; }
        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }
        .section-title h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 600;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 4px;
        }
        .section-title p { opacity: 0.7; margin-top: 15px; }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        .card {
            background: rgba(108, 92, 231, 0.08);
            border: 1px solid rgba(108, 92, 231, 0.2);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            backdrop-filter: blur(10px);
        }
        .card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card .content { padding: 30px; }
        .card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--accent);
        }
        .card p { opacity: 0.8; line-height: 1.7; }
        /* Stats */
        .stats-section {
            background: rgba(108, 92, 231, 0.1);
            padding: 100px 50px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .stat-item { text-align: center; }
        .stat-number {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label { opacity: 0.7; margin-top: 10px; font-size: 1.1rem; }
        /* Footer */
        footer {
            background: var(--secondary);
            padding: 80px 50px 40px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        .footer-col h4 {
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1.2rem;
            margin-bottom: 25px;
            font-family: 'Space Grotesk', sans-serif;
        }
        .footer-col p, .footer-col a {
            opacity: 0.7;
            line-height: 2.2;
            color: var(--light);
            text-decoration: none;
            display: block;
        }
        .footer-col a:hover { opacity: 1; color: var(--accent); }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            opacity: 0.5;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero h1 { font-size: 2.5rem; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr; }
        }
    