/* RESET */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
  color: white;
  background: url("bg.jpg") center/cover no-repeat fixed;
}

/* NAV */
nav{
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 20px 8%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo{
  
  height: 110px;
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));

}

.btn{
  background: #ffcc00;
  color: #111;
  padding: 12px 18px;
  border-radius: 12px;

  text-decoration: none;
  font-weight: 800;

  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover{
  transform: translateY(-1px);
  opacity: 0.95;
}

/* HERO */

.hero{
  position: relative;

  min-height: 85vh;
  padding: 120px 8% 80px;

  display: flex;
  align-items: flex-start;
}

/* dark gradient for readability */
.hero::before{
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.70) 0%,
    rgba(0,0,0,0.40) 45%,
    rgba(0,0,0,0.08) 100%
  );

  pointer-events: none;
}

.hero > *{
  position: relative;
  z-index: 1;
}

/* GLASS CARD */
.hero-card{
  max-width: 500px;
  padding: 34px;

  border-radius: 22px;
  background: rgba(15,15,15,0.45);
  border: 1px solid rgba(255,255,255,0.16);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);

  animation: enter 600ms ease-out both;
}

/* TITLE */
.hero-card h1{
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: #fff;
}

/* PARAGRAPH */
.hero-card p{
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  margin-bottom: 22px;
}

/* BUTTON */
.cta{
  display: inline-block;

  background: #ffcc00;
  color: #111;

  padding: 14px 22px;
  border-radius: 12px;

  text-decoration: none;
  font-weight: 900;

  box-shadow: 0 12px 22px rgba(0,0,0,0.25);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.cta:hover{
  transform: translateY(-1px);
  opacity: 0.96;
}

/* TRUST LINE (IMPORTANT) */
.micro-trust{
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* ENTRY ANIMATION */
@keyframes enter{
  from{
    opacity: 0;
    transform: translateY(12px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional mockup area */
.hero-image img{
  width: 340px;
  max-width: 40vw;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* WAITLIST */
.waitlist{
  text-align: center;
  padding: 90px 8%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.waitlist h2{
  font-size: 2rem;
  margin-bottom: 10px;
}

.waitlist p{
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}

form{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

input{
  padding: 12px 14px;
  width: min(320px, 90vw);

  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;

  background: rgba(0,0,0,0.35);
  color: white;
  outline: none;
}

input::placeholder{
  color: rgba(255,255,255,0.65);
}

button{
  padding: 12px 20px;
  border: none;
  border-radius: 12px;

  background: #ffcc00;
  color: #111;

  font-weight: 900;
  cursor: pointer;

  box-shadow: 0 10px 20px rgba(0,0,0,0.22);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

button:hover{
  transform: translateY(-1px);
  opacity: 0.96;
}

/* FOOTER */
footer{
  text-align: center;
  padding: 22px;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.55);
}

/* MOBILE */
@media (max-width: 900px){
  .hero{
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 7%;
  }

  .hero-card{
    width: 100%;
    max-width: 680px;
  }

  .hero-card h1{
  font-size: 3.4rem;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

  .hero-image img{
    width: min(360px, 92vw);
    max-width: 92vw;
  }

  .logo{
    height: 72px;
  }
}
