 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0f;
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Digital Grid Background */
        .digital-grid {
            background-image: 
                linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
            background-size: 50px 50px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            animation: gridMove 20s linear infinite;
        }

  .status-fill{
      position: relative;
      overflow: hidden;
      animation: fillPulse 2.2s ease-in-out infinite;
    }
    .status-fill::after{
      content:"";
      position:absolute;
      inset:0;
      transform: translateX(-60%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
      animation: shimmer 1.8s linear infinite;
    }
    @keyframes shimmer{
      0%{ transform: translateX(-60%); }
      100%{ transform: translateX(60%); }
    }
    @keyframes fillPulse{
      0%,100%{ filter: saturate(1); }
      50%{ filter: saturate(1.25); }
    }

        
        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        
        /* Scanning Line Animation */
        .scan-line {
            position: fixed;
            top: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
            animation: scan 4s linear infinite;
            z-index: 9999;
            pointer-events: none;
        }
        
        @keyframes scan {
            0% { top: -2px; }
            100% { top: 100vh; }
        }
        
        /* Glitch Effect */
        .glitch {
            position: relative;
            animation: glitch 3s infinite;
        }
        
        @keyframes glitch {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-2px, 2px); }
            94% { transform: translate(2px, -2px); }
            96% { transform: translate(-2px, -2px); }
        }
        
        /* Navigation */
        nav {
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
            backdrop-filter: blur(10px);
            background: rgba(10, 10, 15, 0.8);
        }
        
        /* Hero Section */
        .hero-title {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        
        /* Status Badge */
        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border: 1px solid #8b5cf6;
            background: rgba(139, 92, 246, 0.1);
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        
	  .feature-card:hover .feature-border{
      animation: gradShift 2.2s ease-in-out infinite;
    }

    .feature-shine{
      overflow: hidden;
    }
    .feature-shine::after{
      content:"";
      position:absolute;
      inset:-40%;
      transform: translateX(-55%) rotate(20deg);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
    }
    .feature-card:hover .feature-shine::after{
      animation: shine 1.25s ease-out infinite;
    }

    .feature-card:hover .icon-wrap{
      transform: translateY(-2px);
      transition: transform .25s ease;
    }
    .feature-card:hover .icon{
      animation: iconPop .9s ease-in-out infinite;
    }

    .feature-card:hover .num-badge{
      animation: badgePulse 1.4s ease-in-out infinite;
    }

    .dot{
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(167,139,250,.9);
      box-shadow: 0 0 0 4px rgba(167,139,250,.12);
      flex: 0 0 auto;
    }
    .feature-card:hover .li-anim{
      transform: translateX(2px);
      transition: transform .25s ease;
    }

    @keyframes shine{
      0%{ transform: translateX(-55%) rotate(20deg); opacity: 0; }
      20%{ opacity: 1; }
      100%{ transform: translateX(55%) rotate(20deg); opacity: 0; }
    }
    @keyframes gradShift{
      0%,100%{ filter: saturate(1); }
      50%{ filter: saturate(1.25); }
    }
    @keyframes badgePulse{
      0%,100%{ transform: scale(1); }
      50%{ transform: scale(1.04); }
    }
    @keyframes iconPop{
      0%,100%{ transform: rotate(0deg) scale(1); }
      50%{ transform: rotate(-6deg) scale(1.05); }
    }


        /* Terminal Block */
        .terminal {
            background: #0a0a0f;
            border: 1px solid rgba(139, 92, 246, 0.4);
            padding: 1.5rem;
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            overflow-x: auto;
        }
        
        .terminal-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        }
        
        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .terminal-line {
            color: #10b981;
        }
        
        .terminal-comment {
            color: #6b7280;
        }
        
        /* CTA Button */
        .cta-button {
            background: #8b5cf6;
            color: #ffffff;
            padding: 1rem 3rem;
            font-size: 1.125rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: 2px solid #8b5cf6;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            background: transparent;
            color: #8b5cf6;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }
        
        /* New Beautiful FAQ Styles */
.faq-card {
    background: rgba(26, 26, 36, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(26, 26, 36, 0.8);
    transform: translateX(4px);
}

/* Neon Left Border Accent */
.faq-card::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0%;
    background: #8b5cf6;
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-card.active::before {
    height: 60%;
    opacity: 1;
    box-shadow: 0 0 10px #8b5cf6;
}

.faq-card.active {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    transform: translateX(4px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Animated Icon */
.faq-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-icon-wrap {
    background: #8b5cf6;
    color: #fff;
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Smooth Height Transition using CSS Grid */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 1.5rem;
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0s;
}

.faq-card.active .faq-answer-inner {
    padding-bottom: 1.5rem;
    opacity: 1;
    transition-delay: 0.2s; /* Text fades in after grid expands */
}

        /* Stats Dashboard */
        .stat-card {
            background: #1a1a24;
            border: 1px solid rgba(139, 92, 246, 0.3);
            padding: 1.5rem;
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #8b5cf6;
            font-family: 'Courier New', monospace;
        }
        
        .stat-label {
            font-size: 0.875rem;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 0.5rem;
        }
        
        /* Progress Bar */
        .progress-bar {
            height: 8px;
            background: rgba(139, 92, 246, 0.2);
            border: 1px solid rgba(139, 92, 246, 0.4);
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #8b5cf6, #a78bfa);
            animation: progressMove 2s ease-in-out infinite;
        }
        
        @keyframes progressMove {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Floating Particles */
        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: #8b5cf6;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            animation: float 8s infinite;
        }
        
        @keyframes float {
            0% {
                opacity: 0;
                transform: translateY(100vh) translateX(0);
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(-100vh) translateX(100px);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
        }
        
        /* Container */
        .container-custom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Section Spacing */
        section {
            padding: 5rem 0;
        }
        
        @media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }
        }


  /* Custom Scrollbar for the table container on mobile */
    .custom-scrollbar::-webkit-scrollbar {
        height: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
        background: rgba(26, 26, 36, 0.5);
        border-radius: 4px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
        background: #8b5cf6;
        border-radius: 4px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: #6d28d9;
    }

