/* ========================================
   AUREA — Estilos específicos del Home
   ======================================== */

.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 64px;
  overflow-x: hidden;
}

/* ── LOGO ── */
.logo-wrap {
  width: 88px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── CONTENEDOR DEL HOME ──
   Antes se llamaba ".content" y pisaba la clase que main.css
   usa para el texto de "Proceso". Se renombra para que cada
   página tenga su propio contenedor y no dependan de que un
   archivo pise al otro por especificidad. */
.home-content {
  text-align: center;
  max-width: 420px;
  width: 100%;
}

/* Nombre */
.brand {
  font-size: clamp(2.8rem, 11vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.28s;
}

/* ── H2 statement ── */
.statement {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.4rem, 4.8vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.38s;
}

.statement .accent {
  color: var(--teal);
  font-style: italic;
}

.divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.46s;
}

.headline {
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.52s;
}

/* ── WAITLIST ──
   Ya no se redefine .waitlist-label como .platform-label con
   otro margen: se anima el componente .waitlist-section entero
   (definido una sola vez en main.css) para que se vea idéntico
   al de la página de Proceso. */
.home .waitlist-section {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.58s;
}

.home .privacy {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.80s;
}

/* ── Animaciones ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .logo-wrap {
    width: 72px;
    margin-bottom: 22px;
  }
}
