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

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

.container{
width:90%;
max-width:1400px;
margin:auto;
}

.hero{
height:100vh;
display:flex;
align-items:center;
position:relative;
background:
linear-gradient(
135deg,
#020617,
#0f172a,
#1e293b
);
}

.hero::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:#00bfff;
border-radius:50%;
filter:blur(220px);
opacity:.18;
top:-100px;
right:-100px;
}

.hero::after{
content:'';
position:absolute;
width:400px;
height:400px;
background:#8b5cf6;
border-radius:50%;
filter:blur(220px);
opacity:.15;
left:-100px;
bottom:-100px;
}

.hero-content{
position:relative;
z-index:2;
}

.badge{
display:inline-block;
padding:10px 20px;
border:1px solid rgba(255,255,255,.2);
border-radius:40px;
margin-bottom:20px;
backdrop-filter:blur(10px);
}

.hero h1{
font-size:72px;
font-weight:800;
}

.hero h2{
font-size:32px;
color:#38bdf8;
margin-top:10px;
}

.hero p{
max-width:700px;
margin-top:25px;
line-height:1.8;
font-size:18px;
color:#cbd5e1;
}

.cta-group{
margin-top:40px;
display:flex;
gap:15px;
}

.btn-primary{
padding:15px 30px;
background:#38bdf8;
color:black;
text-decoration:none;
border-radius:10px;
font-weight:700;
}

.btn-secondary{
padding:15px 30px;
border:1px solid #38bdf8;
color:white;
text-decoration:none;
border-radius:10px;
}

.stats{
padding:80px 0;
}

.stats .container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.stat-card{
background:rgba(255,255,255,.05);
padding:40px;
border-radius:20px;
text-align:center;
backdrop-filter:blur(12px);
border:1px solid rgba(255,255,255,.08);
}

.stat-card h3{
font-size:52px;
color:#38bdf8;
}

.section-title{
font-size:42px;
font-weight:700;
margin-bottom:40px;
text-align:center;
}

.about,
.tech-stack,
.architecture,
#projects,
#contact{
padding:100px 0;
}

.glass-card{
background:rgba(255,255,255,.05);
padding:40px;
border-radius:20px;
line-height:1.9;
font-size:18px;
}

.stack-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.stack-grid div{
padding:20px;
background:#111827;
border-radius:15px;
text-align:center;
font-weight:600;
}

.project-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.project-card{
padding:35px;
background:#111827;
border-radius:20px;
transition:.3s;
}

.project-card:hover{
transform:translateY(-10px);
}

.architecture-box{
background:#111827;
padding:40px;
border-radius:20px;
overflow:auto;
}

.architecture-box pre{
font-size:18px;
color:#38bdf8;
}

.contact-box{
text-align:center;
padding:60px;
background:#111827;
border-radius:20px;
}

footer{
padding:30px;
text-align:center;
color:#94a3b8;
border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:992px){

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

.stats .container,
.stack-grid,
.project-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:32px;
}

}