@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-obsidian: #0A0A0A;
    --bg-card: #151515;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --gradient-blue: linear-gradient(135deg, #3B82F6, #06B6D4);
    --gradient-green: linear-gradient(135deg, #10B981, #059669);
    --border-glass: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-obsidian);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* Navbar adapted for integrations page */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo i {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.btn-login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: white;
    color: black;
}

/* Hero Section */
.integrations-hero {
    padding: 180px 10% 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-text h1 {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

@keyframes titleGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.hero-text h1 span.gradient {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 4s ease-in-out infinite;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-green);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

/* Integrations Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.integration-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid var(--border-glass);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: 0.5s;
}

.integration-card:hover::before {
    opacity: 1;
}

.integration-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.card-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.integration-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.integration-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Section Labels */
.section-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    display: block;
}

/* Glow Background Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .integrations-hero {
        grid-template-columns: 1fr;
        padding-top: 150px;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 3rem;
    }

    .integrations-grid {
        margin-top: 4rem;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}