:root{
  --bg:#070a10;
  --panel:#0e1520;
  --text:#e8eef7;
  --muted:#a8b3c2;
  --accent:#5ff3d6;
  --accent2:#6aa7ff;
  --border:rgba(255,255,255,.08);
  --shadow: 0 12px 46px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(95,243,214,.12), transparent 60%),
    radial-gradient(980px 560px at 85% 10%, rgba(106,167,255,.12), transparent 55%),
    radial-gradient(700px 420px at 60% 70%, rgba(95,243,214,.08), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:1100px; margin:0 auto; padding:22px}

.header{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  position:sticky; top:0;
  backdrop-filter: blur(12px);
  background: rgba(7,10,16,.70);
  border-bottom: 1px solid var(--border);
  z-index:10;
}

.brand{display:flex; align-items:center; gap:12px; min-width:220px}
.brandText .name{font-weight:900; letter-spacing:.06em}
.brandText .tag{color:var(--muted); font-size:.9rem}

.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(95,243,214,.22), rgba(95,243,214,.10));
  border:1px solid rgba(95,243,214,.35);
  box-shadow: var(--shadow);
  color:var(--text);
  font-weight:700;
}
.btn:hover{text-decoration:none; transform: translateY(-1px)}
.btn.ghost{
  background: transparent;
  border:1px solid var(--border);
  box-shadow:none;
}

/* Header icon: S */
.logo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(180deg, rgba(95,243,214,.18), rgba(106,167,255,.10));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.logoMark{
  font-weight:900;
  letter-spacing:.02em;
  color: var(--text);
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(14,21,32,.55);
  color: var(--muted);
  font-weight:700;
  font-size:.92rem;
}

.hero{padding:34px 0 14px}

/* Logo grande arriba, centrado siempre */
.heroLogoWrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin: 10px 0 18px;
}
.heroLogoImg{
  display:block;
  margin: 0 auto;
  width: min(920px, 100%);
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 46px rgba(0,0,0,.45);
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:stretch;
}

.hero h1{
  font-size: clamp(2.2rem, 4.2vw, 3.35rem);
  margin:12px 0 10px;
  line-height:1.12;
}
.lead{
  max-width: 820px;
  color:var(--muted);
  font-size:1.07rem;
}

.accent{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.cta{display:flex; gap:12px; margin:18px 0 18px; flex-wrap:wrap}

.badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:12px;
}
.badge{
  background: rgba(14,21,32,.70);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:14px;
}
.k{color:var(--muted); font-weight:800; font-size:.9rem}
.v{margin-top:4px; font-weight:800}

.heroCard{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(14,21,32,.72), rgba(11,17,26,.72));
  box-shadow: var(--shadow);
  min-height: 320px;
}
.gridGlow{
  position:absolute; inset:-2px;
  background:
    linear-gradient(transparent 0, rgba(255,255,255,.05) 1px, transparent 2px),
    linear-gradient(90deg, transparent 0, rgba(255,255,255,.05) 1px, transparent 2px);
  background-size: 34px 34px;
  opacity:.35;
  mask-image: radial-gradient(220px 220px at 60% 35%, black, transparent 70%);
}
.heroCardInner{
  position:relative;
  padding:18px;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.metric{
  background: rgba(0,0,0,.18);
  border:1px solid var(--border);
  border-radius: 14px;
  padding:12px 12px;
}
.metricLabel{color:var(--muted); font-weight:800; font-size:.88rem}
.metricValue{font-weight:900; margin-top:2px}
.divider{height:1px; background: var(--border); margin:6px 0}
.mono{
  margin-top:auto;
  padding:12px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  border:1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:.95rem;
}
.mDim{color: rgba(232,238,247,.65)}

.section{padding:28px 0}
.section h2{margin:0 0 10px; font-size:1.7rem}
.sectionLead{margin:0 0 14px; color:var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.grid.two{grid-template-columns: repeat(2, minmax(0,1fr))}

.card{
  background: rgba(14,21,32,.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
}
.card h3{margin:0 0 6px}
.card p{margin:0}
.card ul{
  margin:10px 0 0;
  padding-left:18px;
  color: var(--muted);
}
.card li{margin:6px 0}

.callout{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background: linear-gradient(180deg, rgba(95,243,214,.10), rgba(14,21,32,.78));
  border: 1px solid rgba(95,243,214,.22);
}

.muted{color:var(--muted); font-size:.95rem}

form{display:flex; flex-direction:column; gap:10px}
label{display:flex; flex-direction:column; gap:6px; color:var(--muted); font-size:.95rem}
input, textarea{
  background: rgba(0,0,0,.22);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding:10px 12px;
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(95,243,214,.45)}

.mini{margin-top:12px}
.miniRow{display:flex; align-items:center; gap:10px; color:var(--muted)}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.footer{
  padding:22px 0 46px;
  color:var(--muted);
  border-top:1px solid var(--border);
  margin-top:26px;
}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .badges{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
}


/* Si el PNG trae margen desigual, compénsalo SOLO en desktop */
@media (min-width: 920px){
  .heroLogoImg{
    transform: translateX(-3%); /* ajusta: -2% a -6% según lo veas */
  }
}

