/* GLOBAL BACKGROUND */

body{
background:
radial-gradient(circle at 20% 20%, #1e293b 0%, transparent 40%),
radial-gradient(circle at 80% 0%, #1e40af 0%, transparent 40%),
#0f172a;
}



/* WRAPPER */

.wrapper{
max-width:1200px;
margin:auto;
padding:120px 20px 80px;
}



/* HERO BUTTONS */

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

.btn{
padding:12px 24px;
border-radius:10px;
font-size:14px;
text-decoration:none;
transition:.25s;
}

.btn-primary{
background:#2563eb;
color:white;
}

.btn-primary:hover{
background:#1d4ed8;
}

.btn-outline{
border:1px solid #334155;
color:#94a3b8;
}

.btn-outline:hover{
border-color:#2563eb;
color:white;
}



/* CARD HOVER GLOW */

.card{
position:relative;
overflow:hidden;
}

.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
radial-gradient(
circle 200px at var(--x) var(--y),
rgba(37,99,235,.15),
transparent 40%
);
opacity:0;
transition:.25s;
}

.card:hover::before{
opacity:1;
}



/* NAVBAR SHADOW */

.nav{
box-shadow:0 10px 30px rgba(0,0,0,.35);
}







/* HERO GRADIENT TEXT */

.hero h1{
background:linear-gradient(
90deg,
#ffffff,
#94a3b8
);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}
