﻿

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── HERO ── */
#hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb-1 {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(0,212,255,.12);
    filter: blur(100px);
    animation: pulse 8s ease-in-out infinite;
}

.orb-2 {
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(139,92,246,.12);
    filter: blur(100px);
    animation: pulse 10s ease-in-out infinite;
    animation-delay: -4s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,212,255,.05) 1px,transparent 1px), linear-gradient(90deg,rgba(0,212,255,.05) 1px,transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
}

@keyframes pulse {
    0%,100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.15);
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: .85rem;
    color: var(--muted);
}

    .breadcrumb a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .breadcrumb a:hover {
            color: var(--primary);
        }

    .breadcrumb .sep {
        opacity: .4;
    }

    .breadcrumb .active {
        color: var(--primary);
    }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.25);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

    .hero-tag svg {
        width: 14px;
        height: 14px;
    }

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-name {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 100px;
    background: rgba(139,92,246,.12);
    border: 1px solid rgba(139,92,246,.3);
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: .04em;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 680px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(232,240,254,.7);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(0,212,255,.35);
    transition: all .2s;
}

    .btn-primary:hover {
        background: #33dbff;
        box-shadow: 0 0 36px rgba(0,212,255,.5);
    }

    .btn-primary svg {
        width: 16px;
        height: 16px;
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
}

    .btn-outline:hover {
        border-color: rgba(255,255,255,.5);
        background: rgba(255,255,255,.05);
    }

    .btn-outline svg {
        width: 16px;
        height: 16px;
    }

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── DIVIDER ── */
.divider {
    height: 1px;
    background: linear-gradient(90deg,transparent,rgba(0,212,255,.3),transparent);
    margin: 0 24px;
}

/* ── FEATURES ── */
#features {
    padding: 96px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 72px;
}

.eyebrow {
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.features-header h2 {
    font-size: clamp(1.8rem,3vw,2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

.features-header p {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feat-card {
    background: var(--card);
    border-radius: 20px;
    padding: 28px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

    .feat-card.cyan {
        border: 1px solid rgba(0,212,255,.2);
        box-shadow: 0 4px 20px rgba(0,212,255,.06);
    }

    .feat-card.purple {
        border: 1px solid rgba(139,92,246,.2);
        box-shadow: 0 4px 20px rgba(139,92,246,.06);
    }

    .feat-card.cyan:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0,212,255,.12);
    }

    .feat-card.purple:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(139,92,246,.12);
    }

.feat-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.feat-card.cyan .feat-bar {
    background: linear-gradient(90deg,#00d4ff,transparent);
}

.feat-card.purple .feat-bar {
    background: linear-gradient(90deg,#8b5cf6,transparent);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform .3s;
}

.feat-card:hover .feat-icon {
    transform: scale(1.1);
}

.feat-card.cyan .feat-icon {
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    color: #00d4ff;
}

.feat-card.purple .feat-icon {
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.2);
    color: #8b5cf6;
}

.feat-icon svg {
    width: 22px;
    height: 22px;
}

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feat-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* ── CTA STRIP ── */
#cta-strip {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg,#080d14,#0d1521 50%,#080d14);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0,212,255,.12);
    filter: blur(80px);
    pointer-events: none;
}

#cta-strip h2 {
    font-size: clamp(1.8rem,3.5vw,2.8rem);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 16px;
}

#cta-strip p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 36px;
}

/* ── FOOTER ── */
footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin: 16px 0;
    max-width: 340px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

    .footer-email:hover {
        color: var(--primary);
    }

    .footer-email svg {
        width: 16px;
        height: 16px;
    }

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--primary);
    }

    .footer-col a.active {
        color: var(--primary);
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bottom span {
        color: var(--muted);
        font-size: .85rem;
    }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .nav-links, .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-row {
        flex-direction: column;
    }

        .cta-row a {
            justify-content: center;
        }
}
