*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#0f172a;
color:white;
overflow-x:hidden;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
position:fixed;
width:100%;
background:rgba(15,23,42,.7);
backdrop-filter:blur(15px);
z-index:100;
}

.logo{
font-size:28px;
font-weight:700;
color:#7c3aed;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#7c3aed;
}

header{
height:100vh;
display:flex;
align-items:center;
justify-content:space-around;
padding:0 8%;
background:linear-gradient(135deg,#0f172a,#312e81);
}

.hero-text{
max-width:520px;
}

.hero-text h1{
font-size:58px;
margin-bottom:20px;
}

.hero-text p{
font-size:18px;
line-height:1.8;
opacity:.9;
margin-bottom:30px;
}

button{
padding:16px 35px;
border:none;
border-radius:40px;
background:#7c3aed;
color:white;
font-size:16px;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:translateY(-5px);
box-shadow:0 20px 40px rgba(124,58,237,.4);
}

.hero-card{
width:360px;
height:360px;
display:flex;
align-items:center;
justify-content:center;
}

.floating-card{
background:rgba(255,255,255,.08);
padding:40px;
border-radius:25px;
backdrop-filter:blur(20px);
animation:float 4s ease-in-out infinite;
border:1px solid rgba(255,255,255,.1);
}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-20px);}
100%{transform:translateY(0);}

}

section{
padding:100px 8%;
}

section h2{
text-align:center;
font-size:42px;
margin-bottom:60px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
}

.box{
padding:35px;
background:rgba(255,255,255,.05);
border-radius:20px;
text-align:center;
transition:.4s;
}

.box:hover{
transform:translateY(-12px);
background:#7c3aed;
}

.icon{
font-size:50px;
margin-bottom:20px;
}

#stats{
display:flex;
justify-content:space-around;
text-align:center;
background:#111827;
}

.stat h2{
font-size:55px;
color:#7c3aed;
}

.cta{
text-align:center;
}

.cta p{
margin:20px 0 35px;
opacity:.8;
}

footer{
padding:30px;
text-align:center;
background:#020617;
color:#aaa;
}

.reveal{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

@media(max-width:900px){

header{
flex-direction:column;
text-align:center;
padding-top:120px;
}

.hero-text h1{
font-size:42px;
}

nav ul{
display:none;
}

#stats{
flex-direction:column;
gap:40px;
}

}

