/* Reset y layout mínimo para la Fase 0. El sistema de diseño completo (Tailwind consumiendo
   estos mismos tokens, tipografía self-hosted, animaciones) se construye en la Fase 3. */

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--lumen);
  color: var(--tinta);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.tarjeta-arranque {
  max-width: 32rem;
  width: 100%;
  text-align: center;
}

.tarjeta-arranque h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.tarjeta-arranque p {
  margin: 0 0 1.5rem;
  opacity: 0.75;
}

.etiqueta-fase {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--halo);
  color: var(--orbe);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.paleta {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.paleta span {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radio, 12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

footer a {
  color: inherit;
}
