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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  background-color: #000014;
  color: #F9F8FF;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}

/* ------------------ NAVBAR ------------------ */
.navbar {
  width: 100%;
  padding: 18px 24px;
  background: rgba(0, 0, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1400px;
  margin-left: clamp(1rem, 4vw, 5rem);
}

.logo {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #e15012;
}

@media (max-width: 768px) {
  .nav-content {
    justify-content: center;
    margin-left: 0;
  }
}

/* ------------------ HERO ------------------ */
.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(249, 248, 255, 0.75);
  margin-bottom: 2rem;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

/* ------------------ EMAIL FORM ------------------ */
.notify-form {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}

.notify-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F9F8FF;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  outline: none;
  width: 250px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.notify-form input::placeholder {
  color: rgba(249, 248, 255, 0.5);
}

.notify-form input:focus {
  border-color: #e15012;
  box-shadow: 0 0 12px rgba(225, 80, 18, 0.5);
}

.notify-form button {
  background-color: #e15012;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-form button:hover {
  background-color: #ff6a2e;
  box-shadow: 0 0 14px rgba(225, 80, 18, 0.6);
}

/* Form message */
.form-message {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  color: rgba(249, 248, 255, 0.7);
  transition: all 0.3s ease;
}

/* ------------------ LOADER ------------------ */
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(225, 80, 18, 0.2);
  border-top-color: #e15012;
  border-radius: 50%;
  animation: spin 1s linear infinite, glowPulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(225, 80, 18, 0.6), 0 0 20px rgba(225, 80, 18, 0.3);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(225, 80, 18, 0.6),
                0 0 20px rgba(225, 80, 18, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(225, 80, 18, 0.8),
                0 0 40px rgba(225, 80, 18, 0.4);
  }
}

/* ------------------ FOOTER ------------------ */
.footer {
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  color: rgba(249, 248, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeUp 1s ease 0.8s forwards;
  opacity: 0;
}

/* ------------------ ANIMATIONS ------------------ */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .notify-form {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .notify-form input,
  .notify-form button {
    width: 100%;
    max-width: 280px;
  }
}