/* Landing Page CSS - No Conflicts */
:root {
    --landing-primary: #667eea;
    --landing-primary-dark: #5a67d8;
    --landing-purple: #764ba2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-page {
    font-family: 'Inter', sans-serif;
    background: #0a0e1a;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(135deg, var(--landing-primary) 0%, var(--landing-purple) 100%);
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveDots 20s linear infinite;
}

@keyframes moveDots {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.overlay-dark {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(8px);
    z-index: -1;
}

/* Landing Navbar */
.landing-navbar {
    padding: 20px 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.landing-navbar .navbar-brand {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #a8b2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
}

.landing-navbar .nav-link {
    color: rgba(255,255,255,0.7) !important;
    font-weight: 500;
    transition: 0.3s;
}

.landing-navbar .nav-link:hover {
    color: white !important;
}

.btn-outline-glow {
    border: 1px solid rgba(102, 126, 234, 0.5);
    background: transparent;
    color: white;
    border-radius: 50px;
    padding: 8px 25px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-glow:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: var(--landing-primary);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-primary-glow {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-purple));
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Hero Section */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 50px;
    color: #a8b2ff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a8b2ff 50%, var(--landing-purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Stats */
.landing-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Features */
.landing-features {
    padding: 100px 0;
    background: #0a0e1a;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #a8b2ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-desc {
    text-align: center;
    color: rgba(255,255,255,0.5);
    margin-bottom: 60px;
    font-size: 18px;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: #a8b2ff;
}

.feature-card h4 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA */
.landing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

/* Landing Footer */
.landing-footer {
    padding: 60px 0 30px;
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .landing-stats {
        flex-direction: column;
        gap: 15px;
    }
    .section-title {
        font-size: 28px;
    }
}