body{
margin:0;
font-family:'Inter',sans-serif;
background:#071a32;
color:white;
height:100vh;
overflow:hidden;
}


/* TOP BAR */

.topbar{
height:70px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 40px;
background:#0b2a4a;
box-shadow:0 4px 20px rgba(0,0,0,0.5);
}

.logo{
font-size:28px;
font-weight:700;
color:#2ad6ff;
}

.title{
font-size:20px;
font-weight:600;
}

.login-btn{
background:#1c6ed5;
padding:10px 20px;
border-radius:10px;
color:white;
text-decoration:none;
transition:0.3s;
}

.login-btn:hover{
background:#2a7df0;
}


/* HERO */

.hero{

height:calc(100vh - 70px);
display:flex;
align-items:center;

padding:40px;

background:
radial-gradient(circle at 50% 20%, #154a7d 0%, #0a2c52 40%, #020c18 80%);

}


.hero-container{

max-width:1300px;
margin:auto;

display:flex;
align-items:center;

gap:80px;

}



/* LEFT SIDE */

.hero-left{
flex:1;
}

.hero-left h1{
font-size:60px;
line-height:1.1;
}

.hero-left span{
color:#35e0ff;
}

.hero-left p{

margin-top:25px;

font-size:22px;

color:#c7d9ff;

max-width:500px;

}



.hero-buttons{

margin-top:40px;

display:flex;

gap:20px;

}


.btn-primary{

background:linear-gradient(90deg,#27d0ff,#0da2ff);

padding:18px 38px;

border-radius:40px;

color:#001b2e;

font-weight:700;

text-decoration:none;

box-shadow:0 0 25px rgba(0,200,255,0.5);

transition:0.3s;

}


.btn-primary:hover{

transform:translateY(-2px);
box-shadow:0 0 40px rgba(0,200,255,0.8);

}


.btn-secondary{

border:2px solid #7fbaff;

padding:16px 34px;

border-radius:40px;

color:white;

text-decoration:none;

transition:0.3s;

}

.btn-secondary:hover{
background:rgba(255,255,255,0.05);
}



.features{

margin-top:40px;

list-style:none;

padding:0;

font-size:20px;

}


.features li{
margin-bottom:12px;
}



/* RIGHT SIDE */

.hero-right{

flex:1;

display:flex;
justify-content:center;
align-items:center;

position:relative;

}



/* PLATFORM IMAGE */

.hero-right img{

width:120%;
max-width:860px;

border-radius:18px;

/* 3D effect */

transform:perspective(1400px) rotateY(-12deg) rotateX(4deg);

/* glow */

box-shadow:
0 80px 140px rgba(0,0,0,0.9),
0 0 120px rgba(0,180,255,0.35),
0 0 40px rgba(0,200,255,0.45);

/* glass */

background:rgba(255,255,255,0.03);
backdrop-filter:blur(4px);

transition:all .5s ease;

}



/* hover animation */

.hero-right img:hover{

transform:perspective(1400px) rotateY(-6deg) rotateX(2deg) scale(1.03);

box-shadow:
0 100px 180px rgba(0,0,0,0.9),
0 0 160px rgba(0,200,255,0.45);

}