:root{
--primary:#2575E6;
--primary-dark:#1E63C3;
--dark:#020617;
--muted:#64748B;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:
radial-gradient(circle at top left,
rgba(37,117,230,.12),
transparent 35%),
radial-gradient(circle at bottom right,
rgba(37,117,230,.08),
transparent 35%),
#fff;
}

.container{
width:min(1200px,92%);
margin:auto;
}

.navbar{
position:sticky;
top:0;
z-index:1000;
background:rgba(255,255,255,.9);
backdrop-filter:blur(20px);
}

.nav-inner{
height:110px;
display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:75px;
width:auto;
display:block;
}

.nav-links{
display:flex;
gap:32px;
}

.nav-links a{
text-decoration:none;
color:#334155;
font-weight:600;
}

.cta{
background:var(--primary);
color:white;
text-decoration:none;
padding:14px 22px;
border-radius:12px;
font-weight:700;
}

.hero{
padding:120px 0;
text-align:center;
}

.badge{
display:inline-block;
padding:12px 18px;
border-radius:999px;
background:#eef5ff;
color:var(--primary);
font-weight:700;
}

.hero h1{
margin-top:25px;
font-size:clamp(50px,7vw,80px);
line-height:1.05;
}

.hero p{
max-width:850px;
margin:30px auto;
color:var(--muted);
font-size:20px;
line-height:1.8;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:30px;
}

.btn{
text-decoration:none;
padding:16px 28px;
border-radius:14px;
font-weight:700;
}

.btn-primary{
background:var(--primary);
color:white;
}

.btn-secondary{
border:1px solid #ddd;
color:#111;
}

.domain-card{
margin-top:60px;
background:white;
border-radius:24px;
padding:40px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.domain-name{
font-size:30px;
font-weight:800;
color:var(--primary);
}

.status{
color:#16A34A;
font-weight:700;
margin-top:15px;
}

.section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.footer{
padding:80px 0;
}

.footer-inner{
text-align:center;
}

.footer img{
height:60px;
}

.footer p{
margin-top:15px;
color:#64748B;
}
