:root{
  --bg0:#0b0f19;
  --bg1:#0f1730;
  --txt:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--txt);

  /* Fondo uniforme (igual en todo el sitio) */
  background:
    radial-gradient(900px 600px at 20% 18%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(900px 600px at 80% 22%, rgba(34,197,94,.18), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));

  /* Evita “saltos” visuales */
  background-attachment: fixed;
}

.wrap{
  min-height:100%;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 16px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap: 22px;
}

.content{
  max-width: 54ch;
}

.kicker{
  margin:0 0 10px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

h1{
  margin:0;
  font-size: clamp(28px, 4.6vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.sub{
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.footer{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top: 18px;
}

.brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity: .78;
  transition: opacity .15s ease, transform .15s ease;
}
.brand:hover{ opacity: 1; transform: translateY(-1px); }

.brand img{
  width: 140px;
  height: auto;
  display:block;
}

/* En pantallas chicas, centra el texto también */
@media (max-width: 640px){
  .wrap{
    align-items:center;
    text-align:center;
  }
}