*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#020617;
color:white;
overflow-x:hidden;
cursor:none;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(17,24,39,.85);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:600;
}

.logo img{
height:40px;
}

nav a{
margin-left:25px;
color:white;
text-decoration:none;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
position:relative;
padding:120px 20px 60px;
}

.hero-glass{
position:relative;
z-index:10;
max-width:700px;
text-align:center;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.15);
padding:50px;
border-radius:25px;
backdrop-filter:blur(30px);
}

.hero h1{
font-size:clamp(32px,6vw,60px);
}

/* WEBGL */

#webgl{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none;
}

/* STORY */

.story{
padding:120px 10%;
display:grid;
gap:150px;
text-align:center;
}

/* SERVICES */

.services{
padding:120px 10%;
text-align:center;
}

.service-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:rgba(255,255,255,.05);
padding:30px;
border-radius:18px;
transition:.3s;
text-decoration:none;
color:white;
}

.service-card:hover{
transform:translateY(-10px);
}

/* TOOLS */

.tools{
padding:120px 10%;
text-align:center;
}

.tools-grid{
margin-top:40px;
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.tools-grid div{
background:#1e293b;
padding:10px 16px;
border-radius:20px;
}

/* FOUNDERS */

.founders{
padding:120px 10%;
text-align:center;
}

.founder-grid{
margin-top:50px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.founder-card{
background:#1e293b;
padding:40px;
border-radius:20px;
text-align:center;
}

.founder-card img{
width:280px;
height:280px;
border-radius:50%;
object-fit:cover;
object-position:center 15%;
border:3px solid #5b6cff;
transform: scale(0.85);   /* zoom out */
}

/* FOOTER */

footer{
padding:40px;
text-align:center;
background:#111827;
}

/* NETWORK BACKGROUND */

#network{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
opacity:.4;
}

/* CURSOR */

.cursor{
width:8px;
height:8px;
background:white;
border-radius:50%;
position:fixed;
pointer-events:none;
transform:translate(-50%,-50%);
z-index:9999;
}

.cursor-ring{
width:40px;
height:40px;
border:2px solid rgba(255,255,255,.5);
border-radius:50%;
position:fixed;
pointer-events:none;
transform:translate(-50%,-50%);
z-index:9998;
transition:all .2s;
}

.cursor-hover{
width:70px;
height:70px;
border:2px solid #5b6cff;
box-shadow:0 0 20px #5b6cff;
}

section{
scroll-margin-top:100px;
}.footer a{
color:white;
text-decoration:none;
} 
/* MOBILE RESPONSIVE */

@media (max-width:768px){

header{
padding:15px 20px;
flex-direction:column;
gap:10px;
}

nav{
display:flex;
gap:15px;
}

nav a{
margin-left:0;
font-size:14px;
}

.hero{
padding:140px 20px 60px;
}

.hero-glass{
padding:30px 20px;
}

.hero h1{
font-size:32px;
}

.story{
gap:80px;
padding:80px 20px;
}

.services{
padding:80px 20px;
}

.service-grid{
grid-template-columns:1fr;
}

.tools{
padding:80px 20px;
}

.founders{
padding:80px 20px;
}

.founder-card{
padding:25px;
}

.founder-card img{
width:180px;
height:180px;
}

footer{
padding:30px 20px;
}

}

/* SMALL MOBILE */

@media (max-width:480px){

.hero h1{
font-size:26px;
}

.hero-glass{
padding:25px 18px;
}

.service-card{
padding:20px;
}

}
