@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');
        
        * {
            scroll-behavior: smooth;
        }
        
        html {
            background-color: #0D1B2A !important;
        }
        
        body {
            background-color: #0D1B2A !important;
            background-image: url('./images/contrail.png');
            background-repeat: no-repeat;
            background-size: 105%;
            background-position: center;
            background-attachment: fixed;
            animation: zoomEffect 25s ease-in-out infinite alternate, fadeInBody 2s ease-out forwards;
            opacity: 0;
            font-family: 'Inter', sans-serif;
            /* Ensure background covers entire viewport from top */
            min-height: 100vh;
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            body {
                background-image: url('./images/contrail.png') !important;
                background-attachment: scroll;
                background-size: 120% !important;
                background-position: center top !important;
                background-repeat: no-repeat;
                /* Ensure background is visible immediately on mobile */
                background-color: #0D1B2A !important;
                min-height: 100vh;
                /* More dramatic zoom effect for mobile */
                animation: zoomEffectMobile 30s ease-in-out infinite alternate, fadeInBody 1s ease-out forwards;
            }
            
            html {
                background-image: url('./images/contrail.png') !important;
                background-size: 120% !important;
                background-position: center top !important;
                background-repeat: no-repeat !important;
                background-attachment: fixed !important;
            }
            
            /* Remove any background from sections that might cover the contrail */
            section {
                background: transparent !important;
            }
            
            /* Specific overrides for pricing section */
            #pricing {
                background: transparent !important;
            }
            
            #get-started {
                background: transparent !important;
            }
            
            .hero-title {
                line-height: 1.1;
            }
            
            .tagline {
                font-size: 1.25rem;
                line-height: 1.3;
            }
        }

        @keyframes zoomEffect {
            0% {
                background-size: 105%;
            }
            100% {
                background-size: 125%;
            }
        }

        /* Mobile zoom effect - much more dramatic */
        @keyframes zoomEffectMobile {
            0% {
                background-size: 120%;
                background-position: center top;
            }
            100% {
                background-size: 140%;
                background-position: center center;
            }
        }

        @keyframes fadeInBody {
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
            }
            50% {
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 40px rgba(59, 130, 246, 0.2);
            }
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('grain-overlay.png');
            opacity: 0.04;
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: "";
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 25vh;
            background: linear-gradient(to top, #0D1B2A 0%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        .overlay {
            position: relative;
            z-index: 1;
            /* Make background image more visible by reducing backdrop filter */
            -webkit-backdrop-filter: blur(0.5px) brightness(1.05);
            backdrop-filter: blur(0.5px) brightness(1.05);
        }

        /* Mobile: Completely remove overlay to show contrail background */
        @media (max-width: 768px) {
            .overlay {
                /* Remove all backdrop effects on mobile */
                -webkit-backdrop-filter: none !important;
                backdrop-filter: none !important;
                background: transparent !important;
            }
        }

        .tagline {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.6rem;
            margin-top: 1.5rem;
            color: #E2E8F0;
            animation: fadeInUp 1s ease-out 0.5s both;
            font-weight: 400;
            letter-spacing: 0.3px;
            line-height: 1.4;
        }

        .quote-attribution {
            color: #94A3B8;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        .hero-title {
            color: #FFFFFF;
            font-weight: 800;
            letter-spacing: -0.02em;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-description {
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .cta-button {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1.1s both, pulse-glow 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

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

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

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
        }

        .feature-card {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            background: rgba(27, 38, 59, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(27, 38, 59, 0.95);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .pricing-card {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3B82F6, #8B5CF6, #F59E0B);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .pro-card {
            background: linear-gradient(135deg, #3B82F6, #1E40AF);
            transform: scale(1.05);
            border: 2px solid #60A5FA;
            position: relative;
        }

        .section-title {
            background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glass-header {
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            background: rgba(27, 38, 59, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.6);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #3B82F6, #8B5CF6);
            transition: width 0.3s ease;
        }

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

        /* Social Stats Animation */
        .social-stat {
            animation: fadeInUp 1s ease-out both;
            transition: all 0.3s ease;
        }

        .social-stat:hover {
            transform: translateY(-5px);
        }

        .social-stat:nth-child(1) { animation-delay: 0.1s; }
        .social-stat:nth-child(2) { animation-delay: 0.2s; }
        .social-stat:nth-child(3) { animation-delay: 0.3s; }
        .social-stat:nth-child(4) { animation-delay: 0.4s; }

        /* Testimonial Cards */
        .testimonial-card {
            animation: fadeInUp 1s ease-out both;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }

        /* Community Cards */
        .community-card {
            animation: fadeInUp 1s ease-out both;
            transition: all 0.3s ease;
        }

        .community-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .community-card:nth-child(1) { animation-delay: 0.1s; }
        .community-card:nth-child(2) { animation-delay: 0.2s; }
        .community-card:nth-child(3) { animation-delay: 0.3s; }

        /* Enhanced CTA Button */
        .enhanced-cta-button {
            background: linear-gradient(135deg, #3B82F6, #8B5CF6, #3B82F6);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite, pulse-glow 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        .enhanced-cta-button::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.5s;
        }

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

        .enhanced-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
        }

        .secondary-cta-button {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .secondary-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
            transition: left 0.5s;
        }

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

        /* Floating CTA */
        .floating-cta {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Scroll-triggered animations */
        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Ensure hero section shows the contrail background */
        .hero-section, section.overlay {
            background: transparent !important;
        }

        /* Improve text readability over contrail background */
        @media (max-width: 768px) {
            .hero-title {
                color: #FFFFFF !important;
                font-weight: 800;
                letter-spacing: -0.02em;
                text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
            }
            
            .tagline {
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
                color: #E2E8F0 !important;
            }
            
            .hero-description {
                text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
                color: #CBD5E1 !important;
            }
            
            /* Make header completely transparent on mobile */
            .glass-header {
                background: transparent !important;
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
            }
            
            /* Add stronger text shadows for header text */
            .glass-header h1,
            .glass-header a {
                text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
            }
        }