body{
margin:0;
font-family:Arial, sans-serif;
background:linear-gradient(120deg,#020617,#0f172a,#020617);
color:white;
}

header{
display:flex;
justify-content:space-between;
padding:20px 10%;
background:#020617;
position:sticky;
top:0;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#cbd5f5;
}

.hero{
padding:120px 10%;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
}

.hero h1{
font-size:70px;
font-weight:bold;
background: linear-gradient(90deg,#7c3aed,#a78bfa,#c084fc);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:20px;
color:#94a3b8;
}

.btn{
display:inline-block;
margin-top:20px;
background:linear-gradient(90deg,#7c3aed,#a78bfa);
padding:14px 28px;
border-radius:8px;
text-decoration:none;
color:white;
font-weight:bold;
box-shadow:0 0 20px #7c3aed;
}

.terminal{
background:#020617;
border-radius:10px;
padding:25px;
width:420px;
font-family:monospace;
box-shadow:0 0 25px rgba(124,58,237,0.5);
}

.section{
padding:80px 10%;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:#1e293b;
padding:25px;
border-radius:10px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 0 20px #7c3aed;
}

.stats{
display:flex;
justify-content:space-around;
padding:60px 10%;
background:#020617;
text-align:center;
}

.stat h3{
font-size:35px;
color:#7c3aed;
}

footer{
text-align:center;
padding:30px;
background:#020617;
}