:root{
  --bg1:#050810;
  --bg2:#0a1230;
  --glass: rgba(255,255,255,.08);
  --glass2: rgba(255,255,255,.12);
  --stroke: rgba(255,255,255,.15);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --brand: #00e5ff;
  --brand2:#7c4dff;
  --ok:#22c55e;
}

*{box-sizing:border-box;margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;}
body{
  min-height:100vh;
  background: radial-gradient(1200px 800px at 20% 10%, #182f58 0%, transparent 60%),
              radial-gradient(900px 700px at 80% 30%, #3b1a58 0%, transparent 55%),
              linear-gradient(135deg, var(--bg1), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

/* Fondo */
.bg{position:fixed; inset:0; z-index:-1; overflow:hidden;}
.grid{
  position:absolute; inset:-20%;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: rotate(-12deg);
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,1) 0%, rgba(0,0,0,.7) 40%, transparent 70%);
  opacity:.35;
}

.orb{
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  filter: blur(30px);
  opacity:.55;
  animation: float 8s ease-in-out infinite;
}
.orb1{left:-140px; top:-160px; background: radial-gradient(circle at 30% 30%, var(--brand), transparent 60%);}
.orb2{right:-200px; top:120px; background: radial-gradient(circle at 40% 40%, var(--brand2), transparent 60%); animation-delay: -2s;}
.orb3{left:20%; bottom:-260px; background: radial-gradient(circle at 40% 40%, #00ffa8, transparent 60%); animation-delay: -4s;}

@keyframes float{
  0%,100%{transform: translate(0,0) scale(1);}
  50%{transform: translate(18px,-14px) scale(1.03);}
}

#stars{position:absolute; inset:0; width:100%; height:100%;}

/* Layout */
.wrap{
  width:min(980px, 92vw);
  margin: 70px auto 80px;
  display:grid;
  gap:22px;
}
.card{
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, var(--glass), rgba(255,255,255,.04));
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  animation: pop .9s ease both;
}
@keyframes pop{from{transform: translateY(10px); opacity:0;}to{transform: translateY(0); opacity:1;}}

.brand{display:flex; gap:16px; align-items:center;}
.logo{
  width:54px; height:54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,229,255,.20), rgba(124,77,255,.18));
  border:1px solid rgba(255,255,255,.18);
  display:grid; place-items:center;
  position:relative;
  overflow:hidden;
}
.logo::after{
  content:"";
  position:absolute; inset:-80%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(25deg);
  animation: shine 3.3s linear infinite;
}
@keyframes shine{to{transform: translateX(55%) rotate(25deg);} }

.logo-dot{
  width:9px;height:9px;border-radius:50%;
  background: var(--brand);
  box-shadow: 0 0 20px rgba(0,229,255,.75);
  margin:0 3px;
  display:inline-block;
  animation: bounce 1.1s ease-in-out infinite;
}
.logo-dot:nth-child(2){animation-delay:.12s; background:#a78bfa; box-shadow:0 0 18px rgba(167,139,250,.75);}
.logo-dot:nth-child(3){animation-delay:.24s; background:#00ffa8; box-shadow:0 0 18px rgba(0,255,168,.75);}

@keyframes bounce{
  0%,100%{transform: translateY(0);}
  50%{transform: translateY(-6px);}
}

.title{font-size: 34px; letter-spacing: 4px; font-weight: 800;}
.subtitle{color:var(--muted); font-size: 13.5px; margin-top: 2px;}

.divider{
  height:1px; margin:18px 0 16px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
}

.headline{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-size: 22px;
  font-weight: 700;
}

.badge{
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,229,255,.14);
  border:1px solid rgba(0,229,255,.25);
  color: rgba(255,255,255,.92);
  font-size: 13px;
}

.typing{
  color: rgba(255,255,255,.92);
  position:relative;
}
.typing::after{
  content:"";
  display:inline-block;
  width: 9px; height: 20px;
  margin-left: 6px;
  background: rgba(255,255,255,.85);
  border-radius: 3px;
  transform: translateY(3px);
  animation: caret .75s steps(1) infinite;
}
@keyframes caret{50%{opacity:0;}}

.desc{
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15.5px;
}

.chips{
  margin-top: 16px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  transition: transform .2s ease, background .2s ease;
}
.chip:hover{transform: translateY(-2px); background: rgba(255,255,255,.09);}

.actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  text-decoration:none;
  color: rgba(255,255,255,.92);
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-2px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22);}
.btn:active{transform: translateY(0);}

.btn.primary{
  background: linear-gradient(135deg, rgba(0,229,255,.22), rgba(124,77,255,.18));
  border-color: rgba(0,229,255,.25);
  box-shadow: 0 16px 34px rgba(0,0,0,.25);
}
.btn.primary:hover{border-color: rgba(0,229,255,.45);}
.btn.ghost{background: rgba(255,255,255,.05);}
.btn.full{width:100%; justify-content:center;}

.arrow{opacity:.9}

.mini{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mini-card{
  padding: 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.mini-title{font-weight:700; margin-bottom: 6px;}
.mini-text{color: var(--muted); font-size: 13.5px; line-height: 1.45;}

.footer{
  margin-top: 20px;
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.pulse{
  width:10px; height:10px; border-radius:50%;
  background: var(--ok);
  box-shadow: 0 0 18px rgba(34,197,94,.75);
  animation: pulsing 1.6s ease-in-out infinite;
}
@keyframes pulsing{
  0%,100%{transform:scale(1); opacity:.95;}
  50%{transform:scale(1.35); opacity:.55;}
}

/* Info section */
.info-card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(12px);
}
.info-card h3{font-size: 18px; margin-bottom: 10px;}
.info-card ul{padding-left: 18px; color: var(--muted); line-height: 1.7;}
.info-card li{margin: 6px 0;}
.small{margin-top: 10px; color: rgba(255,255,255,.72);}

/* Modal */
.modal{
  position:fixed; inset:0;
  background: rgba(0,0,0,.62);
  display:none;
  place-items:center;
  padding: 18px;
}
.modal.show{display:grid;}
.modal-card{
  width:min(520px, 94vw);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,18,30,.88);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  padding: 22px;
  position:relative;
  animation: pop .25s ease both;
}
.close{
  position:absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor:pointer;
}
.modal-card h3{font-size: 18px; margin-bottom: 8px;}
.modal-card p{color: var(--muted); line-height: 1.6; margin-bottom: 12px;}
.modal-card input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  outline:none;
  margin-bottom: 12px;
}
.modal-card input::placeholder{color: rgba(255,255,255,.55);}
.hint{margin-top: 10px; color: rgba(255,255,255,.75); font-size: 13px;}

/* Responsive */
@media (max-width: 860px){
  .mini{grid-template-columns: 1fr; }
  .title{font-size: 30px;}
}
