:root{

--primary:#061A43;
--secondary:#1D63DD;
--accent:#2C84F7;

--background:#FDFDFD;

--text:#222;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:"Poppins",Arial,sans-serif;

background:var(--background);

color:var(--text);

line-height:1.6;

}

.hero{

background:linear-gradient(135deg,#061A43,#1D63DD);

color:white;

padding:40px 8% 100px;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:80px;

}

.logo{

font-size:2rem;

font-weight:700;

}

.nav-btn{

background:white;

color:var(--primary);

padding:12px 22px;

border-radius:8px;

text-decoration:none;

font-weight:600;

transition:.25s;

}

.nav-btn:hover{

transform:translateY(-2px);

}

.hero-content{

max-width:800px;

margin:auto;

text-align:center;

}

.hero-content h1{

font-size:4rem;

font-weight:700;

line-height:1.1;

margin-bottom:25px;

}

.hero-content p{

font-size:1.2rem;

margin-bottom:40px;

opacity:.95;

}

.buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.primary{

background:white;

color:var(--primary);

padding:15px 28px;

border-radius:10px;

font-weight:600;

text-decoration:none;

transition:.25s;

display:inline-block;

}

.primary:hover{

transform:translateY(-2px);

}

.secondary{

background:transparent;

border:2px solid white;

color:white;

padding:15px 28px;

border-radius:10px;

font-weight:600;

text-decoration:none;

transition:.25s;

display:inline-block;

}

.secondary:hover{

background:white;

color:var(--primary);

}

section{

padding:80px 8%;

}

section h2{

text-align:center;

font-size:2.2rem;

margin-bottom:25px;

color:var(--primary);

}

.grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:40px;

}

.card{

background:white;

padding:30px;

border-radius:14px;

box-shadow:0 5px 20px rgba(0,0,0,.08);

transition:.2s;

}

.card:hover{

transform:translateY(-4px);

}

.card h3{

margin-bottom:15px;

color:var(--primary);

}

.validation{

text-align:center;

background:#f6f9ff;

}

.validation p{

max-width:700px;

margin:0 auto 35px;

}

.waitlist{

text-align:center;

}

.waitlist p{

margin-bottom:30px;

}

.waitlist iframe,

.waitlist form,

.waitlist div{

margin:auto;

}

footer{

background:var(--primary);

color:white;

text-align:center;

padding:30px;

margin-top:50px;

}

@media(max-width:768px){

.hero{

padding:30px 5% 80px;

}

nav{

flex-direction:column;

gap:20px;

margin-bottom:50px;

}

.hero-content h1{

font-size:2.5rem;

}

.hero-content p{

font-size:1rem;

}

.buttons{

flex-direction:column;

align-items:center;

}

.primary,

.secondary{

width:100%;

max-width:300px;

}
  
.email-form{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    margin-top:2rem;
}

section{

padding:60px 5%;

}

}
