:root {
  --glass-bg: rgba(255,255,255,.08);
  --glass-border: rgba(255,255,255,.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", system-ui, sans-serif;
}

body {
  background: linear-gradient(120deg, #0b0e1a, #12162a);
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Fondo animado global */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, #ff6c6c55, transparent 40%),
    radial-gradient(circle at 80% 70%, #9a42ff55, transparent 40%);
  filter: blur(100px);
  animation: backgroundMove 18s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes backgroundMove {
  from { transform: translate(-40px, -30px); }
  to { transform: translate(40px, 30px); }
}

/* Glass base */
.glass {
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 20px 60px rgba(0,0,0,.5);
}

/* Layout */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
}

/* Card */
.card {
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px);
  max-width: 560px;
  width: 100%;
  text-align: center;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Status */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 28px;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%,100% { opacity: .7; }
  50% { opacity: 1; }
}

/* Text */
.title {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.subtitle {
  font-size: 16px;
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: #fff;
  transition: all .3s ease;
}

.socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

/* Bottom link */
.site-link {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  animation: fadeIn 1.5s ease forwards;
  transition: all .3s ease;
}

.site-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.15);
}

.site-link i {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 640px) {
  .site-link {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
  }

  .site-link:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}


/* Legal text */
.legal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  text-align: center;
  white-space: nowrap;
  animation: fadeIn 2s ease forwards;
}

/* Mobile spacing fix */
@media (max-width: 640px) {
  .site-link {
    bottom: 36px; /* sube el link */
  }

  .legal {
    bottom: 10px; /* baja el texto legal */
    font-size: 11px;
  }
}
