<CodeBlock language=css editable>
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Inter,sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#08111f;
color:white;
line-height:1.7;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(5,10,20,.78),rgba(5,10,20,.85)),
url("assets/banner.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
padding:40px;
}

.hero-content{
text-align:center;
max-width:820px;
}

.profile-photo{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
border:4px solid #38bdf8;
box-shadow:0 0 35px rgba(56,189,248,.35);
margin-bottom:25px;
transition:.35s;
}

.profile-photo:hover{
transform:scale(1.05);
}

.hero h1{
font-size:3.8rem;
font-weight:800;
}

.hero h2{
color:#38bdf8;
margin:10px 0;
}

.hero-text{
color:#cbd5e1;
}

.buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:14px 28px;
background:#2563eb;
border-radius:12px;
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 0 20px rgba(37,99,235,.4);
}

.secondary{
background:#1f2937;
}

section{
padding:80px 10%;
}

.about{
max-width:950px;
margin:auto;
}

.about h2,
.tech h2,
.cases h2,
.terminal h2{
font-size:2rem;
margin-bottom:25px;
}

.about p{
margin-bottom:18px;
color:#d1d5db;
}

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.card{
background:#111827;
padding:35px;
border-radius:18px;
text-align:center;
}

.card h3{
font-size:2rem;
color:#38bdf8;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
gap:22px;
margin-top:35px;
}

.tech-card{
background:linear-gradient(180deg,#111827,#0f172a);
padding:28px;
border-radius:18px;
text-align:center;
border:1px solid rgba(255,255,255,.05);
transition:.35s;
}

.tech-card:hover{
transform:translateY(-8px);
box-shadow:0 0 25px rgba(56,189,248,.22);
}

.tech-icon{
width:52px;
height:52px;
font-size:52px;
display:block;
margin:0 auto 18px;
color:#38bdf8;
transition:.3s;
filter:drop-shadow(0 0 6px rgba(56,189,248,.2));
}

.tech-card:hover .tech-icon{
transform:scale(1.12);
filter:drop-shadow(0 0 14px rgba(56,189,248,.55));
}

.tech-card:hover .tech-icon{
transform:scale(1.12);
filter:drop-shadow(0 0 14px rgba(56,189,248,.55));
}

.cases{
max-width:1200px;
margin:auto;
}

.cases-intro{
color:#94a3b8;
margin-bottom:35px;
}

.case-card{
background:linear-gradient(180deg,#101826,#0f172a);
padding:30px;
margin-bottom:28px;
border-radius:20px;
border-left:4px solid #38bdf8;
transition:.35s;
}

.case-card:hover{
transform:translateY(-6px);
box-shadow:0 0 28px rgba(56,189,248,.18);
}

.badge{
display:inline-block;
background:#0f2d52;
color:#7dd3fc;
padding:6px 12px;
border-radius:999px;
font-size:.8rem;
margin-bottom:14px;
}

.problem,.solution,.result{
margin:14px 0;
color:#d1d5db;
}

.tools{
margin-top:18px;
padding-top:14px;
border-top:1px solid rgba(255,255,255,.08);
color:#60a5fa;
font-size:.9rem;
}

.console{
background:#020617;
border:1px solid rgba(56,189,248,.15);
padding:24px;
border-radius:18px;
box-shadow:0 0 35px rgba(0,0,0,.35);
}

.console-header{
display:flex;
align-items:center;
gap:10px;
margin-bottom:18px;
color:#94a3b8;
font-size:.9rem;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
}

.red{background:#ef4444;}
.yellow{background:#f59e0b;}
.green{background:#22c55e;}

#output{
min-height:180px;
white-space:pre-wrap;
font-family:Consolas,monospace;
line-height:1.7;
margin-bottom:15px;
}

#command{
width:100%;
background:#020617;
border:none;
outline:none;
color:#38bdf8;
font-family:Consolas,monospace;
font-size:16px;
padding:6px 0;
}

footer{
padding:40px;
text-align:center;
color:#64748b;
border-top:1px solid rgba(255,255,255,.05);
}

@media(max-width:768px){

.hero h1{
font-size:2.5rem;
}

.profile-photo{
width:140px;
height:140px;
}

.buttons{
flex-direction:column;
align-items:center;
}

}