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

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

.hero{
min-height:80vh;
padding:40px 8%;
background:
radial-gradient(circle at top left, rgba(37,99,235,.35), transparent 30%),
radial-gradient(circle at bottom right, rgba(14,165,233,.25), transparent 30%),
#06101c;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:30px;
font-weight:800;
}

.logo span{
color:#38bdf8;
}

.links{
display:flex;
gap:28px;
}

.links a{
text-decoration:none;
color:#cbd5e1;
}

.hero-content{
max-width:850px;
margin-top:140px;
}

.tag{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,.06);
margin-bottom:24px;
}

.hero h1{
font-size:72px;
line-height:1.05;
margin-bottom:24px;
}

.hero p{
font-size:22px;
color:#cbd5e1;
max-width:700px;
}

.btn{
display:inline-block;
margin-top:34px;
background:white;
color:#111827;
padding:18px 28px;
border-radius:16px;
font-weight:700;
text-decoration:none;
}

.rankings{
padding:100px 8%;
}

.section-header{
text-align:center;
margin-bottom:50px;
}

.section-header span{
color:#38bdf8;
letter-spacing:2px;
font-size:14px;
}

.section-header h2{
font-size:52px;
margin-top:18px;
}

.table-wrap{
overflow-x:auto;
background:rgba(255,255,255,.04);
border-radius:24px;
border:1px solid rgba(255,255,255,.08);
}

table{
width:100%;
border-collapse:collapse;
}

th,td{
padding:18px;
text-align:left;
}

th{
background:rgba(255,255,255,.06);
}

tr{
border-bottom:1px solid rgba(255,255,255,.06);
}

td a{
color:#38bdf8;
text-decoration:none;
}

footer{
padding:50px 8%;
border-top:1px solid rgba(255,255,255,.08);
}

footer p{
margin-top:18px;
color:#94a3b8;
}

@media(max-width:900px){

.links{
display:none;
}

.hero h1{
font-size:48px;
}

.hero p{
font-size:18px;
}

.section-header h2{
font-size:38px;
}

}
