            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Segoe UI', system-ui, sans-serif;
                scroll-behavior: smooth;
            }
            
            body {
                color: #fff;
                min-height: 100vh;
                overflow-x: hidden;
                background-color: black;
            }
            /* Main heading (h1) */
:root {
    --accent: #f3f3f3;
}

            /* Main heading */
h1 {
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
    padding-bottom: 0.5rem;
}


h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(80vw, 400px);
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent),
        transparent
    );
}


            
            /* Background image with overlay */
    .background-container {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;

        background:
            linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 65%,
                rgb(0, 0, 0) 90%,
                rgba(0, 0, 0, 1) 98%
            ),
            url('/background.png') no-repeat center center;

        background-size: cover;
    }

            
            /* Navbar styles */
            .navbar {
                position: fixed;
                top: 0;
                width: 100%;
                padding: 1.2rem 5%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                z-index: 1000;
                backdrop-filter: blur(0px);
                -webkit-backdrop-filter: blur(10px);
                background-color: rgba(15, 25, 45, 0);
            }
            
            .logo {
                font-size: 1.8rem;
                font-weight: 700;
                background: linear-gradient(90deg, #4d9fff, #6a5af9);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                height: 65px;
            }
            
            .logo i {
                font-size: 2rem;
            }
            
    .btn {
        padding: 0.75rem 2.2rem;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        letter-spacing: 0.04em;
        text-decoration: none;
        color: #fff;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Gradient border */
    .btn-primary {
        background: linear-gradient(#0b0f1a, #0b0f1a) padding-box,
                    linear-gradient(
                        90deg,
                        #ff4fd8,
                        #7a5cff,
                        #3b82f6
                    ) border-box;
        border: 2px solid transparent;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.6);
    }

    /* Glossy top highlight */
    .btn-primary::before {
        content: "";
        position: absolute;
        top: 2px;
        left: 2px;
        right: 2px;
        height: 40%;
        border-radius: 999px;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0)
        );
        pointer-events: none;
    }

    /* Hover (very subtle, like the image) */
    .btn-primary:hover {
        box-shadow:
            0 8px 18px rgba(0, 0, 0, 0.7);
        transform: translateY(-1px);
    }

            
            .btn-primary span {
                position: relative;
                z-index: 2;
            }
            
            .btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
            }
            
            .btn-secondary {
                background: transparent;
                color: #a0b6ff;
                border: 2px solid rgba(160, 182, 255, 0.3);
            }
            
            .btn-secondary:hover {
                background: rgba(160, 182, 255, 0.1);
                border-color: rgba(160, 182, 255, 0.5);
            }
            
            /* Main content */
            .container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 5%;
            }
            
            .main-content {
                padding-top: 140px;
                padding-bottom: 80px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            h1 {
                font-size: 3.5rem;
                line-height: 1.35;
                margin-bottom: 1.5rem;
                background: linear-gradient(90deg, #fff 0%, #a0b6ff 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                max-width: 1000px;
            }
            
            .subheading {
                font-size: 1.4rem;
                line-height: 1.6;
                color: #b8c5ec;
                max-width: 800px;
                margin-bottom: 3rem;
            }
            
            .button-group {
                display: flex;
                gap: 1.5rem;
                margin-bottom: 4rem;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            /* Image section */
            .image-container {
                width: 85%;
                max-width: 1200px;
                margin: 0 auto;
                position: relative;
            }
            
    .landing-image {
        width: 100%;
        border-radius: 20px;
        position: relative;
        overflow: hidden; /* CRITICAL */

        /* Border: top thin, sides thick, bottom none */
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.25);
        border-width: 1px 4px 0 4px;

        /* Top-only glow */
        box-shadow:
            0 -35px 90px -30px rgba(254, 255, 190, 0.801);
        transition: transform 0.5s ease;
    }

    /* Bottom fade overlay — NOT a shadow */
    .landing-image::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 35%;

        /* Fade image to background color */
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 100%
        );

        pointer-events: none;
    }


            
            /* Stats section for visual appeal */
            .stats {
                display: flex;
                justify-content: center;
                gap: 4rem;
                margin-top: 5rem;
                flex-wrap: wrap;
            }
            
            .stat-item {
                text-align: center;
            }
            
            .stat-number {
                font-size: 2.5rem;
                font-weight: 700;
                color: #4d9fff;
                display: block;
            }
            
            .stat-label {
                font-size: 1rem;
                color: #b8c5ec;
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            
            /* Responsive design */
            @media (max-width: 1024px) {
                h1 {
                    font-size: 2.8rem;
                }
                
                .subheading {
                    font-size: 1.2rem;
                }
                
                .main-content {
                    padding-top: 120px;
                }
            }
            
            @media (max-width: 768px) {
                h1 {
                    font-size: 2.2rem;
                }
                
                .subheading {
                    font-size: 1.1rem;
                }
                
                .navbar {
                    padding: 1rem 5%;
                }
                
                .logo {
                    font-size: 1.5rem;
                }
                
                .btn {
                    padding: 0.75rem 1.8rem;
                    font-size: 0.95rem;
                }
                
                .button-group {
                    flex-direction: column;
                    align-items: center;
                    gap: 1rem;
                }
                
                .button-group .btn {
                    width: 100%;
                    max-width: 300px;
                }
                
                .image-container {
                    width: 95%;
                }
                
                .stats {
                    gap: 2.5rem;
                }
                
                .stat-number {
                    font-size: 2rem;
                }
            }
            
            @media (max-width: 480px) {
                h1 {
                    font-size: 1.8rem;
                }
                
                .subheading {
                    font-size: 1rem;
                }
                
                .main-content {
                    padding-top: 100px;
                }
                
                .logo {
                    font-size: 1.3rem;
                }
                
                .logo i {
                    font-size: 1.6rem;
                }
                
                .btn {
                    padding: 0.7rem 1.5rem;
                }
                
                .stats {
                    gap: 1.5rem;
                }
                
                .stat-number {
                    font-size: 1.7rem;
                }
            }
            
            /* Animation for page load */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .fade-in {
                animation: fadeInUp 0.8s ease-out forwards;
            }
            
            .delay-1 {
                animation-delay: 0.2s;
                opacity: 0;
            }
            
            .delay-2 {
                animation-delay: 0.4s;
                opacity: 0;
            }
            
            .delay-3 {
                animation-delay: 0.6s;
                opacity: 0;
            }
            
            .delay-4 {
                animation-delay: 0.8s;
                opacity: 0;
            }




            .marquee-wrapper {
                width: 100%;
                max-width: 1200px;
                position: relative;
                overflow: hidden;
                padding: 15px 0;
                margin: 0 auto;
                background-color: black;
            }
            
            /* Edge fade effect */
            .marquee-wrapper::before,
            .marquee-wrapper::after {
                content: '';
                position: absolute;
                top: 0;
                width: 150px;
                height: 100%;
                z-index: 2;
                pointer-events: none;
            }
            
            .marquee-wrapper::before {
                left: 0;
                background: linear-gradient(to right, #000000 0%, transparent 100%);
            }
            
            .marquee-wrapper::after {
                right: 0;
                background: linear-gradient(to left, #000000 0%, transparent 100%);
            }
            
            .marquee-track {
                display: flex;
                gap: 70px;
                width: max-content;
                animation: marqueeScroll 30s linear infinite;
            }
            
    .brand-logo {
        height: 30px;
        width: auto;
        object-fit: contain;
        filter: white(1) hue-rotate(200deg) saturate(1.4) brightness(0.95);
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

            
            .brand-logo:hover {
                opacity: 1;
            }
            
            @keyframes marqueeScroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }
            
            /* Pause on hover */
            .marquee-wrapper:hover .marquee-track {
                animation-play-state: paused;
            }
            
            @media (max-width: 768px) {
                .marquee-wrapper::before,
                .marquee-wrapper::after {
                    width: 80px;
                }
                
                .marquee-track {
                    gap: 50px;
                }
                
                .brand-logo {
                    height: 20px;
                }
            }
            
            @media (max-width: 480px) {
                .marquee-wrapper::before,
                .marquee-wrapper::after {
                    width: 60px;
                }
                
                .marquee-track {
                    gap: 40px;
                }
                
                .brand-logo {
                    height: 20px;
                }
            }

            .Marquee-text {
                        max-width: 1200px;
                        position: relative;
                        margin: 0 auto;
                        margin-bottom: 10px;
                        font-weight: 600;
                        padding: 10px;

            }



            
















            .interactive-video-section {
                --bg: #020202;
                --dot: rgba(250, 250, 250, 0.08);
                --dot-size: 1.2px;
                --spacing: 20px;
                --accent: #a1a1a1;
                
                position: relative;
                background:
                    radial-gradient(
                        circle,
                        var(--dot) var(--dot-size),
                        transparent calc(var(--dot-size) + 0.5px)
                    ),
                    radial-gradient(
                        circle at 50% 50%,
                        rgba(255,255,255,0.06),
                        transparent 55%
                    ),
                    var(--bg);
                background-size:
                    var(--spacing) var(--spacing),
                    100% 100%;
                color: #fff;
                overflow: hidden;
                padding: 60px 20px;
            }
            
            /* Smaller background pattern for mobile */
            @media (max-width: 768px) {
                .interactive-video-section {
                    --dot-size: 0.5px;
                    --spacing: 16px;
                    --dot: rgba(255, 255, 255, 0.05);
                }
            }
            
            @media (max-width: 480px) {
                .interactive-video-section {
                    --dot-size: 0.5px;
                    --spacing: 14px;
                    --dot: rgba(255, 255, 255, 0.04);
                }
            }

            /* Radial fade to hide dots at edges and vignette */
            .interactive-video-section::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(
                    ellipse at center,
                    transparent 55%,
                    var(--bg) 70%
                );
                pointer-events: none;
                z-index: 1;
            }

            /* Soft vignette for depth */
            .interactive-video-section::after {
                content: "";
                position: absolute;
                inset: 0;
                pointer-events: none;
                z-index: 1;
            }

            /* Top and bottom black fades */
            .interactive-video-section .fade-overlay {
                position: absolute;
                left: 0;
                width: 100%;
                z-index: 2;
                pointer-events: none;
            }
.interactive-video-section .fade-top {
    top: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,   /* fully black at top */
        rgba(0, 0, 0, 0) 30%    /* fade quickly to transparent */
    );
}

.interactive-video-section .fade-bottom {
    bottom: 0;
    height: 150px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 30%,   /* fully black at bottom */
        rgba(0, 0, 0, 0) 30%    /* fade quickly to transparent */
    );
}


            /* Main content container */
            .interactive-video-section .container {
                position: relative;
                max-width: 1200px;
                margin: 0 auto;
                z-index: 3;
            }

            /* Main heading */
            .interactive-video-section .main-heading {
                text-align: center;
                font-size: clamp(2.0rem, 5vw, 3rem);
                font-weight: 700;
                margin-bottom: 60px;
                letter-spacing: -0.5px;
                line-height: 1.1;
                position: relative;
            }

            .interactive-video-section .main-heading::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 400px;
                height: 2px;
                background: linear-gradient(to right, transparent, var(--accent), transparent);
            }

            /* Video section */
            .interactive-video-section .video-section {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto;
            }

            .interactive-video-section .video-wrapper {
                width: 70%;
                max-width: 900px;
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 
                    0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 0 1px rgba(255, 255, 255, 0.05);
            }

            /* Video container with responsive aspect ratio */
            .interactive-video-section .video-container {
                position: relative;
                width: 100%;
                padding-bottom: 56.25%; /* 16:9 aspect ratio */
                background: #000;
            }

            /* YouTube iframe */
            .interactive-video-section .youtube-iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
                z-index: 2;
            }

            /* Video thumbnail overlay */
            .interactive-video-section .video-thumbnail {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-size: cover;
                background-position: center;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                transition: opacity 0.3s ease;
                z-index: 3;
                background-color: #000;
            }

            .interactive-video-section .video-thumbnail:hover .play-button {
                transform: scale(1.05);
                box-shadow: 0 15px 40px rgba(93, 93, 247, 0.4);
            }

            .interactive-video-section .video-thumbnail.fade-out {
                opacity: 0;
                pointer-events: none;
            }

            /* Play button */
            .interactive-video-section .play-button {
                width: 80px;
                height: 80px;
                background: rgb(255, 53, 63);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                box-shadow: 0 10px 30px rgb(255, 255, 255);
                transition: all 0.3s ease;
            }

            .interactive-video-section .play-button::after {
                content: '';
                width: 0;
                height: 0;
                border-left: 20px solid white;
                border-top: 12px solid transparent;
                border-bottom: 12px solid transparent;
                margin-left: 5px;
            }










        .scale-trap-section {
            margin:  0 auto ;
            background-color: #000000;
            border-radius: 20px;
            padding: 40px 30px;
            max-width: 1200px;
            width: 100%;
            border: 1px solid #00000000;
            position: relative;
            overflow: hidden;
        }

        /* Decorative elements */
        .scale-trap-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
        }

        .accent-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;

        }

    
        .section-tag {
            display: block;
            width: fit-content;
            margin: 0 auto;
            padding: 8px 20px;
            border: 1px solid rgba(163, 163, 163, 0.376);
            border-radius: 50px;
            background: linear-gradient(#2a2a2a, #000) padding-box,
                        linear-gradient(90deg, #ff46ffac, #52ffffaf) border-box;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            background-clip: padding-box, border-box;
            position: relative;
            overflow: hidden;
        }

        .gradient-text {
            margin: 0 auto;
            background: linear-gradient(90deg, #ff00ff, #00ffff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        .section-title {
            color: white;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-top: 40px;
            margin-bottom: 20px;
            line-height: 1.1;
            max-width: 800px;
            text-align: center;
        }

        .section-subtitle {
            margin: 0 auto;
            color: #aaa;
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 50px;
            max-width: 700px;
            text-align: center;
        }

        /* Cards Grid */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            background-color: #000000;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #222;
            display: flex;
            flex-direction: column;
        }

        .card-image {
            width: 100%;
            background-color: #000000;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit:fill;
        }


        .card-content {
            display: flex;
            flex-direction: column;
        }

.card-title {
    margin: 0 0 10px 0; /* or whatever spacing you want */
    padding-left: 25px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

        .card-description {
            color: #bbbbbba4;
            line-height: 1.6;
            flex-grow: 1;
            font-weight: 500;
            padding-left: 25px;
            padding-right: 25px;
            padding-bottom: 15px;
        }

        .card-icon {
            background: linear-gradient(135deg, #ff00ff, #00ffff);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.3rem;
            }
            
            .cards-container {
                gap: 20px;
            }
        }











         /* ============================================
           SPACE ROADMAP TIMELINE STYLES
           (Only for the timeline section)
        ============================================ */
        .roadmap-section {
            /* Color Palette - Space Theme */
            --primary-gold: #c9c9c9;
            --primary-orange: rgb(250, 255, 109);
            --primary-dark: #000000;
            --secondary-space-blue: #000000;
            --secondary-space-purple: #000000;
            --secondary-deep-space: #000000;
            --accent-neon-gold: #c9c9c9;
            --accent-warm-gold: #c9c9c9;
            --accent-cool-silver: #E0E0E0;
            --text-primary: #ff0000;
            --text-secondary: #CCCCCC;
            --text-muted: #AAAAAA;
            --text-gold: #c3c3c3;
            --ui-border: rgba(255, 215, 0, 0.2);
            --ui-border-active: rgba(253, 253, 253, 0.6);
            --ui-shadow: rgba(0, 0, 0, 0.6);
            --ui-glow: rgba(255, 215, 0, 0.4);
            --ui-overlay: rgba(0, 0, 0, 0.144);
            --bg-star-color: #484242;
            --bg-timeline: #333333;
            --bg-progress-start: transparent;
            --bg-progress-end: transparent;
            --status-active: #FFD700;
            --status-completed: #4CAF50;
            --status-upcoming: #666666;
            
            background-color: var(--primary-dark);
            color: var(--text-primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .gradient-text {
  background: linear-gradient(90deg, #ff4ecd, #8f2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600; /* optional */
}



        .roadmap-container {
            position: relative;
            min-height: 2000px;
            margin-top: 80px;
        }
        
        /* Static dotted background */
        .roadmap-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background-color: var(--primary-dark);
            background-image: radial-gradient(circle, var(--bg-star-color) 1px, transparent 1px);
            background-size: 15px 15px;
            background-position: 0 0;
        }
        
        .roadmap-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(
                ellipse farthest-corner at center,
                var(--ui-overlay) 0%,
                rgba(0, 0, 0, 0.54) 40%,
                var(--secondary-deep-space) 65%,
                var(--primary-dark) 85%,
                var(--primary-dark) 100%
            );
            z-index: -1;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, 
                var(--bg-progress-start) 0%, 
                var(--bg-timeline) 5%, 
                var(--bg-timeline) 95%, 
                var(--bg-timeline) 100%);
            z-index: 1;
        }
        
        .timeline-progress {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, 
                var(--bg-progress-start) 0%, 
                var(--primary-gold) 3%, 
                var(--primary-orange) 50%, 
                var(--primary-gold) 97%, 
                var(--bg-progress-end) 100%);
            box-shadow: 0 0 15px var(--ui-glow);
            z-index: 2;
            transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        

        
        @keyframes pulse-dot {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 
                    0 0 20px rgba(255, 215, 0, 0.8), 
                    0 0 40px rgba(255, 215, 0, 0.5),
                    0 0 60px rgba(255, 215, 0, 0.3);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.08);
                box-shadow: 
                    0 0 25px rgba(255, 215, 0, 0.9), 
                    0 0 50px rgba(255, 215, 0, 0.6),
                    0 0 75px rgba(255, 215, 0, 0.4);
            }
        }
        
        .timeline-card {
            position: relative;
            margin-bottom: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.3;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .timeline-card.active {
            opacity: 1;
            transform: scale(1.02);
        }
        
        .day-section {
            width: 45%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        
        .day-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            border: 1px solid var(--text-primary);
            border-radius: 5px;
        }
        
        .timeline-card.active .day-image {
            border-width: 2px;
            border-color: var(--primary-gold);
        }
        
        .day-label {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--text-gold);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            letter-spacing: 2px;
        }
        
        .timeline-spacer {
            width: 10%;
        }
        
        .card-section {
            width: 45%;
        }
        
        .card-content {
            background: var(--secondary-space-blue);
            border-radius: 15px;
            padding: 30px;
            border: 2px solid var(--ui-border);
            box-shadow: 0 10px 40px var(--ui-shadow);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
        }
        
        .timeline-card.active .card-content {
            border-color: var(--ui-border-active);
            box-shadow: 0 15px 50px rgba(255, 215, 0, 0.2);
        }
        
        .card-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--primary-gold), transparent);
        }
        
        .card-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--text-gold);
            font-weight: 600;
        }
        
        .card-description {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .timeline-card.card-right {
            flex-direction: row-reverse;
        }
        
        .timeline-card.card-right .day-section {
            text-align: center;
        }
        
        .day-indicator {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: #222;
            border-radius: 50%;
            border: 3px solid #444;
            z-index: 3;
            transition: all 0.5s ease;
        }
        
        .day-indicator.passed {
            background: var(--primary-gold);
            border-color: var(--primary-orange);
            box-shadow: 0 0 15px var(--ui-glow);
        }
        
        .day-container {
            border: 1px solid var(--ui-border);
            padding: 15px;
            background: var(--secondary-space-purple);
            border-radius: 8px;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        
        .timeline-card.active .day-container {
            border-color: var(--ui-border-active);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        
        .medal-container {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 100px;
            width: 20px;
            height: 20px;
            z-index: 10;
        }
        
        .roadmap-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .roadmap-header h1 {
            font-size: 3.2rem;
            background: linear-gradient(to right, var(--primary-gold), var(--primary-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 10px;
        }
        
        .roadmap-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }
        

        
        /* ============================================
           CUSTOM SCROLLBAR for roadmap section only
        ============================================ */
        .roadmap-section::-webkit-scrollbar {
            width: 12px;
        }
        
        .roadmap-section::-webkit-scrollbar-track {
            background: var(--secondary-deep-space);
        }
        
        .roadmap-section::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--primary-gold), var(--primary-orange));
            border-radius: 6px;
        }
        
        .roadmap-section::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, var(--primary-orange), var(--primary-gold));
        }
        
        .scroll-hint {
            text-align: center;
            margin-top: 30px;
            color: var(--text-muted);
            font-size: 0.9rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.6;
            }
            50% {
                transform: translateY(10px);
                opacity: 1;
            }
        }























                .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .faq-header {
            position: sticky;
            top: 40px;
        }

        .faq-header h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .faq-header p {
            font-size: 1.2rem;
            color: #a0a0a0;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .highlight {
            color: #764ba2;
            font-weight: 600;
        }

        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .faq-item {
            background-color: #1a1a1a;
            border: 2px solid transparent;
            background-image: 
                linear-gradient(#1a1a1a, #1a1a1a),
                linear-gradient(135deg, #000000 0%, #808080 50%, #C0C0C0 75%, #000000 100%);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item:hover {
            background-image: 
                linear-gradient(#1a1a1a, #1a1a1a),
                linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #C0C0C0 100%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(192, 192, 192, 0.15);
        }

        .faq-item.active {
            background-image: 
                linear-gradient(#1a1a1a, #1a1a1a),
                linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #C0C0C0 100%);
            box-shadow: 0 10px 30px rgba(192, 192, 192, 0.25);
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            user-select: none;
            transition: background-color 0.3s ease;
            gap: 15px;
            background: linear-gradient(90deg, rgba(192, 192, 192, 0.03) 0%, transparent 100%);
        }

        .faq-question:hover {
            background: linear-gradient(90deg, rgba(192, 192, 192, 0.08) 0%, rgba(102, 126, 234, 0.03) 100%);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            flex: 1;
            line-height: 1.5;
            margin: 0;
        }

        /* Arrow Styling - Left aligned */
        .faq-arrow {
            font-size: 1.5rem;
            color: #C0C0C0;
            font-weight: 300;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            transform: rotate(0deg); /* Starting position - down arrow */
        }

        /* Default arrow state (closed) - down arrow */
        .faq-arrow::before {
            content: '↓';
        }

        /* Active arrow state (open) - rotated 135 degrees to right arrow */
        .faq-item.active .faq-arrow {
            transform: rotate(-135deg); /* Rotates down arrow to right arrow */
            color: #E8E8E8;
        }

        .faq-item:hover .faq-arrow {
            color: #E8E8E8;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-content {
            padding: 0 30px 25px 30px;
            color: #b0b0b0;
            line-height: 1.8;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
            padding-left: 70px; /* Align with question text */
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-item.active .faq-answer-content {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-header-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #a0a0a0;
            margin-top: 5px;
        }




.button {
    margin-top: 130px;
    position: relative;
    left: -45px;

    padding: 14px 20px;
    min-width: 120px;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(135deg, #ff41e6, #690d70);
    border: none;
    border-radius: 30px;

    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2575fc, #6a11cb);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}




        .meeting-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 160px;
            margin-right: 10px;
            margin-right: 10px;
        }
        
        .meeting-info {
            padding: 40px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        
        .intro-text {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 40px;
            line-height: 1.8;
        }
        
        .credentials {
            margin-bottom: 50px;
        }
        
        .credential-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px 0;
        }
        
        .credential-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            border-radius: 50%;
            flex-shrink: 0;
        }
        
        .credential-text {
            font-size: 1.15rem;
            color: #e2e8f0;
            font-weight: 500;
        }
        
        .cta-text {
            font-size: 1.25rem;
            color: #ffffff;
            line-height: 1.8;
            padding: 30px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            border-radius: 16px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .cta-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
        }
        
        .highlight {
            color: #60a5fa;
            font-weight: 600;
        }
        
        .calendly-wrapper {
            position: relative;
            padding: 6px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        }
        
        .calendly-container {
            background: #1e293b;
            border-radius: 18px;
            overflow: hidden;
            height: 700px;
        }
        
        .calendly-inline-widget {
            width: 100%;
            height: 100%;
            border: none;
        }
        















.faded-bg {
  --bg: #020202;
  --dot: rgba(250, 250, 250, 0.189);
  --dot-size: 1.2px;
  --spacing: 20px;

  position: relative;
  overflow: hidden;
  border-radius: 12px;

  /* ❌ remove this */
  /* z-index: -1; */

  background:
    radial-gradient(
      circle,
      var(--dot) var(--dot-size),
      transparent calc(var(--dot-size) + 0.5px)
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    var(--bg);

  background-size:
    var(--spacing) var(--spacing),
    100% 100%;
}

/* Fade overlay */
.faded-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  /* ✅ keep it behind content */
  z-index: 0;
  pointer-events: none;

  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 0%,
    rgb(0, 0, 0) 50%,
    rgb(0, 0, 0) 70%,
    rgb(0, 0, 0) 80%,
    rgb(0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%
  );
}

/* ✅ ensure actual content is above the overlay */
.faded-bg > * {
  position: relative;
  z-index: 1;
}

        .container-footer {
            margin-top: 100px ;
            width: 100%;
            max-width: 1400px;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            font-family: 'Inter', sans-serif;
        }

        /* Footer text */
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 32px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .footer-text {
            font-size: 14px;
            font-weight: 300;
            color: #666;
            letter-spacing: 0.5px;
        }

        /* Main text container */
        .hero-text {
            text-align: center;
            opacity: 0;
            animation: fadeInScale 1.2s ease-out 0.5s forwards;
            margin-top: auto;
        }

        /* Metallic text effect */
        .metallic-text {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(60px, 9vw, 200px);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.02em;
            background: linear-gradient(
                180deg,
                #f5f5f5 0%,
                #d4d4d4 20%,
                #8a8a8a 40%,
                #5a5a5a 50%,
                #7a7a7a 60%,
                #0000008b 80%,
                #000000 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            text-transform: uppercase;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
        }

        /* Subtle highlight effect */
        .metallic-text::before {
            content: 'Real Statix';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.3) 0%,
                transparent 40%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: 2;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Floating particles effect */
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float linear infinite;
            opacity: 0;
        }

        @keyframes float {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100px) translateX(100px);
            }
        }

    /* ====================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ==================================== */

/* Tablets and smaller */
@media (max-width: 992px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .meeting-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 80px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .faq-header {
        position: static;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    /* Typography increases */
    h1 {
        font-size: clamp(2rem, 6vw, 3.5rem) !important;
        margin-bottom: 2rem;
    }
    
    .subheading {
        font-size: 1.3rem !important;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 1.2rem 4%;
    }
    
    .logo {
        font-size: 1.6rem;
        height: 55px;
    }
    
    /* Buttons - larger on mobile */
    .btn {
        padding: 1rem 2.5rem !important;
        font-size: 1.05rem !important;
        min-height: 50px;
    }
    
    .button-group {
        width: 100%;
        gap: 1.5rem;
    }
    
    .button-group .btn {
        width: 100%;
        max-width: 100%;
    }
    
    /* Main content */
    .main-content {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    /* Cards section */
    .scale-trap-section {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .section-tag {
        font-size: 13px;
        padding: 10px 24px;
    }
    
    .section-title {
        font-size: 2rem !important;
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 1.15rem !important;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .card-title {
        font-size: 1.6rem !important;
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 1.05rem !important;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        line-height: 1.7;
    }
    
    /* Video section */
    .interactive-video-section {
        padding: 50px 15px;
    }
    
    .interactive-video-section .main-heading {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        margin-bottom: 40px;
    }
    
    .interactive-video-section .video-wrapper {
        width: 95%;
    }
    
    /* Roadmap section */
    .roadmap-section {
        padding: 60px 15px;
    }
    
    .roadmap-header h1 {
        font-size: 2.2rem !important;
    }
    
    .roadmap-subtitle {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }
    
    .timeline-card {
        flex-direction: column !important;
        margin-bottom: 120px;
    }
    
    .day-section,
    .card-section {
        width: 100% !important;
    }
    
    .timeline-spacer {
        display: none;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .card-title {
        font-size: 1.5rem !important;
    }
    
    .day-label {
        font-size: 1.6rem !important;
    }
    
    /* FAQ section */
    .faq-header h1 {
        font-size: 2.5rem !important;
    }
    
    .faq-header p {
        font-size: 1.15rem !important;
    }
    
    .faq-question {
        padding: 22px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem !important;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 60px;
        font-size: 1rem !important;
    }
    
    /* Meeting section */
    .meeting-info {
        padding: 20px;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .intro-text {
        font-size: 1.15rem !important;
    }
    
    .credential-text {
        font-size: 1.1rem !important;
    }
    
    .cta-text {
        font-size: 1.15rem !important;
        padding: 25px 20px;
    }
    
    .calendly-container {
        height: 600px;
    }
    
    /* Footer */
    .metallic-text {
        font-size: clamp(40px, 12vw, 100px) !important;
    }
    
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .footer-text {
        font-size: 13px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Even larger text on small screens */
    h1 {
        font-size: clamp(1.75rem, 7vw, 3rem) !important;
        line-height: 1.2;
    }
    
    .subheading {
        font-size: 1.2rem !important;
    }
    
    /* Buttons */
    .btn {
        padding: 1.1rem 2rem !important;
        font-size: 1.1rem !important;
        min-height: 54px;
    }
    
    /* Logo */
    .logo {
        font-size: 1.4rem;
        height: 50px;
    }
    
    .logo i {
        font-size: 1.7rem;
    }
    
    /* Main content */
    .main-content {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    /* Sections */
    .scale-trap-section {
        padding: 25px 15px;
        margin: 15px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1.1rem !important;
        padding: 0 10px;
    }
    
    .card-title {
        font-size: 1.5rem !important;
    }
    
    .card-description {
        font-size: 1.05rem !important;
        line-height: 1.65;
    }
    
    /* Interactive video */
    .interactive-video-section .main-heading {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }
    
    .interactive-video-section .play-button {
        width: 70px;
        height: 70px;
    }
    
    /* Roadmap */
    .roadmap-header h1 {
        font-size: 2rem !important;
    }
    
    .roadmap-subtitle {
        font-size: 1.05rem !important;
    }
    
    .day-image {
        width: 100px;
        height: 100px;
    }
    
    .day-label {
        font-size: 1.4rem !important;
    }
    
    /* FAQ */
    .faq-header h1 {
        font-size: 2.2rem !important;
    }
    
    .faq-header p {
        font-size: 1.1rem !important;
    }
    
    .faq-question h3 {
        font-size: 1.02rem !important;
        line-height: 1.6;
    }
    
    .faq-answer-content {
        padding-left: 55px;
        font-size: 0.98rem !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Meeting section */
    .intro-text {
        font-size: 1.1rem !important;
    }
    
    .credential-text {
        font-size: 1.05rem !important;
    }
    
    .cta-text {
        font-size: 1.1rem !important;
    }
    
    .calendly-container {
        height: 550px;
    }
    
    /* Footer */
    .metallic-text {
        font-size: clamp(35px, 13vw, 80px) !important;
    }
    
    .container-footer {
        margin-top: 60px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .btn {
        padding: 1rem 1.8rem !important;
        font-size: 1.05rem !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
    }
    
    .card-title {
        font-size: 1.4rem !important;
    }
    
    .faq-answer-content {
        padding-left: 50px;
    }
}