body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: black;
    color: white;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -1.5px;
}

#bg-video {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    object-fit:cover;
    z-index:0;
    pointer-events:none;
}

.navbar {
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    box-sizing:border-box;
    z-index:10000;
    background:rgba(255, 253, 253, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    position:relative;
}
.logo img{
    height:40px;
    position:absolute;
    transform: translateY(-50%);
}
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.35s;
    position:relative;
}


.nav-links a::after{
    content:"";
    position:absolute;
    bottom:-5px;
    width:0px;
    left:0;
    height:2px;
    background-color:#00d4ff;
    transition: width 0.35s;
}

.nav-links a:hover::after {
    width: 100%; 
}

.nav-login {
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(0, 114, 255, 0.1); 
    
    color: white;
    backdrop-filter: blur(8px);
    transition: 0.3s ease;
}

.nav-login:hover {
    background: linear-gradient(135deg, #0072ff, #00d4ff);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.hero{
    height:65vh;
    display:flex;
    z-index:10;
    color:white;
    align-items: center;
    padding-left:10%;
    position:relative;

}

.hero-btns {
    display: flex;
    gap: 20px; 
    margin-top: 70px;
}

.hero-btns a {
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.features {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 10%;
    flex-wrap: wrap;
     margin-top: -20px;
}

.feature-card {
    width: 320px;
    padding: 10px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: white;
    transition: 0.4s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.25);
    margin: 0 auto 24px;
    color: #a855f7;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer {
    position: relative;
    z-index: 10;
    padding: 20px 10%; 
    background: rgba(1, 20, 89, 0.347);
    backdrop-filter: blur(10px);
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

/* ═══════════════════════════════════════════
   MOBILE MENU OVERLAY (outside nav to avoid backdrop-filter clipping)
═══════════════════════════════════════════ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d0a1e;
    z-index: 9999;
    list-style: none;
    margin: 0;
    padding: 8px 16px 48px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid rgba(168,85,247,0.25);
}
.mobile-menu.open {
    display: flex;
}

/* Regular nav items */
.mobile-menu li a:not(.mobile-login) {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    background: transparent;
}
.mobile-menu li a:not(.mobile-login):hover {
    background: rgba(168,85,247,0.07);
}

/* Emoji icon */
.mm-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Text block */
.mm-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.mm-text strong {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.01em;
}
.mm-text small {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

/* Chevron */
.mm-chevron {
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}
.mobile-menu li a:not(.mobile-login):hover .mm-chevron {
    color: rgba(168,85,247,0.7);
    transform: translateX(3px);
}
.mobile-menu li a:not(.mobile-login):hover .mm-icon {
    background: rgba(168,85,247,0.1);
    border-color: rgba(168,85,247,0.25);
}
.mm-icon svg {
    color: rgba(168,85,247,0.85);
}

/* Login button */
.mm-login-item {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu li a.mobile-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 20px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(99,102,241,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   HAMBURGER MENU
═══════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 8px;
    z-index: 20;
    flex-shrink: 0;
    transition: background 0.2s;
}
.hamburger:hover {
    background: rgba(255,255,255,0.10);
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 0 16px !important;
        height: 60px !important;
    }

    .hamburger {
        display: flex !important;
        background: rgba(255,255,255,0.07) !important;
        border-color: rgba(255,255,255,0.12) !important;
    }
    .hamburger.open {
        background: rgba(168,85,247,0.15) !important;
        border-color: rgba(168,85,247,0.35) !important;
    }


    /* Desktop nav-links hidden on mobile — mobile-menu handles it instead */
    .nav-links {
        display: none !important;
    }
    /* Features */
    .features {
        padding: 20px 16px;
        gap: 16px;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 20px !important;
    }

    /* Footer */
    .footer-inner {
        padding: 36px 20px !important;
        gap: 36px;
        flex-direction: column;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links-group {
        gap: 32px;
    }

    .footer-bottom {
        padding: 16px 20px !important;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}