*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}
body{
background:#f7f7f7;
color:#111;

display:flex;
flex-direction:column;
min-height:100vh;
}

.hero{
flex:1;
}
/* HERO */

.hero{

min-height:100vh;

background:linear-gradient(
180deg,
#ffffff 0%,
#e7f1ff 60%,
#c7dcff 100%
);

display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;

padding:60px 20px;
text-align:center;

}

/* LOGO */

.logo{
font-weight:700;
margin-bottom:20px;
}

.logo span{
color:#2f6fff;
}

/* TITLE */

.hero h1{

font-size:48px;
max-width:700px;
line-height:1.2;
margin-bottom:20px;

}

/* SUBTITLE */

.subtitle{

max-width:620px;
color:#555;
margin-bottom:30px;
font-size:18px;

}

/* EMAIL */

.waitlist{

display:flex;
gap:10px;
justify-content:center;
flex-wrap:wrap;
margin-bottom:20px;

}

.waitlist input{

padding:14px 18px;
border-radius:30px;
border:none;
width:260px;
background:#f1f1f1;

}

.waitlist button{

padding:14px 24px;
border-radius:30px;
border:none;
background:#2f6fff;
color:white;
font-weight:600;
cursor:pointer;
transition:0.3s;

}

.waitlist button:hover{

transform:translateY(-2px);
box-shadow:0 6px 18px rgba(0,0,0,0.1);

}

/* TRADERS */

.traders{

display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin-top:10px;
flex-wrap:wrap;

}

.traders img{

width:32px;
height:32px;
border-radius:50%;
border:2px solid white;

}

.traders span{

color:#444;
font-size:14px;

}

/* PHONE */

.phone-container{

margin-top:60px;
display:flex;
justify-content:center;

}

.phone{

width:320px;
max-width:90%;

animation:float 4s ease-in-out infinite;

}

/* FLOAT ANIMATION */

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0px);
}

}

/* FOOTER */

footer{

text-align:center;
padding:30px 20px;
font-size:14px;
color:#666;

}

/* RESPONSIVE */

@media (max-width:768px){

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

.subtitle{
font-size:16px;
}

.phone{
width:250px;
}

/* FIX EXTRA SPACE BELOW PHONE */

.hero{
min-height:auto;
}

}


.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:none;
align-items:center;
justify-content:center;
z-index: 1000;
}

.popup-content{
background:white;
padding:40px;
border-radius:12px;
text-align:center;
max-width:400px;
margin: 20px;
}

.popup button{
margin-top:20px;
padding:10px 20px;
border:none;
background:#3b82f6;
color:white;
border-radius:6px;
cursor:pointer;
}

.popup button:hover {
background:#2563eb;
}

.spinner{
width:18px;
height:18px;
border:2px solid rgba(255,255,255,0.4);
border-top:2px solid white;
border-radius:50%;
display:none;
animation:spin 0.8s linear infinite;
margin-left:8px;
}

button.loading .spinner{
display:inline-block;
}

button.loading .btn-text{
opacity:0.7;
}

@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}