/* --------------------------------------------------------- */
/*  GLOBAL BASE                                              */
/* --------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.5;
}

/* --------------------------------------------------------- */
/*  NAVBAR                                                   */
/* --------------------------------------------------------- */

nav {
  padding: 24px 40px;
  background: transparent;
  position: relative;
  z-index: 10;
}

nav img {
  height: 32px;
}


/* --------------------------------------------------------- */
/*  HERO — Dark Blue Gradient                                */
/* --------------------------------------------------------- */

.hero {
  background: linear-gradient(35deg, #1B202A 0%, #3780D6 100%);
  padding: 140px 0 180px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-underline {
  width: 220px;
  height: 3px;
  margin: 12px auto 28px;
  background: linear-gradient(90deg, transparent, #E8A992, transparent);
  border-radius: 4px;
  opacity: 0.9;
}

.hero p.subheadline {
  font-size: 20px;
  opacity: 0.92;
  margin-bottom: 36px;
}

/* --------------------------------------------------------- */
/*  HERO WAITLIST — restored glass container                 */
/* --------------------------------------------------------- */

.waitlist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  padding: 12px 20px;
  border-radius: 50px;

  background: rgba(255,255,255,0.15);
  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.20),
    0 8px 24px rgba(0,0,0,0.25);

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

  width: fit-content;
  margin: 0 auto;
}

.waitlist input {
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.10);
  border-radius: 40px;
  padding: 14px 22px;
  width: 260px;
  color: #fff;
  font-size: 16px;
}

.waitlist input::placeholder {
  color: rgba(255,255,255,0.7);
}

.waitlist button {
  background: #E8A992;
  color: #ffffff;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.waitlist button:hover {
  background: #e39b84;
}


/* --------------------------------------------------------- */
/*  MID SECTION — Light 5D-style Gradient                    */
/* --------------------------------------------------------- */

.section-light {
  background: linear-gradient(35deg, #f7f9fc 0%, #e8edf4 42%, #dce3ed 78%, #d4dde9 100%);
  padding: 120px 0;
  text-align: center;
}

.section-light p {
  max-width: 620px;
  margin: 0 auto 20px;
  color: #222;
  font-size: 18px;
}


/* --------------------------------------------------------- */
/*  BUILDING CARD                                            */
/* --------------------------------------------------------- */

.building-card {
  background: white;
  width: 75%;
  max-width: 780px;
  margin: 60px auto;
  border-radius: 16px;
  padding: 40px 46px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: center;
}

.building-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1B202A;
  margin-bottom: 14px;
}

.card-underline {
  width: 110px;
  height: 4px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, #E8A992, transparent);
  border-radius: 4px;
  opacity: 0.9;
}

.building-card p {
  font-size: 16px;
  color: #333;
  opacity: 0.9;
}

/* --------------------------------------------------------- */
/*  FOOTER                                                   */
/* --------------------------------------------------------- */

footer {
  background: #0F141B;
  padding: 40px 0;
  text-align: center;
  color: #EAEAEA;
  font-size: 14px;
}

.footer-divider {
  height: 2px;
  width: 260px;
  margin: 0 auto 30px;
  background: linear-gradient(
    90deg, 
    transparent,
    #E8A992,
    transparent
  );
  opacity: 0.7;
  border-radius: 2px;
}

footer a {
  color: #F4F4F4;
  text-decoration: none;
  margin: 0 4px;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}