/* Landing Page Specific Styles */
body {
    background-color: #030712;
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Background Effects */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Navbar */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-links-c {
    display: flex;
    align-items: center;
}

.nav-links-c a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links-c a:hover {
    color: white;
}

.btn-landing {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    display: inline-block;
}

.btn-landing.primary {
    background: white;
    color: black;
}

.btn-landing.primary:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-landing.outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
}

.btn-landing.outline:hover {
    border-color: white;
}

/* Hero */
.hero-section {
    position: relative;
    z-index: 10;
    padding: 8rem 5% 5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-desc {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-visual {
    position: relative;
    margin-top: 4rem;
    perspective: 1000px;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.app-mockup {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.1);
    transform: rotateX(20deg) scale(0.9);
    transition: transform 0.5s;
}

.hero-visual:hover .app-mockup {
    transform: rotateX(0deg) scale(1);
}

/* Features */
.features-section {
    padding: 8rem 5%;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.f-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.f-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.f-desc {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Integration Cards Hover Effects */
.integration-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .landing-nav {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .landing-nav>div:first-child {
        font-size: 1.2rem;
    }

    .landing-nav>div:last-child {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-links-c {
        display: none;
    }

    .btn-landing {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .hero-section {
        padding: 8rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .features-section {
        padding: 4rem 1rem;
    }

    .features-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .landing-nav {
        padding: 0.75rem;
    }

    .landing-nav>div:first-child {
        font-size: 1rem;
    }

    .btn-landing {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}