/* W3VJ Smart Builder — marketing landing */

.landing-nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.landing-nav-links {
    justify-self: center;
}

.landing-nav-actions {
    justify-self: end;
}

.nav-link {
    position: relative;
    color: rgb(203 213 225);
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00AEEF;
    transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

.landing-hero {
    background: #050A18;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 163, 255, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 20% 60%, rgba(0, 174, 239, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 35% at 80% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero-badge {
    border: 1px solid rgba(0, 174, 239, 0.25);
    background: rgba(0, 174, 239, 0.06);
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.08);
}

.hero-gradient-text {
    background: linear-gradient(90deg, #00AEEF 0%, #38bdf8 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-hero-primary {
    border-radius: 1rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow:
        0 4px 14px rgba(0, 174, 239, 0.35),
        0 0 32px rgba(0, 163, 255, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(0, 174, 239, 0.45),
        0 0 40px rgba(0, 163, 255, 0.2);
}

.btn-hero-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 1rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    color: #0f172a;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-hero-light:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-hero-light .play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 2px solid currentColor;
}

.hero-trust {
    color: rgb(100 116 139);
}

.hero-trust-divider {
    width: 1px;
    height: 1rem;
    background: rgb(51 65 85);
}

.glow-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 174, 239, 0.12);
    border-color: rgba(0, 174, 239, 0.3);
}

.step-connector {
    position: absolute;
    top: 2.5rem;
    left: 60%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.3), rgba(0, 174, 239, 0.1));
}

.pricing-card.featured {
    border-color: rgba(0, 174, 239, 0.4);
    box-shadow: 0 8px 32px rgba(0, 174, 239, 0.15);
    transform: scale(1.03);
}

.template-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.template-card:hover {
    border-color: rgba(0, 174, 239, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.template-card-preview {
    height: 200px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 174, 239, 0.3);
}

.landing-mobile-menu {
    display: none;
}

.landing-mobile-menu.is-open {
    display: block;
}

@media (max-width: 767px) {
    .landing-nav-inner {
        grid-template-columns: 1fr auto;
    }

    .landing-nav-links {
        display: none;
    }

    .landing-mobile-menu.is-open {
        display: block;
        border-top: 1px solid rgba(51, 65, 85, 0.5);
        padding: 1rem 1.5rem 1.25rem;
    }

    .landing-mobile-menu a {
        display: block;
        padding: 0.625rem 0;
        font-size: 0.875rem;
        font-weight: 500;
        color: rgb(203 213 225);
    }

    .landing-mobile-menu a:hover {
        color: #fff;
    }
}
