:root{
  --bg1:#05070c;
  --bg2:#0b1220;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --brand:#ff8a1f;
  --brand2:#ffb067;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(255,138,31,.18), transparent 55%),
    radial-gradient(900px 600px at 20% 25%, rgba(80,120,255,.12), transparent 60%),
    linear-gradient(180deg,var(--bg1),var(--bg2));
}

.wrap{max-width:980px;margin:0 auto;padding:18px}
.topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:10px 14px;border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);border-radius:16px;backdrop-filter: blur(10px);
}
.brand{display:flex;align-items:center;gap:10px}
.badge{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid rgba(255,138,31,.35);
  background:rgba(255,138,31,.10);
  font-weight:800;
}
.brand h1{font-size:16px;margin:0;line-height:1.1}
.brand p{margin:0;font-size:12px;color:var(--muted)}
.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:14px;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  color:#1b1208;text-decoration:none;font-weight:800;
  border:0;
}

.hero{padding:34px 6px 10px}
.hero h2{margin:0;font-size:42px;letter-spacing:-.5px}
.hero .sub{margin:10px 0 0;color:var(--muted);font-size:16px;max-width:60ch}
.kpis{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.kpi{
  padding:10px 12px;border:1px solid var(--stroke);border-radius:14px;
  background:rgba(255,255,255,.04);color:var(--muted);font-size:13px
}

.cards{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px
}
.card{
  border:1px solid var(--stroke);border-radius:18px;
  background:var(--card);padding:16px;backdrop-filter: blur(10px);
}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0 0 14px;color:var(--muted);font-size:13px;line-height:1.4}
.btn{
  display:flex;align-items:center;justify-content:center;gap:10px;
  width:100%;padding:14px 14px;border-radius:16px;
  text-decoration:none;font-weight:900;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.btn.primary{
  border:1px solid rgba(255,138,31,.45);
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  color:#1b1208;
}
.smallrow{display:flex;gap:10px;margin-top:10px}
.smallrow a{
  flex:1; text-align:center;
  padding:12px 12px;border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.18);
  color:var(--text);text-decoration:none;font-weight:800;
}
.footer{
  margin:22px 0 6px;color:rgba(255,255,255,.55);
  font-size:12px;display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap
}

@media (max-width:720px){
  .hero h2{font-size:34px}
  .cards{grid-template-columns:1fr}
}

/* BOOST ventas: hover suave */
.pill, .btn { transition: transform .12s ease, filter .12s ease; }
.pill:hover, .btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
