* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #000000 0%, #b1001a 100%);
  overflow: hidden;
}

/* Logo at top */
.logo-container {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.logo {
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Content container */
.content-wrapper {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  margin-top: 80px;
}

/* Badge */
.waitlist-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

/* Headings */
h1 {
  color: #ffffff;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.journey {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Form styles */
.email-form {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.input-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.form-input {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(177, 0, 26, 0.2);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.half-width {
  flex: 1;
}

.full-width {
  width: 100%;
}

.submit-btn {
  padding: 16px 30px;
  background: #ffffff;
  color: #b1001a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  margin-top: 8px;
}

.submit-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Decorative gradient orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(177, 0, 26, 0.4) 0%,
    transparent 70%
  );
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(177, 0, 26, 0.3) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-container {
    top: 30px;
  }

  .logo {
    width: 60px;
  }

  .content-wrapper {
    margin-top: 60px;
  }

  .waitlist-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 30px;
  }

  h1 {
    margin-bottom: 15px;
  }

  .subtitle {
    margin-bottom: 30px;
    font-size: 0.95rem;
  }

  .email-form {
    padding: 16px;
    gap: 10px;
  }

  .input-row {
    flex-direction: column;
    gap: 10px;
  }

  .form-input {
    padding: 14px 18px;
  }

  .submit-btn {
    padding: 16px 30px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-container {
    top: 20px;
  }

  .logo {
    width: 50px;
  }

  .content-wrapper {
    padding: 15px;
    margin-top: 50px;
  }

  .email-form {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.toast {
  background-color: #b1001a;
  color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(177, 0, 26, 0.35);
  font-family: "Inter", sans-serif;
}

.toast-body {
  font-weight: 500;
  font-size: 15px;
}

.toast-success {
    background: #b1001a;
    color: #fff;
    box-shadow: 0 10px 30px rgba(177, 0, 26, 0.35);
}

.toast-error {
    background: #1f1f1f;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

