@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

body{
font-family:'Outfit',sans-serif;
background:
radial-gradient(circle at top left,#0ea5e9,#020617 40%),
radial-gradient(circle at bottom right,#2563eb,#020617 45%);
min-height:100vh;
color:white;
padding:24px;
overflow-x:hidden;
position:relative;
}

.background-glow{
position:fixed;
border-radius:50%;
filter:blur(120px);
z-index:-1;
}

.glow1{
width:300px;
height:300px;
background:#2563eb;
top:-100px;
left:-100px;
}

.glow2{
width:300px;
height:300px;
background:#06b6d4;
bottom:-100px;
right:-100px;
}

.hero{
text-align:center;
padding:40px 0;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
background:rgba(255,255,255,.1);
border:1px solid rgba(255,255,255,.2);
backdrop-filter:blur(15px);
border-radius:999px;
font-size:13px;
margin-bottom:20px;
}

.hero h1{
font-size:42px;
font-weight:800;
margin-bottom:20px;
}

.hero-text{
font-size:17px;
line-height:1.8;
opacity:.9;
max-width:700px;
margin:auto;
}

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

.primary-btn{
background:linear-gradient(135deg,#2563eb,#06b6d4);
border:none;
padding:15px 28px;
border-radius:999px;
color:white;
font-size:16px;
font-weight:700;
box-shadow:0 15px 40px rgba(37,99,235,.4);
}

.secondary-btn{
background:rgba(255,255,255,.1);
border:1px solid rgba(255,255,255,.2);
color:white;
padding:15px 28px;
border-radius:999px;
}

.vision-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
padding:30px;
border-radius:28px;
margin-top:20px;
border:1px solid rgba(255,255,255,.12);
}

.vision-card h2{
margin-bottom:15px;
font-size:28px;
}

.vision-card p{
line-height:1.9;
color:#dbeafe;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.feature-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
padding:25px;
border-radius:28px;
border:1px solid rgba(255,255,255,.12);
transition:.3s;
}

.feature-card:hover{
transform:translateY(-6px);
}

.feature-icon{
font-size:50px;
margin-bottom:15px;
}

.feature-card h3{
margin-bottom:10px;
}

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

.future-showcase{
margin-top:40px;
}

.future-showcase h2{
margin-bottom:20px;
font-size:30px;
}

.future-card{
background:rgba(255,255,255,.08);
backdrop-filter:blur(20px);
padding:30px;
border-radius:28px;
}

.step{
display:flex;
align-items:center;
gap:15px;
padding:15px 0;
font-size:18px;
font-weight:600;
}

.step span{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:linear-gradient(135deg,#2563eb,#06b6d4);
font-weight:800;
}

.coming-soon{
margin-top:40px;
padding:35px;
border-radius:30px;
text-align:center;
background:linear-gradient(
135deg,
rgba(37,99,235,.3),
rgba(6,182,212,.3)
);
border:1px solid rgba(255,255,255,.15);
}

.coming-soon h2{
font-size:36px;
margin-bottom:15px;
}

.coming-soon p{
line-height:1.8;
font-size:16px;
}

@media(max-width:768px){

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

.hero-text{
font-size:15px;
}

}