/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Force Orbitron on specific elements */
h1, h2, h3, h4, h5, h6, 
.font-orbitron, 
.hero-gradient-text, 
.hero-subtitle {
    font-family: 'Orbitron', monospace !important;
}

body {
    overflow-x: hidden;
    background: linear-gradient(to bottom, #000000, #0a0a0f);
    color: white;
    position: relative;
}

html, body {
    scroll-behavior: smooth;
}

/* Cursor Canvas */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

section {
    position: relative;
    z-index: 10;
}

/* Scroll Padding for Fixed Navbar */
section[id] {
    scroll-margin-top: 80px;
}

/* Navigation Styles */
.nav-glass {
    background: rgba(10, 10, 15, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-glass.scrolled {
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #d1d5db;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00D4FF, transparent);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.nav-link:active {
    transform: scale(0.95);
}

/* Login Button Styling */
.nav-login-btn {
    position: relative;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-block;
}

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

.nav-login-btn:hover::before {
    left: 100%;
}

.nav-login-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-1px);
}

.nav-login-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Mobile Menu Links */
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00D4FF;
    padding-left: 1.5rem;
}

.mobile-nav-link:active {
    transform: scale(0.98);
}

/* Button Styles */
.premium-btn {
    position: relative;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.premium-btn:hover::before {
    left: 100%;
}

.premium-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #00D4FF;
}

.premium-btn:active {
    transform: translateY(0) scale(0.98);
}

.premium-btn-primary {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.4);
    color: #FFFFFF;
    box-shadow: 
        0 4px 20px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.premium-btn-primary:hover {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 8px 30px rgba(0, 212, 255, 0.4),
        0 0 40px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

/* Founders Club Special Styles */
.founders-banner {
    position: relative;
    overflow: hidden;
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2),
        rgba(139, 92, 246, 0.2));
    backdrop-filter: blur(5px);
    animation: founderBadgePulse 3s ease-in-out infinite;
}

@keyframes founderBadgePulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        border-color: rgba(0, 212, 255, 0.5);
    }
    50% { 
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
        border-color: rgba(0, 212, 255, 0.8);
    }
}

.founder-price-highlight {
    position: relative;
    display: inline-block;
}

.founder-price-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        #00D4FF,
        #8B5CF6,
        #00D4FF,
        transparent);
    animation: priceUnderlineSweep 3s ease-in-out infinite;
}

@keyframes priceUnderlineSweep {
    0%, 100% { transform: translateX(-20%); opacity: 0.5; }
    50% { transform: translateX(20%); opacity: 1; }
}

.founders-glow-border {
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(139, 92, 246, 0.1),
        inset 0 0 30px rgba(0, 212, 255, 0.05);
    transition: all 0.4s ease;
}

.founders-glow-border:hover {
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2),
        inset 0 0 40px rgba(0, 212, 255, 0.1);
    transform: translateY(-4px);
}

/* Founder Crown Icon Animation */
.fa-crown.founder-icon {
    animation: crownFloat 2s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* Founder Fire Icon Animation */
.fa-fire.founder-fire {
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Glass Card */
.glass-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature Card Styles */
.feature-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 161, 186, 0.515), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 25px rgba(0, 213, 255, 0.423);
    scale: 1.02;
}

.feature-icon {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 20px currentColor);
    transform: scale(1.05);
}

/* Pricing Card Styles */
.pricing-card {
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card-popular {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.2);
    overflow: visible !important;
    position: relative;
}

.pricing-card-popular:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

/* Social Proof Styles */
.testimonial-card {
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF, #0066CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.star-icon {
    color: #00D4FF;
}

.quote-icon {
    color: white;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 3rem;
}

/* Gradient Text */
.hero-gradient-text,
h1 .hero-gradient-text,
h2 .hero-gradient-text,
h3 .hero-gradient-text {
    font-family: 'Orbitron', monospace !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.5);
}

/* Fade Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

.observe-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.observe-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #00D4FF;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-drop 2.5s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

/* Hero Gradient Text Animation */
.hero-gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #00D4FF 30%, #FFFFFF 45%, #00D4FF 60%, #00D4FF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    #cursorCanvas {
        display: block;
        pointer-events: auto;
        touch-action: none;
    }
    
    body, html {
        touch-action: pan-y !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

/* --- 3D CAROUSEL STYLES (Pricing) --- */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    perspective: 1000px;
    margin-top: 1rem;
    margin-bottom: 12rem;
}

.cyber-card {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 320px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    left: 50%;
    margin-left: -160px;
    display: flex;
    flex-direction: column;
}

/* --- CAROUSEL STATES --- */
/* CENTER (Active) */
.cyber-card.pos-center {
    transform: translateX(0) scale(1.1) translateZ(100px);
    z-index: 50;
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 25px 80px -20px rgba(0, 212, 255, 0.4),
        inset 0 0 0 1px rgba(0, 212, 255, 0.3),
        0 0 40px rgba(139, 92, 246, 0.3);
    filter: brightness(1);
    opacity: 1;
}

.cyber-card.pos-center .card-glow-bar {
    opacity: 1;
}

/* LEFT (Receded) */
.cyber-card.pos-left {
    transform: translateX(-65%) scale(0.9) translateZ(-100px) rotateY(15deg);
    z-index: 10;
    filter: brightness(0.5);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.cyber-card.pos-left:hover {
    filter: brightness(0.8);
    transform: translateX(-70%) scale(0.92) translateZ(-90px) rotateY(15deg);
}

/* RIGHT (Receded) */
.cyber-card.pos-right {
    transform: translateX(65%) scale(0.9) translateZ(-100px) rotateY(-15deg);
    z-index: 10;
    filter: brightness(0.5);
    border-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.cyber-card.pos-right:hover {
    filter: brightness(0.8);
    transform: translateX(70%) scale(0.92) translateZ(-90px) rotateY(-15deg);
}

/* --- CAROUSEL ARROWS --- */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 20px;
}

.nav-arrow {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-arrow:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

/* Inner Card Elements */
.card-glow-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 212, 255, 0.5) 0%, transparent 100%);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s;
}

.cyber-chip {
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at center, rgba(0, 213, 255, 0.551), rgba(0, 102, 204, 0.1));
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
    margin-bottom: 15px;
    position: relative;
}

.cyber-chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    background-image: radial-gradient(#00D4FF 1px, transparent 1px);
    background-size: 4px 4px;
    opacity: 0.5;
}

.cyber-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    position: relative;
    z-index: 5;
}

.cyber-price {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cyber-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #00D4FF;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 5;
    overflow: hidden;
    text-align: center;
    display: inline-block;
    box-shadow: 
        0 4px 15px rgba(0, 212, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 212, 255, 0.3),
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #00D4FF;
}

.cyber-btn:active {
    transform: scale(0.98);
}

.cyber-list {
    position: relative;
    z-index: 5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cyber-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1d5db;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cyber-check {
    color: #00D4FF;
    font-weight: bold;
    font-size: 1.2rem;
}

/* MOST POPULAR Badge */
.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    color: #00D4FF;
    font-size: 10px;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0.75rem 0 0.75rem;
    z-index: 20;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.6);
}

/* Adjust card border radius for Starter card with badge */
.cyber-card.pos-center {
    border-top-right-radius: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-container {
        height: 480px;
        perspective: 800px;
        margin-bottom: 8rem;
    }
    
    .cyber-card {
        max-width: 280px;
        margin-left: -140px;
        padding: 20px;
    }
    
    .cyber-card.pos-center {
        transform: translateX(0) scale(1) translateZ(50px);
    }
    
    .cyber-card.pos-left {
        transform: translateX(-70%) scale(0.8) translateZ(-150px) rotateY(20deg);
    }
    
    .cyber-card.pos-right {
        transform: translateX(70%) scale(0.8) translateZ(-150px) rotateY(-20deg);
    }
    
    .cyber-price {
        font-size: 1.8rem;
    }
    
    .cyber-header h3 {
        font-size: 1.3rem !important;
    }
    
    .cyber-header .text-xs {
        font-size: 0.65rem !important;
    }
    
    .cyber-list li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .cyber-btn {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        padding: 0 10px;
        max-width: 700px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .popular-badge {
        font-size: 9px;
        padding: 2px 8px;
    }
}

/* --- ROADMAP SECTION --- */
.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Vertical line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        rgba(0, 212, 255, 0.8),
        rgba(0, 212, 255, 0.3),
        rgba(0, 212, 255, 0.1)
    );
}

.roadmap-item {
    position: relative;
    display: flex;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.roadmap-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-marker {
    position: relative;
    width: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.roadmap-icon {
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 15, 0.9);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D4FF;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.roadmap-item:hover .roadmap-icon {
    transform: scale(1.15);
    border-color: #00D4FF;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.roadmap-icon.funding-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(139, 92, 246, 0.6);
}

.roadmap-pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.4);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.roadmap-content {
    flex: 1;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    margin-left: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.roadmap-item:hover .roadmap-content::before {
    opacity: 1;
}

.roadmap-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.live-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.1));
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
}

.upcoming-badge {
    background: rgba(139, 92, 246, 0.15);
    color: #a855f7;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.future-badge {
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

.roadmap-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.roadmap-date {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.roadmap-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.roadmap-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #d1d5db;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.roadmap-features li i {
    margin-right: 0.75rem;
    color: #00D4FF;
    font-size: 0.8rem;
}

.roadmap-item:hover .roadmap-features li {
    color: #ffffff;
}

.roadmap-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.roadmap-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00D4FF, #a855f7);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.funding-callout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.funding-callout i {
    color: #a855f7;
    font-size: 1.2rem;
}

.funding-callout span {
    color: #e5e7eb;
    font-size: 0.95rem;
}

.roadmap-item:hover .funding-callout {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 212, 255, 0.15));
}

/* Investment CTA */
.investment-cta {
    margin-top: 5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.investment-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.investment-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 212, 255, 0.1));
    backdrop-filter: blur(3px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* .investment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 50%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} */

.investment-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    transform: translateY(-5px);
}

.investment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(0, 212, 255, 0.2));
    border: 2px solid rgba(138, 92, 246, 0.645);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #b567fe;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.investment-content {
    position: relative;
    z-index: 1;
}

.investment-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: bold;
}

.investment-content p {
    color: #d1d5db;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Roadmap Mobile Responsive */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-marker {
        width: 40px;
    }
    
    .roadmap-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .roadmap-pulse {
        width: 40px;
        height: 40px;
    }
    
    .roadmap-content {
        margin-left: 1rem;
        padding: 1.5rem;
    }
    
    .roadmap-title {
        font-size: 1.25rem;
    }
    
    .roadmap-features li {
        font-size: 0.85rem;
    }
    
    .investment-card {
        padding: 2rem;
    }
    
    .investment-content h3 {
        font-size: 1.5rem;
    }
    
    .investment-content p {
        font-size: 1rem;
    }
}

/* --- SCROLL ANIMATIONS --- */
@keyframes scroll-drop {
    0% { top: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.animate-scroll-drop {
    animation: scroll-drop 2.5s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

@keyframes float-text {
    0%, 100% { transform: translateY(0); opacity: 0.8; }
    50% { transform: translateY(-5px); opacity: 1; }
}

.animate-float-text {
    animation: float-text 3s ease-in-out infinite;
}
