*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#0b0b0c;
color:#f8f8f8;
line-height:1.7;
}

header{
position:fixed;
top:0;
width:100%;
z-index:1000;
backdrop-filter:blur(15px);
background:rgba(11,11,12,.75);
border-bottom:1px solid rgba(255,255,255,.05);
}

nav{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
font-family:'Space Grotesk',sans-serif;
font-size:28px;
font-weight:700;
letter-spacing:1px;
}

.dot{
color:#7ba7c7;
}

nav ul{
display:flex;
gap:28px;
list-style:none;
}

nav a{
color:white;
text-decoration:none;
transition:.3s;
}

nav a:hover{
opacity:.7;
}

.hero{
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:0 20px;
}

.hero-content{
max-width:900px;
}

.location{
letter-spacing:3px;
font-size:12px;
color:#9ca3af;
margin-bottom:25px;
}

.hero h1{
font-family:'Space Grotesk',sans-serif;
font-size:88px;
margin-bottom:20px;
}

.hero h2{
font-size:30px;
font-weight:500;
color:#d1d5db;
margin-bottom:30px;
}

.hero-text{
font-size:18px;
max-width:700px;
margin:auto;
color:#9ca3af;
}

.hero-buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:15px;
}

.btn-primary{
background:white;
color:black;
padding:14px 28px;
border-radius:999px;
text-decoration:none;
font-weight:600;
}

.btn-secondary{
border:1px solid rgba(255,255,255,.15);
padding:14px 28px;
border-radius:999px;
text-decoration:none;
color:white;
}

.container{
max-width:1100px;
margin:auto;
padding:100px 20px;
}

h2{
font-family:'Space Grotesk',sans-serif;
font-size:46px;
margin-bottom:35px;
}

.card{
background:#141416;
padding:35px;
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
}

.timeline{
display:flex;
flex-direction:column;
gap:20px;
}

.timeline-item{
background:#141416;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
}

.timeline-item span{
color:#9ca3af;
font-size:14px;
}

.timeline-item h3{
margin:10px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.project{
background:#141416;
padding:30px;
border-radius:20px;
border:1px solid rgba(255,255,255,.05);
margin-bottom:20px;
}

.project h3{
margin-bottom:15px;
}

footer{
text-align:center;
padding:40px;
border-top:1px solid rgba(255,255,255,.05);
color:#9ca3af;
}

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:60px;
}

.hero h2{
font-size:22px;
}

h2{
font-size:34px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

}