/* --- BASE STYLES --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --primary: #00ffff;
  --dark: #000;
  --light: #f5f5f5;
  --gray: #b0b0b0;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: var(--dark);
  min-height: 100vh;
}

/* --- NAVBAR --- */
.navbar {
  padding: 1.2rem 3rem;
  background: rgba(0, 0, 0, 0.3) !important; /* !important is still needed to override Bootstrap */
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  color: white !important;
  font-weight: 600;
}
.nav-link:hover {
  color: cyan !important;
}

header.navbar .btn-cta {
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600; /* Added for consistency */
  transition: all 0.3s ease; /* Added transition */
}
header.navbar .btn-cta:hover {
  background: var(--primary);
  color: #000;
}

/* --- HERO SECTION --- */
.hero-section {
  min-height: min(100vh, 880px); /* Use min-height from hero-min */
  display: flex;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('/images/bac.png') no-repeat center center/cover;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 4rem 20px; /* Use padding from hero-min */
  overflow: hidden;
  box-sizing: border-box;
}

/* Hero heading (from inline style) */
.hero-section h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: start;
}

.hero-section p.lead {
  font-size: 1rem;
  color: #e2e2e2;
  font-weight: 400;
  margin-bottom: 1.5rem;
  text-align: start;
}

.hero-stat {
  margin-bottom: 1rem;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: #b2b7b8;
}

/* Hero Images (Overlapping) */
.hero-section .position-relative {
  position: relative;
}

.hero-section img.img-fluid {
    width: 100%;
    max-width: 400px;
    object-fit: contain;
    border-radius: 10px;
}


.hero-section .top-image {
    max-width: 200px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}

.hero-section .bottom-image {
    max-width: 400px !important;
    position: absolute;
    top: -35px;
    left: 75%;
    transform: translate(-50%, 0);
    z-index: 1;
    opacity: 0.8;
}

.hero-section .top-image {
    max-width: 200px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
}

.hero-section img {
    max-height: 500px;
    margin-right: 10px;
}

/* --- WAITLIST FORM & PROOF --- */
.btn-cyan {
  background: var(--primary);
  color: #000;
  font-weight: 700;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: 0 0 15px rgba(0,255,255,0.25);
  transition: all 0.3s ease; /* Added transition */
}
.btn-cyan:hover {
  /* filter: brightness(1.1); */
  box-shadow: 0 0 25px rgba(0,255,255,0.4);
  color: #fff;
  background: #000;
}

.field-rounded {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.9rem 1rem;
  border-radius: 12px; /* Added from HTML */
}
.field-rounded::placeholder { /* Added for better UX */
    color: #888;
}
.field-rounded:focus { /* Added for better UX */
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,255,255,0.2);
    color: #fff;
}

.proof-badges img {
  opacity: 0.9;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
  height: 28px; /* Added from old HTML */
}
.proof-badges img:hover {
  filter: grayscale(0%) brightness(1.2);
  transform: translateY(-3px);
}

/* --- HOW IT WORKS --- */
#how h2 { /* From inline style */
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
}
.how_image {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform .4s ease, box-shadow .4s ease;
  height: 450px; /* Added for uniform height */
  width: 100%; /* Added for uniform height */
  object-fit: contain; /* Added for uniform height */
  object-position: top; /* Added for uniform height */
}


/* --- WHY SPOTTER --- */
#why h2 { /* From inline style */
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}
.list-check li::marker {
  content: "✔ ";
  color: var(--primary);
}
/* Perks card (from inline style) */
#why .p-4 {
  background: linear-gradient(145deg, rgba(49,175,253,0.15), rgba(0,212,255,0.05)); 
  border: 1px solid rgba(255,255,255,0.06);
}

/* --- INVESTORS --- */
.divider {
  border-top: 1px solid rgba(255, 255, 255, .08);
}
#investors h2 { /* From inline style */
    color: var(--primary);
}
#investors .btn-outline-light {
  border: 1px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease; /* Added transition */
}
#investors .btn-outline-light:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

/* --- FOOTER --- */
footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #010101;
  color: var(--gray);
}
footer a:hover {
  color: var(--primary);
}

/* --- RESPONSIVE FIXES (MOBILE) --- */
@media (max-width: 768px) {
  
  header.navbar {
    width: 100%;
    text-align: center; /* Center mobile nav links */
  }

  .hero-section {
    min-height: auto; /* Use hero-min rule */
    text-align: center; /* Center hero text */
  }
  
  /* Center-align all text on mobile */
  .hero-section h1,
  .hero-section p.lead,
  .hero-stat,
  #how,
  #why,
  #investors,
  footer {
    text-align: center !important;
  }

  #investors {
    padding-top: 0rem !important;
  }

  .hero-section .col-md-6 {
    align-items: center;
    justify-content: center;
  }
  
  .proof-badges {
    justify-content: center !important; /* Center proof badges */
  }

  /* Center list items */
  ul.list-check {
    padding-left: 0 !important;
    list-style-position: inside !important;
  }

  /* Center perks card */
  #why .p-4 {
    margin: 0 auto;
    display: inline-block;
  }
  
  .how_image {
      height: 350px; /* Shorter images on mobile */
  }

  .logo {
    height: 1rem !important;
  }
}

@keyframes modalFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-content {
  animation: modalFade 0.25s ease-in-out;
}


/* Other media queries from your file */
@media (min-width: 900px) and (max-width: 1368px) {
  .hero-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}