body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  color: white;
  height: 100%;
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.hero-nav a {
  color: #ffffff;
  background-color: rgba(52, 113, 245, 0.8);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.hero-nav a:hover {
  background-color: rgba(52, 113, 245, 1);
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  /* Adds a semi-transparent overlay for better text readability */
  background: rgba(0, 0, 0, 0.4);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

p {
  font-size: 1.25rem;
  max-width: 600px;
}

form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 250px;
  max-width: 100%;
}
}

.logo {
  width: 4rem;
}

.unified-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-dual-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.unified-form input[type="email"] {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 80%;
}


.cta-button {
  background-color: #3471F5;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #0a54f5;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  font-size: 2.5rem;
  opacity: 0.7;
}

.arrow-icon {
  text-decoration: none;
  color: white;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #1a1a1a;
  color: white;
}

.about img {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  margin: 1rem;
}

.about-text {
  max-width: 650px;
  margin: 1rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.support-section {
  background-color: #141414;
  padding: 4rem 2rem;
  text-align: center;
}

.support-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.support-content h2 {
  font-size: 2rem;
  margin-bottom: 0rem;
  color: white;
}

.support-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: center;
}

.waitlist-section {
  background-color: #f1f4f6;
  padding: 60px 20px;
}

.waitlist-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.waitlist-text {
  flex: 1;
  min-width: 250px;
}

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

.waitlist-text p {
  font-size: 1rem;
  color: #555;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.875rem;
  color: #aaa;
}

/* Animation for the scroll indicator to create a bouncing effect */
@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(12px);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .content p,
  .about-text p {
    font-size: 1.1rem;
  }

  .content p {
    padding: 0 1rem;
  }

  .about {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .about img,
  .about-text {
    max-width: 90%;
    margin: 1rem 0;
  }

  .waitlist-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1rem;
  }

  .unified-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
  }

  input[type="email"],
  .cta-button {
    width: 80%;
  }

  input[type="email"] {
    margin-bottom: 1rem;
/* Styles for small mobile devices */
@media (max-width: 480px) {
    padding: 0.75rem;
  }
}
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}
