body{
font-family: Arial, Helvetica, sans-serif;
background:#e9e9e9;
margin:0;
padding:60px 20px;
color:#222;
}

.container{
max-width:900px;
margin:auto;
padding:50px;
background:white;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
text-align:center;
}

/* COMPANY LOGO */

.logo{
width:100%;
max-width:600px;
margin-bottom:40px;
}

/* HERO SECTION */

.hero{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
margin-bottom:40px;
flex-wrap:wrap;
}

.hero-logo{
width:100%;
max-width:260px;
}

.hero-text{
max-width:500px;
text-align:left;
}

.hero-text h1{
font-size:32px;
margin-bottom:15px;
}

.hero-text p{
font-size:18px;
line-height:1.6;
color:#555;
}

/* DIVIDER */

hr{
border:none;
border-top:1px solid #eee;
margin:40px 0;
}

/* FEATURES */

.features{
text-align:left;
display:inline-block;
margin-bottom:35px;
font-size:17px;
}

.features ul{
padding-left:20px;
}

.features li{
margin-bottom:8px;
}

/* PATENT BADGE */

.patent{
display:inline-block;
padding:8px 16px;
background:#f4f4f4;
border-radius:20px;
font-weight:bold;
margin-bottom:35px;
color:#444;
}

/* FORM */

.waitlist input{
display:block;
width:100%;
max-width:400px;
margin:12px auto;
padding:12px;
font-size:16px;
border:1px solid #ccc;
border-radius:6px;
}

/* BUTTON */

.waitlist button{
background:#000;
color:white;
border:none;
padding:14px 28px;
font-size:16px;
border-radius:6px;
cursor:pointer;
transition:0.2s;
}

.waitlist button:hover{
background:#333;
}

/* FOOTER */

footer{
margin-top:50px;
color:#777;
font-size:14px;
}