/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace
}

body {
  background-color: #000000;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgb(0, 0, 0);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 100;
}

.logo {
  font-weight: 800;
  font-size: 2.8rem;
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-right a {
  color: #ccc;
  margin: 0 15px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.nav-right a:hover {
  color: #fff;
}

.signup-btn {
  background: linear-gradient(90deg, #457773, #00695c);
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.signup-btn:hover {
  opacity: 0.5;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle div {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.open div:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open div:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  height: 800px; /* or whatever size you want */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit:scale-down;
  pointer-events: none; /* prevents interaction */
  z-index: 0;
  padding: 120px;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white; 
  padding: 20px;
}


/* --- Hero Content --- */
.hero-content {
  position: relative;
  margin-top: -50px;
  z-index: 2;
}

.hero-title {
  font-size: clamp(5rem, 7vw, 8rem);
  font-weight: 900;
  background: linear-gradient(to right, #ffffff, #eaeaea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  margin-top: 5px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #cacaca;
  letter-spacing: 0px;
}

.create-btn {
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  background: linear-gradient(80deg, #1e9dff, #8543ff);
  border: 2px solid #bebebe;
  padding: 14px 38px;
  color: #ffffff;
  font-size: 1.1rem;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(44, 156, 240, 0.4);
  position: relative;
  z-index: 2;
}

.create-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(151, 187, 214, 0.938);
}

/* --- Footer --- */
.footer {
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #888;
margin-top: 100px;
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {
  .nav-right {
    font-family: "Poppins", sans-serif;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 20, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-right.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .menu-toggle {
    display: flex;
  }

  .signup-btn {
    padding: 10px 30px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 5rem);
  }

  .glow {
    width: 700px;
    height: 900px;
    top: 40%;
    filter: blur(160px);
  }

  .capsule {
    width: 300px;
    height: 480px;
    border-radius: 150px;
  }
}
