@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:#06060f;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    top:-200px;
    left:-200px;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(168,85,247,0.15) 0%, transparent 70%);
    pointer-events:none;
    z-index:0;
}

body::after{
    content:'';
    position:fixed;
    bottom:-200px;
    right:-200px;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
    pointer-events:none;
    z-index:0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.03);
    border-bottom:1px solid rgba(255,255,255,0.08);
    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    font-family:'Space Grotesk', sans-serif;
    font-size:22px;
    font-weight:700;
    background:linear-gradient(135deg,#a855f7,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.nav-links a{
    color:rgba(255,255,255,0.7);
    text-decoration:none;
    margin-left:25px;
    font-size:14px;
    font-weight:500;
    transition:color 0.3s;
}

.nav-links a:hover{
    color:white;
}

.hero{
    min-height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:60px 40px;
    position:relative;
    overflow:hidden;
    z-index:1;
}

#particles{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}

.hero-content{
    max-width:800px;
    position:relative;
    z-index:1;
}

.hero-badge{
    display:inline-block;
    padding:6px 16px;
    background:rgba(168,85,247,0.15);
    border:1px solid rgba(168,85,247,0.3);
    border-radius:50px;
    font-size:13px;
    color:#c084fc;
    margin-bottom:30px;
    letter-spacing:0.5px;
}

.hero h1{
    font-family:'Space Grotesk', sans-serif;
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:20px;
    letter-spacing:-1px;
}

.hero span{
    background:linear-gradient(135deg,#a855f7,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.hero p{
    font-size:18px;
    color:rgba(255,255,255,0.5);
    margin-bottom:40px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    padding:14px 32px;
    background:linear-gradient(135deg,#a855f7,#6366f1);
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    font-size:15px;
    transition:all 0.3s;
    box-shadow:0 0 30px rgba(168,85,247,0.3);
    border:none;
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 50px rgba(168,85,247,0.5);
}

.features{
    padding:80px 8%;
    position:relative;
    z-index:1;
}

.section-title{
    text-align:center;
    font-family:'Space Grotesk', sans-serif;
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.section-sub{
    text-align:center;
    color:rgba(255,255,255,0.4);
    margin-bottom:50px;
    font-size:16px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
    max-width:1100px;
    margin:0 auto;
}

.card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    border-radius:20px;
    padding:30px;
    transition:all 0.3s;
}

.card:hover{
    border-color:rgba(168,85,247,0.4);
    background:rgba(168,85,247,0.05);
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(168,85,247,0.1);
}

.card-icon{
    font-size:32px;
    margin-bottom:15px;
}

.card h3{
    font-family:'Space Grotesk', sans-serif;
    font-size:18px;
    margin-bottom:10px;
}

.card p{
    color:rgba(255,255,255,0.5);
    font-size:14px;
    line-height:1.6;
}

.contact-section{
    padding:80px 8%;
    text-align:center;
    position:relative;
    z-index:1;
}

.contact-section h2{
    font-family:'Space Grotesk', sans-serif;
    font-size:38px;
    margin-bottom:15px;
}

.contact-section > p{
    color:rgba(255,255,255,0.5);
    margin-bottom:10px;
    font-size:15px;
}

.contact-box{
    max-width:500px;
    margin:40px auto 0;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:35px;
    backdrop-filter:blur(20px);
}

.contact-box h3{
    font-family:'Space Grotesk', sans-serif;
    margin-bottom:25px;
    font-size:20px;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:12px 16px;
    margin-bottom:15px;
    border-radius:10px;
    background:rgba(255,255,255,0.05);
    color:white;
    border:1px solid rgba(255,255,255,0.1);
    font-family:'Inter', sans-serif;
    font-size:14px;
    display:block;
    transition:border 0.3s;
}

.contact-box input:focus,
.contact-box textarea:focus{
    outline:none;
    border-color:rgba(168,85,247,0.5);
}

.footer{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,0.06);
    color:rgba(255,255,255,0.3);
    font-size:13px;
    position:relative;
    z-index:1;
}

.dashboard{
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:250px;
    background:rgba(255,255,255,0.03);
    border-right:1px solid rgba(255,255,255,0.08);
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.sidebar h2{
    font-family:'Space Grotesk', sans-serif;
    background:linear-gradient(135deg,#a855f7,#6366f1);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    margin-bottom:30px;
}

.sidebar ul{
    list-style:none;
}

.sidebar li{
    margin:15px 0;
}

.sidebar a{
    text-decoration:none;
    color:rgba(255,255,255,0.6);
    font-size:14px;
    transition:color 0.3s;
}

.sidebar a:hover{
    color:white;
}

.main-content{
    flex:1;
    padding:40px;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:25px 0;
}

.logout-btn{
    border:none;
    cursor:pointer;
    background:rgba(168,85,247,0.1);
    color:#c084fc;
    padding:10px 20px;
    border-radius:10px;
    font-size:14px;
    transition:all 0.3s;
}

.logout-btn:hover{
    background:rgba(168,85,247,0.2);
}

/* MOBILE */
@media(max-width:768px){

    .navbar{
        padding:15px 5%;
    }

    .hero{
        padding:60px 20px;
        min-height:100vh;
    }

    .hero h1{
        font-size:36px;
        letter-spacing:-0.5px;
    }

    .hero p{
        font-size:15px;
    }

    .hero p br{
        display:none;
    }

    .hero-badge{
        font-size:12px;
    }

    .btn{
        padding:13px 24px;
        font-size:14px;
    }

    .features{
        padding:50px 5%;
    }

    .section-title{
        font-size:26px;
    }

    .section-sub{
        font-size:14px;
    }

    .contact-section{
        padding:50px 5%;
    }

    .contact-section h2{
        font-size:26px;
    }

    .contact-box{
        padding:25px 20px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

}