:root{
  --bg:#070a0f;
  --card:rgba(14,19,28,.74);
  --border:rgba(255,255,255,.08);
  --text:#eaf0ff;
  --muted:#a7b4d0;
  --btn:#121a29;
  --btnHover:#1a2640;
  --accent:#f59f0b; /* naranja Cavhico */
  --radius:20px;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 700px at 18% 0%, rgba(245,159,11,.16) 0%, rgba(0,0,0,0) 55%),
    radial-gradient(1000px 700px at 85% 10%, rgba(90,105,255,.14) 0%, rgba(0,0,0,0) 60%),
    var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 16px;
}

.wrap{width:min(560px, 100%);}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding:20px;
}

.top{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:14px;
}

.logo{
  width:74px;
  height:74px;
  border-radius:18px;
  background:#0b101a;
  border:1px solid rgba(255,255,255,.10);
  object-fit:cover;
}

.brand h1{
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
  line-height:1.1;
}

.tagline{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.hero{
  margin:14px 0 16px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  background:#0b101a;
}

.hero img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.02);
}

.btns{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:8px;
}

.btn{
  text-decoration:none;
  color:var(--text);
  background:var(--btn);
  border:1px solid rgba(255,255,255,.10);
  border-radius:16px;
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
  font-weight:700;
}

.btn:hover{
  background:var(--btnHover);
  transform: translateY(-1px);
  border-color: rgba(245,159,11,.35);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(245,159,11,.18), rgba(18,26,41,1));
  border-color: rgba(245,159,11,.35);
}

.btn.primary:hover{
  border-color: rgba(245,159,11,.55);
}

.btn.subtle{
  background: rgba(18,26,41,.7);
}

.pill{
  font-size:12px;
  font-weight:900;
  color:#111;
  background:var(--accent);
  padding:5px 10px;
  border-radius:999px;
  white-space:nowrap;
}

.arrow{
  color: rgba(234,240,255,.85);
  font-weight:900;
}

.footer{
  margin-top:16px;
  text-align:center;
}

.footer p{
  margin:0;
  color:rgba(167,180,208,.9);
  font-size:12px;
}

@media (max-width:420px){
  .hero img{height:220px;}
  .logo{width:68px;height:68px;}
}
