*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter', sans-serif;
background:#0b0b0f;
color:white;
}

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

/* PARTICLES */

#particles-js{
position:fixed;
width:100%;
height:100%;
top:0;
left:0;
z-index:-1;
}

/* NAVBAR */

.navbar{
position:fixed;
width:100%;
background:rgba(10,10,15,0.9);
backdrop-filter:blur(10px);
border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.brand{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
}

.brand-mark{
width:32px;
height:32px;
border-radius:50%;
background:gold;
display:flex;
align-items:center;
justify-content:center;
color:black;
font-weight:800;
}

.nav-links a{
margin-left:20px;
text-decoration:none;
color:#cfcfcf;
}

.nav-links a:hover{
color:gold;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-title{
font-size:60px;
letter-spacing:6px;
}

.hero-claim{
color:gold;
margin:15px 0;
}

.hero-buttons{
margin-top:30px;
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary{
padding:14px 28px;
background:gold;
color:black;
text-decoration:none;
border-radius:6px;
}

.btn-secondary{
padding:14px 28px;
border:1px solid white;
color:white;
text-decoration:none;
border-radius:6px;
}

/* SECTIONS */

.section{
padding:100px 0;
text-align:center;
}

.dark{
background:#111118;
}

.section-text{
max-width:700px;
margin:auto;
color:#bdbdbd;
}

/* TIMELINE */

.timeline{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.timeline-item{
background:#15151f;
padding:25px;
border-radius:10px;
}

.phase{
color:gold;
font-size:13px;
}

/* MAP */

.phase-map{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:40px;
}

.phase-map div{
background:#15151f;
padding:20px;
border-radius:8px;
}

/* FORM */

.access-form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
margin-top:30px;
}

.access-form input,
.access-form textarea{
padding:14px;
background:#0f0f16;
border:1px solid rgba(255,255,255,0.1);
color:white;
border-radius:6px;
}

/* FOOTER */

footer{
background:#08080c;
}

.footer{
display:flex;
justify-content:space-between;
padding:40px 0;
color:#bdbdbd;
}
