*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  background: #060d1f;
}

.scene {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    #060d1f 0%,
    #0b1a3a 30%,
    #1a1060 60%,
    #2e0b4e 85%,
    #3b0764 100%
  );
  overflow: hidden;
}

/* Orbs de fondo */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(99, 51, 255, 0.22) 0%,
    transparent 70%
  );
  top: -120px;
  left: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(180, 60, 255, 0.18) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -60px;
  animation: drift2 14s ease-in-out infinite alternate;
}
.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(30, 80, 200, 0.2) 0%,
    transparent 70%
  );
  top: 40%;
  left: 60%;
  animation: drift3 10s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(40px, 30px);
  }
}
@keyframes drift2 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-30px, -40px);
  }
}
@keyframes drift3 {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-20px, 20px);
  }
}

/* Partículas / dots de fondo */
.noise-layer {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
  pointer-events: none;
}

/* Línea superior decorativa */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #7c3aed,
    #a855f7,
    #6366f1,
    transparent
  );
}

/* Pill badge */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 6px #a78bfa;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

/* Logotipo */
.brand {
  font-size: clamp(5rem, 13vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    #e0d7ff 0%,
    #a78bfa 35%,
    #7c3aed 65%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Punto del logotipo */
.brand-dot {
  display: inline-block;
  width: clamp(10px, 2vw, 18px);
  height: clamp(10px, 2vw, 18px);
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.7);
  vertical-align: super;
  margin-left: 3px;
  animation: fadeUp 0.9s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tagline {
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 0.75);
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tagline span {
  color: rgba(196, 181, 253, 1);
  font-weight: 600;
}

/* Divisor */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7c3aed, transparent);
  margin: 0 auto 38px;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* CTA buttons */
.btn-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 100px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
  text-decoration: none;
  display: inline-block;
  animation: fadeUp 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.6);
  color: #fff;
}

.btn-ghost {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 100px;
  background: transparent;
  color: #c4b5fd;
  border: 1px solid rgba(139, 92, 246, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  animation: fadeUp 0.9s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.btn-ghost:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.7);
  color: #e9d5ff;
}

/* Chips de features */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
  animation: fadeUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.8);
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
}

/* Footer */
.footer-line {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 115, 220, 0.35);
  animation: fadeUp 1s 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.content-center {
  text-align: center;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
