@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#070d18;
color:#fff;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
width:100%;
top:0;
z-index:999;
backdrop-filter:blur(20px);
background:rgba(7,13,24,.9);
border-bottom:1px solid rgba(59,130,246,.15);
}

.navbar{
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
font-size:28px;
font-weight:800;
color:#3b82f6;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

nav a:hover

.nav-btn{
padding:12px 24px;
border-radius:12px;
background:#3b82f6;
color:white;
text-decoration:none;
font-weight:600;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
padding-top:120px;
}

.hero-glow{
position:absolute;
width:700px;
height:700px;
background:#2563eb;
filter:blur(250px);
opacity:.18;
border-radius:50%;
}

.hero-badge{
display:inline-block;
padding:10px 20px;
border-radius:50px;
background:rgba(59,130,246,.15);
border:1px solid rgba(59,130,246,.25);
color:#60a5fa;
margin-bottom:25px;
}

.hero h1{
font-size:76px;
line-height:1.05;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
color:#94a3b8;
}

.hero-buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
}

.btn-primary,
.btn-secondary{
padding:16px 34px;
border-radius:14px;
text-decoration:none;
font-weight:600;
}

.btn-primary{
background:#3b82f6;
color:white;
}

.btn-secondary{
border:1px solid rgba(255,255,255,.1);
color:white;
}

/* TRUST */

.trust{
margin-top:-80px;
position:relative;
z-index:2;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.trust-item{
background:#111827;
border:1px solid rgba(59,130,246,.12);
border-radius:20px;
padding:30px;
text-align:center;
}

.trust-item h2{
color:#3b82f6;
font-size:42px;
margin-bottom:8px;
}

.trust-item p{
color:#94a3b8;
}

/* GENERAL */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:52px;
margin-bottom:10px;
}

.section-title p{
color:#94a3b8;
}

/* HOSTING */

.pricing{
padding:120px 0;
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.plan{
background:#111827;
border:1px solid rgba(59,130,246,.15);
border-radius:24px;
padding:35px;
transition:.3s;
}

.plan:hover{
transform:translateY(-8px);
}

.featured{
border:2px solid #3b82f6;
box-shadow:0 0 40px rgba(59,130,246,.15);
}

.popular{
display:inline-block;
background:#3b82f6;
padding:8px 15px;
border-radius:999px;
font-size:13px;
margin-bottom:20px;
}

.plan h3{
font-size:30px;
}

.price{
color:#3b82f6;
font-size:54px;
font-weight:800;
margin:20px 0;
}

.plan ul{
list-style:none;
}

.plan li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,.05);
color:#d1d5db;
}

.plan a{
display:block;
text-align:center;
margin-top:25px;
padding:15px;
border-radius:14px;
background:#3b82f6;
color:white;
text-decoration:none;
font-weight:600;
}

/* FEATURES */

#features,
#network,
#faq{
padding:120px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.feature-card{
background:#111827;
border:1px solid rgba(59,130,246,.1);
border-radius:20px;
padding:35px;
text-align:center;
}

.feature-card i{
font-size:42px;
color:#3b82f6;
margin-bottom:20px;
}

.feature-card h3{
margin-bottom:12px;
}

.feature-card p{
color:#94a3b8;
}

/* FAQ */

.faq-item{
background:#111827;
border-radius:16px;
padding:25px;
margin-bottom:20px;
}

.faq-item h3{
margin-bottom:10px;
}

.faq-item p{
color:#94a3b8;
}

/* FOOTER */

footer{
border-top:1px solid rgba(59,130,246,.1);
padding:70px 0;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-grid h3,
.footer-grid h4{
margin-bottom:15px;
}

.footer-grid a{
display:block;
color:#94a3b8;
text-decoration:none;
margin-bottom:10px;
}

.footer-grid p{
color:#94a3b8;
}

/* MOBILE */

@media(max-width:1000px){

.hero h1{
font-size:48px;
}

.trust-grid,
.pricing-grid,
.feature-grid,
.footer-grid{
grid-template-columns:1fr;
}

.navbar nav{
display:none;
}

.hero-buttons{
flex-direction:column;
}

}
