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

body {
  font-family:
    'Inter',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Noto Color Emoji";
  color: white;
  min-height: 100vh;
  background: radial-gradient(circle at 20% 30%, rgba(123,97,255,0.25), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(0,198,255,0.2), transparent 40%),
              radial-gradient(circle at 50% 80%, rgba(123,97,255,0.15), transparent 50%),
              #050510;
  animation: bgMove 25s ease infinite alternate;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,5,16,0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo img {
  width: 48px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #bfc3ff;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.open-register-modal {
  background: linear-gradient(135deg, #7b61ff, #00c6ff);
  padding: 12px 20px;
  border-radius: 14px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.open-register-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123,97,255,0.3);
}
/*HERO*/

.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 900px;
  margin: auto;
}

.badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(42px, 9vw, 78px);
  line-height: 0.95;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 17px;
  color: #9aa0c3;
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero .open-register-modal {
  font-size: 15px;
  padding: 14px 24px;
}




/* BOTÓN */
.btn-waitlist {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-waitlist:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* POPUP FONDO */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

/* CONTENIDO */
.popup-content {
  background: #1e293b;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 300px;
  color: white;
  position: relative;
}

/* CERRAR */
.cerrar {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

/* INPUT */
.popup-content input {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border-radius: 10px;
  border: none;
}

/* BOTÓN ENVIAR */
.btn-enviar {
  width: 100%;
  padding: 10px;
  background: #6366f1;
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

/* ================= SECCIONES ================= */
section {
  padding: 100px 10%;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.subtitle, .subtext {
  color: #9aa0c3;
  margin-bottom: 50px;
}

/* ================= FEATURE CARDS ================= */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  border-radius: 20px;
  background: rgba(17,24,39,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  color: #a0a8c0;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(90deg, rgba(106,92,255,0.15), rgba(0,198,255,0.15));
  box-shadow: 0 0 30px rgba(0,198,255,0.2);
}

.feature-card:hover h3 {
  color: #8ab4ff;
}

.feature-card:hover p {
  color: #d0d6ff;
}

/* ================= GRID ================= */
.steps, .features-grid, .diferencia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* ================= WAITLIST ================= */
.waitlist {
  padding: 120px 10%;
  display: flex;
  justify-content: center;
}

.waitlist-box {
  width: 100%;
  max-width: 600px;
  text-align: center;
  padding: 50px;
  border-radius: 20px;
  background: rgba(17,24,39,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  position: relative;
}

.waitlist-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
}

.waitlist-form {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.waitlist-form input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #020617;
  color: white;
}

.waitlist-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #9333ea);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.waitlist-form button:hover {
  opacity: 0.85;
}

/* ================= VISIÓN ================= */

.vision span {
  background: linear-gradient(135deg, #372def, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision p {
  margin-bottom: 30px; /* separación entre textos */
  line-height: 1.7;
  color: #d3d0d0;
}

/* Último texto destacado */
.vision-highlight {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 40px;
}

/* ================= FOOTER ================= */
.footer {
  padding: 40px;
  text-align: center;
  color: #9aa0c3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 40px;
  }

  .cta {
    flex-direction: column;
    width: 100%;
  }

  .cta input, .cta button {
    width: 100%;
  }

  .steps, .features-grid, .diferencia-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */
.faq {
  padding: 100px 10%;
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq .subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #9aa0c3;
}

.faq-item {
  background: rgba(17,24,39,0.6);
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  color: white;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  outline: none;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  padding: 0 20px;
  color: #9aa0c3;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* ajusta según el contenido */
  padding: 15px 20px;
}

.footer .social-link {
  display: inline-block;
  margin-top: 10px;
  color: #00c6ff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer .social-link:hover {
  color: #7b61ff;
}


/* ================= POPUP ================= */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 2000;
}

.popup.active {
  opacity: 1;
  pointer-events: all;
}

/* CAJA */
.popup-content {
  background: rgba(17,24,39,0.9);
  padding: 40px;
  border-radius: 20px;
  max-width: 400px;
  text-align: center;
  position: relative;

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 0 40px rgba(123,97,255,0.3),
    0 0 80px rgba(0,198,255,0.2);
}

/* TITULO */
.popup-content h2 {
  margin-bottom: 15px;
}

/* TEXTO */
.popup-content p {
  color: #9aa0c3;
  margin-bottom: 15px;
}

/* BOTÓN */
.popup-btn {
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #7b61ff, #00c6ff);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* CERRAR */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* Iconos */ 
.feature-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.icon {
  margin-bottom: 15px;
}

.icon i {
  font-size: 20px;
  color: white;
  background: #6C63FF;
  padding: 15px;
  border-radius: 50%;
  display: inline-block;
}





.how-it-works {
  padding: 80px 20px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* BLOQUES ALARGADOS */
.step {
  display: flex;
  align-items: center;
  background: #111;
  padding: 20px 25px;
  border-radius: 12px;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .step-icon {
    margin-bottom: 10px;
  }
} 

.step:hover {
  transform: translateX(10px);
}

/* CONTENEDOR CENTRADO */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center; /* centra los bloques */
  gap: 25px;
}

/* BLOQUES */
.step {
  display: flex;
  align-items: center;
  gap: 20px;

  width: 100%;
  max-width: 700px; /* clave para que no ocupe toda la pantalla */

  background: #111;
  padding: 25px 30px;

  border-radius: 20px; /* más redondeado */
  
  border: 1px solid rgba(255, 255, 255, 0.05);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

  transition: all 0.3s ease;
}

/* HOVER MÁS PRO */
.step:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 35px rgba(108, 99, 255, 0.15);
}

/* ICONO */
.step-icon i {
  font-size: 18px;
  color: white;
  background: #6C63FF;
  padding: 14px;
  border-radius: 50%;
}

/* TEXTO */
.step-content h3 {
  margin: 0;
  font-size: 18px;
}

.step-content p {
  margin: 5px 0 0;
  opacity: 0.7;
  font-size: 14px;
}





/* CONTENEDOR */
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* BLOQUES */
.step {
  display: flex;
  align-items: center;
  gap: 20px;

  width: 100%;
  max-width: 720px;

  padding: 25px 30px;

  border-radius: 20px;

  /* 🔥 FONDO CON COLOR SUTIL */
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(0,0,0,0.6));

  border: 1px solid rgba(108, 99, 255, 0.2);

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);

  transition: all 0.3s ease;
}

/* HOVER MÁS PRO */
.step:hover {
  transform: translateY(-6px) scale(1.02);

  background: linear-gradient(135deg, rgba(219, 36, 248, 0.3), rgba(0,0,0,0.8));

  box-shadow: 0 20px 40px rgba(108,99,255,0.25);
}

/* ICONO */
.step-icon i {
  font-size: 18px;
  color: white;

  background: linear-gradient(135deg, #6C63FF, #8A7CFF);

  padding: 14px;
  border-radius: 50%;

  box-shadow: 0 5px 15px rgba(108,99,255,0.5);
}

/* TEXTO */
.step-content h3 {
  margin: 0;
  font-size: 18px;
  color: white;
}

.step-content p {
  margin: 5px 0 0;
  opacity: 0.75;
  font-size: 14px;
  color: #ccc;
}

.step::before {
  content: "";
  width: 4px;
  height: 60%;
  background: #6C63FF;
  border-radius: 10px;
}

.before-after {
  padding: 100px 20px;
  text-align: center;
}

/* CONTENEDOR */
.comparison {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* CAJAS */
.box {
  flex: 1;
  max-width: 400px;
  padding: 30px;
  border-radius: 20px;

  text-align: left;

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.05);

  transition: 0.3s;
}

/* HOVER */
.box:hover {
  transform: translateY(-8px) scale(1.02);
}

/* ANTES (ROJO SUAVE) */
.before {
  background: linear-gradient(135deg, rgba(255,80,80,0.15), rgba(0,0,0,0.7));
  border: 1px solid rgba(255,80,80,0.3);
}

/* DESPUÉS (VERDE SUAVE) */
.after {
  background: linear-gradient(135deg, rgba(80,255,150,0.15), rgba(0,0,0,0.7));
  border: 1px solid rgba(80,255,150,0.3);
}

/* TITULOS */
.box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

/* LISTA */
.box ul {
  list-style: none;
  padding: 0;
}

.box ul li {
  margin-bottom: 10px;
  font-size: 15px;
  opacity: 0.85;
}

/* ICONOS AUTOMÁTICOS */
.before ul li::before {
  content: "✖";
  color: #ff6b6b;
  margin-right: 10px;
}

.after ul li::before {
  content: "✔";
  color: #4ade80;
  margin-right: 10px;
}

.before-after {
  padding: 140px 20px;
}




.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;

  z-index: 9999;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
  color: white;
  padding: 35px 25px;
  border-radius: 20px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);

  transform: scale(0.85);
  transition: transform 0.4s ease;
}

.popup-overlay.active .popup-box {
  transform: scale(1);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  cursor: pointer;
}

.highlight {
  font-size: 14px;
  color: #a0a0ff;
  margin-bottom: 15px;
}

input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 80%;
  margin: 15px 0;
}

button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #6C63FF;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: scale(1.05);
}



/* Antes y despues de Levelia fondo*/ 

.bloque-fondo {
  width: 100%;
  background: #0f172a; /* color oscuro pro */
  padding: 80px 0; /* espacio arriba y abajo */
}

.contenido {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: white;
}

@media (max-width: 600px) {
  .comparison {
    flex-direction: column;
    gap: 20px;
  }

  .box {
    max-width: 100%;
  }
}


/* Que cambiaras con Levelia*/

.pilares-container {
  position: relative;
}

.pilares-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  z-index: 0;
}

/* ===== SECCIÓN ===== */
.pilares {
  text-align: center;
  padding: 120px 20px;
  background: radial-gradient(circle at top, rgba(123,97,255,0.15), transparent 40%), #020617;
  color: white;
}

.pilares h2 {
  font-size: 2.4rem;
  margin-bottom: 70px;
}

/* ===== CONTENEDOR ===== */
.pilares-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== CARD ===== */
.pilar {
  position: relative;
  max-width: 280px;
  padding: 30px 25px;

  border-radius: 20px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* GLOW INTERNO */
.pilar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);
  opacity: 0;
  transition: 0.4s;

  z-index: -1;
}

/* HOVER */
.pilar:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.pilar:hover::before {
  opacity: 0.15;
}

/* ===== ICONO ===== */
.icono {
  font-size: 34px;
  margin-bottom: 18px;

  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #7b61ff, #00c6ff);

  box-shadow: 0 10px 25px rgba(123,97,255,0.4);

  margin-left: auto;
  margin-right: auto;
}

/* ===== TEXTO ===== */
.pilar h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.pilar p {
  font-size: 0.95rem;
  color: #aab0d0;
  line-height: 1.5;
}

.pilares h2 {
  font-size: 2.2rem;
  margin-bottom: 60px;
}

.pilares-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.pilar {
  max-width: 250px;
  transition: transform 0.3s ease;
}

.pilar:hover {
  transform: translateY(-10px);
}

.icono {
  font-size: 40px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.pilares-container {
  position: relative;
}

.pilares-container::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  z-index: 1;
}

.pilar {
  position: relative;
  z-index: 2;
}



/* TEXTO NUEVO EN PILARES */
.pilar p {
  font-size: 14px;
  color: #9aa0c3;
  margin-top: 8px;
  line-height: 1.5;
}

/* TARJETA MÁS PRO */
.pilar {
  max-width: 260px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(17,24,39,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

/* HOVER MEJORADO */
.pilar:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(135deg, rgba(123,97,255,0.15), rgba(0,198,255,0.15));
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ICONO MÁS PRO */
.icono {
  font-size: 32px;
  margin-bottom: 15px;
}


/* Enlaces */ 

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

.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Instagram */
.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

/* Discord */
.discord {
  background: #5865F2;
}

/* Hover efecto */
.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/*Tamaño de la página*/ 


@media (max-width: 768px) {
  html {
    zoom: 100%;
  }
}

@media (max-width: 600px) {
  .hero {
    margin-top: 40px;
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 14px;
  }

  .hero a {
    width: 100%;
    display: block;
    text-align: center;
  }
}


/*Pop Up*/

.benefits-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s;
}

.benefit:hover {
  background: rgba(123,108,255,0.15);
  transform: scale(1.02);
}

.icon {
  font-size: 20px;
}

.title {
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin: 0;
}

.desc {
  color: #aaa;
  font-size: 12px;
  margin: 0;
}

.benefit i {
  width: 22px;
  height: 22px;
  color: #7b6cff;
  flex-shrink: 0;
}

/* Titulo Pop Up*/

.benefits-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  
  background: linear-gradient(90deg, #7b6cff, #5fd0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  letter-spacing: 0.5px;
}


/* Optimización de la pagina*/

.element {
  will-change: transform;
}
html {
  scroll-behavior: smooth;
}


/*Pop Up x para cerrar*/

.popup__content {
  position: relative; /* importante para posicionar la X */
}

.popup__close {
  position: absolute;
  top: 12px;
  right: 12px;

  background: transparent;
  border: none;
  color: #fff;

  font-size: 24px;
  cursor: pointer;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.popup__close:hover {
  transform: scale(1.2);
  opacity: 0.7;
}


/* Scroll al hacer click en el logo*/

html {
  scroll-behavior: smooth;
}


/* Lista de espera */ 

.waitlist-section {
  display: flex;
  justify-content: center;
  padding: 70px 20px;
}

.waitlist-box {
  background: linear-gradient(135deg, #1a1333, #2d1f66);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 0 40px rgba(120, 80, 255, 0.18);
  border: 1px solid rgba(255,255,255,0.06);
}

.waitlist-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.waitlist-sub {
  font-size: 14px;
  margin-bottom: 25px;
  color: #cfcfff;
}

.waitlist-form {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.waitlist-form input {
  padding: 12px;
  border-radius: 10px;
  width: 260px;
  font-size: 14px;
}

.waitlist-form button {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  animation: none; /* quitamos el pulse agresivo */
}

.waitlist-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 15px rgba(140, 100, 255, 0.5);
}

.no-spam {
  font-size: 11px;
}

.social-proof {
  font-size: 12px;
}


.waitlist-form button {
  background: linear-gradient(135deg, #7b5cff, #9f5cff);
  transition: 0.3s;
}

.waitlist-form button:hover {
  box-shadow: 0 0 20px rgba(140, 100, 255, 0.7);
}





/* ================= MOBILE PRO ================= */

/* ❌ QUITAR ZOOM EN MÓVIL */
@media (max-width: 768px) {
  html {
    zoom: 100%;
  }
}

/* NAVBAR MOBILE */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

  /* NAVBAR BASE EN MÓVIL */
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  /* ICONO HAMBURGUESA */
  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: white;
  }

  /* MENÚ OCULTO POR DEFECTO */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    gap: 20px;

    padding: 25px 0;

    display: none;
    z-index: 999;
  }

  /* MENÚ ABIERTO */
  .nav-links.active {
    display: flex;
  }

  /* LINKS MÁS GRANDES Y LEGIBLES */
  .nav-links a {
    font-size: 18px;
    font-weight: 500;
  }

  /* BOTÓN CTA OCULTO EN MÓVIL */
  .nav-btn {
    display: none;
  }
}

/* GRID CONTROLADO (NO MÁS 4 COLUMNAS) */
.features-grid,
.diferencia-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* TABLET */
@media (max-width: 1024px) {
  .features-grid,
  .diferencia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */
@media (max-width: 600px) {
  .features-grid,
  .diferencia-grid {
    grid-template-columns: 1fr;
  }
}

/* WAITLIST MOBILE */
@media (max-width: 600px) {
  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }
}

/* HERO MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }
}

/* TARJETAS MÁS LIMPIAS */
@media (max-width: 600px) {
  .feature-card {
    padding: 20px;
  }
}




/* ================= FOOTER MÁS PEQUEÑO ================= */

footer {
  padding: 25px 15px !important;
}

/* Texto */
footer p {
  font-size: 16px !important;
  margin-bottom: 12px !important;
}

/* Contenedor iconos */
footer div {
  gap: 12px !important;
}

/* Iconos más pequeños */
footer a {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
}



/* ================= FOOTER MÁS PEQUEÑO ================= */

footer {
  padding: 25px 15px !important;
}

/* Texto */
footer p {
  font-size: 16px !important;
  margin-bottom: 12px !important;
}

/* Contenedor iconos */
footer div {
  gap: 12px !important;
}

/* Iconos más pequeños */
footer a {
  width: 40px !important;
  height: 40px !important;
  font-size: 16px !important;
}



footer {
  background: #0a0f25 !important;
}





.icon {
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1) rotate(5deg);
}





@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.hero-img {
  animation: float 4s ease-in-out infinite;
}

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Animaciones básicas y ligeras */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover en botones simple */
.button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Scroll suave nativo */
html {
  scroll-behavior: smooth;
}

/* Fondo modal */
.modal {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.3s ease;
  z-index:999;
}

.modal.show {
  opacity:1;
  pointer-events:auto;
}

/* Contenido modal */
.modal-content {
  background:#1c1c2a;
  padding:2rem;
  border-radius:12px;
  text-align:center;
  max-width:400px;
  width:90%;
  color:white;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  animation:fadeScale 0.4s ease-out;
  position: relative;
}

@keyframes fadeScale {
  from {transform: scale(0.8); opacity:0;}
  to {transform: scale(1); opacity:1;}
}

/* Botón CTA */
.cta-button {
  background: #6c63ff;
  color:white;
  border:none;
  padding:0.8rem 1.5rem;
  border-radius:8px;
  cursor:pointer;
  margin-top:1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* Botón cerrar */
.close-btn {
  position:absolute;
  top:10px;
  right:15px;
  background:none;
  border:none;
  color:white;
  font-size:1.2rem;
  cursor:pointer;
}

/* Input de correo */
.modal-content input {
  padding:0.8rem;
  border-radius:8px;
  border:none;
  width:80%;
  margin-top:1rem;
}

.success-message {
  color:#4cd137;
  margin-top:0.8rem;
}
/* Botones estilo profesional */
.cta-button {
  background: linear-gradient(135deg, #6c63ff, #00d4ff);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

/* Hover moderno con movimiento */
.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Efecto de luz suave dentro del botón */
.cta-button::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: all 0.5s;
}

.cta-button:hover::after {
  left: 125%;
}


.open-register-modal {
  text-decoration: none; /* Quita el subrayado */
  background: linear-gradient(135deg, #7f5af0, #6c6ef7);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(127, 90, 240, 0.4);
}

.open-register-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(127, 90, 240, 0.5);
}

.open-register-modal:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(127, 90, 240, 0.4);
}

.highlight {
  font-weight: 700;
  font-size: 1.1em;
  background: linear-gradient(135deg, #7f5af0, #6c6ef7, #5eead4);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 3s ease infinite;
  position: relative;
}

@keyframes gradientAnimation {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@keyframes shine {
  0% {left: -50%;}
  100% {left: 100%;}
}





.ventaja {
  background: linear-gradient(135deg, #7f5af0, #6c6ef7);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(127, 90, 240, 0.3);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ventaja:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(127, 90, 240, 0.45);
}

/*POP UP */

/* FONDO OSCURO */
.popup-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* CAJA DEL POPUP */
.popup-success-content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: popupFade 0.3s ease;
  font-family: 'Inter', sans-serif;
}

/* TÍTULO */
.popup-success-content h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #0f172a;
}

/* TEXTO */
.popup-success-content p {
  font-size: 16px;
  color: #475569;
}

/* BOTÓN */
.popup-success-content button {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* HOVER BOTÓN */
.popup-success-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99,102,241,0.4);
}

/* ANIMACIÓN */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* INPUT MEJORADO */
.waitlist-form input {
  transition: all 0.2s ease;
}

.waitlist-form input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

@media (max-width: 600px) {
  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input {
    width: 100%;
  }

  .waitlist-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .popup-content,
  .popup-success-content {
    width: 90%;
    padding: 25px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== FLUIDITY IMPROVEMENTS ===== */
* {
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

button:hover {
  transform: scale(1.05);
}

/* fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* hover cards */
.before, .after {
  transition: all 0.3s ease;
}
.before:hover, .after:hover {
  transform: translateY(-5px);
}

/* ===== MOBILE FIX TRANSFORMATION LINE ===== */
@media (max-width:768px){
  .transformation{
    flex-direction: column !important;
    align-items:center;
  }

  .transformation .before,
  .transformation .after,
  .transformation .arrow{
    display:block !important;
    width:100%;
    text-align:center;
  }

  .transformation .arrow{
    transform: rotate(90deg);
  }
}

/*Separador Características*/

.separator {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #999, transparent);
  margin: 50px 0;
}


/* ===== LEVELIA IMPROVEMENTS 2026 ===== */

/* Mejor renderizado general */
body {
  overflow-x: hidden;
}

/* Texto más limpio */
p {
  line-height: 1.7;
}

/* Mejor contraste */
.hero p,
.subtitle,
.subtext {
  color: #b7bdd8;
}

/* Hero más profesional */
.hero {
  padding-top: 40px;
}

.hero h1 {
  letter-spacing: -2px;
}

/* Glow más sutil */
.feature-card,
.pilar,
.step,
.waitlist-box,
.box {
  backdrop-filter: blur(12px);
}

/* Hover más fluido */
.feature-card:hover,
.pilar:hover,
.step:hover,
.box:hover {
  transition: all 0.25s ease;
}

/* Botones premium */
.open-register-modal,
.waitlist-form button,
.popup-success-content button {
  background: linear-gradient(135deg, #7b61ff, #5f8cff);
}

/* Navbar más premium */
.navbar {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mejor spacing */
section {
  position: relative;
}

/* ===== MOBILE MASSIVE IMPROVEMENTS ===== */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 22px;
  }

  .hero {
    min-height: auto;
    margin-top: 20px;
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 15px;
    max-width: 100%;
  }

  .badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .open-register-modal {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .comparison {
    flex-direction: column;
    align-items: center;
  }

  .box {
    width: 100%;
    max-width: 100%;
  }

  .steps {
    gap: 18px;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 22px;
  }

  .step::before {
    display: none;
  }

  .step-icon {
    margin-bottom: 8px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .features-grid,
  .diferencia-grid,
  .pilares-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card,
  .pilar {
    width: 100%;
    max-width: 100%;
  }

  .waitlist-box {
    padding: 28px 20px;
  }

  .waitlist-title {
    font-size: 28px;
  }

  .waitlist-sub {
    font-size: 13px;
    line-height: 1.5;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  }

  footer p {
    font-size: 14px !important;
  }

  .faq {
    padding: 70px 20px;
  }

  .faq-question {
    font-size: 15px;
    line-height: 1.5;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ===== SMALL PHONE FIXES ===== */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 2rem;
  }

  .logo img {
    width: 50px;
  }

  .navbar {
    padding: 14px 16px;
  }

  .nav-links {
    top: 65px;
  }

  .popup-content,
  .popup-success-content {
    padding: 22px;
    border-radius: 16px;
  }

  .waitlist-title {
    font-size: 24px;
  }

  .icono {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }
}

/* ===== PERFORMANCE ===== */

img,
.feature-card,
.pilar,
.step,
.box {
  transform: translateZ(0);
}

/* ===== CLEANER SCROLLBAR ===== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050510;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(#7b61ff, #00c6ff);
  border-radius: 20px;
}



/* ================= MOBILE ================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 20px;
  }

  .navbar {
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    right: -100%;
    width: 100%;
    height: auto;
    background: rgba(5,5,16,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    transition: 0.35s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .navbar .open-register-modal {
    display: none;
  }

  .hero {
    min-height: 75vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero p {
    font-size: 15px;
  }

  .comparison {
    flex-direction: column;
    gap: 20px;
  }

  .diferencia-grid,
  .pilares-container,
  .steps {
    grid-template-columns: 1fr !important;
    display: grid;
    gap: 20px;
  }

  .feature-card,
  .pilar,
  .step,
  .box {
    padding: 24px;
    border-radius: 22px;
  }

  h2 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  p {
    line-height: 1.7;
  }
}

body {
  background: #050510;
  color: white;
  font-family: 'Inter', sans-serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===== LEVELIA IDENTITY ENHANCEMENTS ===== */

.hero h1{
  line-height: 0.95;
  max-width: 900px;
}

.hero p{
  max-width: 720px;
  margin: 25px auto;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.cinematic-card{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126,87,255,0.15);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border 0.3s ease;
}

.cinematic-card:hover{
  transform: translateY(-4px);
  border: 1px solid rgba(126,87,255,0.4);
}

.before{
  background:
  linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.45)),
  radial-gradient(circle at top, rgba(40,40,60,0.6), transparent 70%);
}

.after{
  background:
  linear-gradient(to top, rgba(35,0,80,0.85), rgba(70,20,140,0.35)),
  radial-gradient(circle at top, rgba(120,80,255,0.45), transparent 70%);
}

.before::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(255,255,255,0.03), transparent 60%);
  pointer-events:none;
}

.after::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(140,90,255,0.18), transparent 60%);
  pointer-events:none;
}

.box ul li{
  margin-bottom: 16px;
  line-height: 1.5;
}

.feature-card,
.step,
.pilar{
  border: 1px solid rgba(95, 75, 255, 0.12);
  background: rgba(10,10,20,0.45);
  backdrop-filter: blur(8px);
}

.feature-card:hover,
.step:hover,
.pilar:hover{
  border-color: rgba(120,90,255,0.35);
  transform: translateY(-4px);
  transition: 0.3s ease;
}

@media(max-width:768px){
  .hero h1{
    font-size: 4rem !important;
  }

  .hero p{
    font-size: 1rem;
    padding: 0 10px;
  }

  .comparison{
    gap: 18px;
  }

  .box{
    min-height: 280px;
  }
}


/* ===== NEW IDENTITY SECTION ===== */

.identity-section{
    padding: 120px 24px;
    position: relative;
}

.identity-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at center, rgba(120,80,255,0.12), transparent 60%);
    pointer-events:none;
}

.section-tag{
    color:#8d6bff;
    text-align:center;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:24px;
}

.identity-section h2{
    font-size: clamp(2.8rem, 7vw, 5rem);
    text-align:center;
    line-height:1;
    margin-bottom:24px;
    font-weight:800;
}

.identity-section h2 span{
    color:#9b73ff;
}

.identity-text{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
    line-height:1.8;
    color:rgba(255,255,255,0.75);
    font-size:1.15rem;
}

.identity-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:24px;
    margin-top:40px;
}

.identity-card{
    background:rgba(10,10,20,0.6);
    border:1px solid rgba(120,80,255,0.18);
    border-radius:28px;
    padding:32px;
    backdrop-filter:blur(12px);
    transition:0.3s ease;
}

.identity-card:hover{
    transform:translateY(-6px);
    border-color:rgba(140,100,255,0.45);
}

.identity-card h3{
    font-size:1.35rem;
    margin-bottom:16px;
    color:white;
}

.identity-card p{
    color:rgba(255,255,255,0.72);
    line-height:1.7;
}

.identity-quote{
    margin-top:70px;
    text-align:center;
}

.identity-quote span{
    font-size:1.6rem;
    font-weight:700;
    color:#a57dff;
    text-shadow:0 0 30px rgba(140,100,255,0.35);
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(120,80,255,0.15), transparent 70%);
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

@media(max-width:768px){
    .identity-section{
        padding:90px 18px;
    }

    .identity-card{
        padding:24px;
    }

    .identity-quote span{
        font-size:1.25rem;
    }
}


/* ===== MOBILE NAV FIX ===== */
html{
  scroll-behavior:smooth;
}

body.menu-open{
  overflow:hidden;
}

@media (max-width: 768px){
  .navbar{
    padding: 14px 18px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    z-index:1101;
  }

  .open-register-modal{
    display:none;
  }

  .nav-links{
    position:fixed;
    top:72px;
    left:0;
    width:100%;
    flex-direction:column;
    gap:10px;
    padding:20px;
    background:rgba(5,5,16,0.96);
    backdrop-filter:blur(16px);
    transform:translateY(-120%);
    opacity:0;
    pointer-events:none;
    transition:0.3s ease;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-links li{
    width:100%;
  }

  .nav-links a{
    display:block;
    width:100%;
    padding:14px;
    border-radius:14px;
    background:rgba(255,255,255,0.03);
    font-size:15px;
  }

  .hero{
    min-height:auto;
    padding-top:110px;
  }

  body{
    animation:none;
  }
}
