*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
background:#f7f8fb;
line-height:1.6;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
background:white;
padding:15px 40px;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
z-index:1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px; /* spacing between Features & button */
}

.logo{
font-weight:bold;
font-size:20px;
display: flex;
align-items: center;
}

.logo img {
  height: 40px;   /* adjust if needed */
  width: auto;
  object-fit: contain;
}



.nav-links{
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.cta-btn{
background:#2563eb;
color:white;
border:none;
padding:10px 18px;
border-radius:20px;
cursor:pointer;
}

/* HERO */
.hero {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(180deg,#eef2ff 0%,#f8fafc 100%);
}

.hero-box {
  width: 100%;
  max-width: 1350px;
  height: auto;
  background: white;
  border-radius: 24px;

  padding: 60px;

  box-shadow: 0 25px 70px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.hero-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 90px rgba(0,0,0,0.12);
}


.hero h1{
font-size:48px;
max-width:750px;
margin:0 auto 15px auto;
line-height:1.2;
}

.hero p{
margin-top:20px;
color:#666;
}

.hero-btn{
margin-top:20px;
padding:14px 28px;
border:none;
background:#2563eb;
color:white;
border-radius:30px;
cursor:pointer;
}
.hero-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:52px;
line-height:1.2;
margin-bottom:20px;
}

.hero-text p{
color:#6b7280;
margin-bottom:30px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;   /* 👈 perfect balanced size */
  height: auto;

  border-radius: 20px;

  transform: rotate(0deg); /* 👈 REMOVE tilt */

  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


/* FEATURES */

.features{
padding:60px 10%;
text-align:center;
}

.subtext{
color:#777;
margin-bottom:40px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
}

.icon{
font-size:28px;
margin-bottom:10px;
}

.card{
background:white;
padding:30px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:all 0.25s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.08);
}


/* WAITLIST */

.waitlist{
text-align:center;
padding:80px 20px;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(180deg,#f8fafc,#eef2ff);
}

.waitlist-subtext{
color:#6b7280;
margin-top:10px;
margin-bottom:30px;
font-size:16px;
}

.waitlist input{
display:block;
margin:12px auto;
padding:14px;
width:320px;
border-radius:10px;
border:1px solid #d1d5db;
font-size:15px;
}

.waitlist input:focus{
outline:none;
border-color:#2563eb;
box-shadow:0 0 0 2px rgba(37,99,235,0.2);
}

.waitlist button{
margin-top:20px;
padding:14px 34px;
background:#2563eb;
color:white;
border:none;
border-radius:30px;
font-size:16px;
cursor:pointer;
transition:0.2s;
}

.waitlist button:hover{
background:#1d4ed8;
}

.privacy-text{
margin-top:12px;
font-size:13px;
color:#6b7280;
}

.error{
color:#ef4444;
font-size:13px;
text-align:left;
margin-top:-10px;
margin-bottom:10px;
display:none;
}

.waitlist-card{
background:white;
padding:50px 60px;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,0.08);
text-align:center;
max-width:520px;
width:100%;
transition:0.3s;
}

.waitlist-card:hover{
transform:translateY(-5px);
box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.waitlist-card h2{
font-size:32px;
margin-bottom:10px;
}

.waitlist-subtext{
color:#6b7280;
margin-bottom:30px;
}

.waitlist-form input{
width:100%;
padding:16px;
margin-bottom:15px;
border-radius:10px;
border:1px solid #d1d5db;
font-size:15px;
transition:0.2s;
}

.waitlist-form input:focus{
outline:none;
border-color:#2563eb;
box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

.waitlist-btn{
width:100%;
padding:16px;
border:none;
border-radius:40px;
background:linear-gradient(135deg,#2563eb,#4f46e5);
color:white;
font-size:16px;
font-weight:600;
cursor:pointer;
margin-top:10px;
transition:0.2s;
}

.waitlist-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(37,99,235,0.35);
}

.privacy-text{
margin-top:15px;
font-size:13px;
color:#6b7280;
}

/* FOOTER */

footer{
background:#2563eb;
color:white;
text-align:center;
padding:20px;
margin-top:30px;
}


/* =========================
   RESPONSIVE (CLEAN FIX)
========================= */

/* Tablet */
@media (max-width: 1000px) {

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

}


/* Mobile */
@media (max-width: 768px) {

  .hero-container {
    display: flex;
    flex-direction: row; /* KEEP SIDE BY SIDE */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .hero-text {
    flex: 1;
  }

  .hero-text h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 12px;
  }

  .hero-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-image {
    flex: 1;
  }

  .hero-image img {
    width: 100%;
    max-width: 240px; /* 👈 KEY: smaller image */
    height: auto;
  }

}