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

html{
scroll-behavior:smooth;
}

body{
font-family:"Inter",sans-serif;
background:#050814;
color:#fff;
overflow-x:hidden;
}

a{
text-decoration:none;
color:inherit;
}

:root{
--stellar-blue:#64dcff;
--stellar-cyan:#52ffe0;
--stellar-purple:#a77bff;
--stellar-dark:#050814;
--glass:rgba(255,255,255,.08);
--border:rgba(255,255,255,.14);
}

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-track{
background:#050814;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(180deg,var(--stellar-blue),var(--stellar-purple));
border-radius:20px;
}

.footer{
padding:40px 20px;
background:#03050d;
}

.footer-content{
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
gap:15px;
color:#aeb8d0;
font-size:14px;
}

.footer-content img{
width:60px;
}

.features{
padding:100px 60px;
background:#050814;
}

.section-title{
text-align:center;
max-width:700px;
margin:0 auto 60px;
}

.section-title h2{
font-size:48px;
font-weight:900;
background:linear-gradient(90deg,var(--stellar-blue),var(--stellar-purple));
-webkit-background-clip:text;
color:transparent;
}

.section-title p{
margin-top:15px;
color:#aeb8d0;
font-size:18px;
}

.feature-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.feature-card{
padding:35px;
border-radius:25px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(15px);
transition:.35s;
}

.feature-card:hover{
transform:translateY(-10px);
border-color:rgba(100,220,255,.5);
box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.feature-card h3{
font-size:24px;
margin-bottom:15px;
}

.feature-card p{
color:#b8c3df;
line-height:1.7;
}

@media(max-width:900px){

.features{
padding:80px 20px;
}

.feature-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:36px;
}

}

.page-content{
min-height:100vh;
padding:160px 30px 80px;
display:flex;
align-items:center;
justify-content:center;
background:
radial-gradient(circle at top,#162b50 0%,#050814 45%);
}

.page-box{
max-width:750px;
width:100%;
padding:45px;
border-radius:30px;
background:rgba(255,255,255,.07);
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(20px);
text-align:center;
}

.page-box h1{
font-size:55px;
font-weight:900;
margin-bottom:25px;
background:linear-gradient(90deg,var(--stellar-blue),var(--stellar-purple));
-webkit-background-clip:text;
color:transparent;
}

.page-box p{
color:#c2cbe0;
font-size:18px;
line-height:1.8;
margin-bottom:30px;
}

.page-box ul{
text-align:left;
display:flex;
flex-direction:column;
gap:15px;
color:#dbe4ff;
font-size:17px;
}

.page-box .store-button{
display:inline-flex;
margin-top:20px;
}

@media(max-width:700px){

.page-box{
padding:30px 20px;
}

.page-box h1{
font-size:40px;
}

}