/* styles.css */
:root{
  --bg: #f6f7fb;
  --card: rgba(255,255,255,.75);
  --text: #1b1f2a;
  --muted: rgba(27,31,42,.7);

  /* Colores inspirados en el “2” (aprox) */
  --c1: #332782; /* azul */
  --c2: #6a2b72; /* morado */
  --c3: #d2313b; /* rojo */
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(51,39,130,.18), transparent 60%),
    radial-gradient(900px 500px at 85% 25%, rgba(210,49,59,.16), transparent 60%),
    radial-gradient(700px 450px at 55% 90%, rgba(106,43,114,.14), transparent 65%),
    var(--bg);
}

.wrap{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.card{
  width: min(860px, 100%);
  text-align: center;
  padding: clamp(22px, 4vw, 46px);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.logo{
  display: block;
  margin: 0 auto 14px auto;
  width: min(520px, 82vw);
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.soon{
  margin: 8px 0 8px 0;
  font-weight: 600;
  letter-spacing: .02em;
  /* “No tan grande”, responsivo */
  font-size: clamp(18px, 2.4vw, 28px);
}

.sub{
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--muted);
  line-height: 1.55;
}

.divider{
  margin: clamp(16px, 3vw, 22px) auto 0 auto;
  width: min(420px, 72vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--c1), var(--c2), var(--c3));
  opacity: .9;
}

.foot{
  margin-top: clamp(14px, 2.5vw, 18px);
  color: rgba(27,31,42,.55);
  font-size: 13px;
}

/* Pequeño “pop” al cargar */
@media (prefers-reduced-motion: no-preference){
  .card{
    animation: enter .55s ease-out both;
  }
  @keyframes enter{
    from{ transform: translateY(10px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
  }
}
