:root{
  --bg-dark: rgba(0,0,0,.55);
  --card: rgba(255,255,255,.10);
  --card-border: rgba(255,255,255,.18);
  --row: #00000000;
  --row-border: rgba(255,255,255,.18);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 24px;
  --radiusRow: 10px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html, body { height:100%; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #05070f;
  overflow-x: hidden;
}

/* Fondo */
#bg{
  position: fixed;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay{
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 70% 15%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 600px at 20% 80%, rgba(0,195,255,.12), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.65));
}

/* Layout */
.wrap{
  min-height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 18px;
}

.card{
  width: min(820px, 96vw);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px;
}

/* Header */
.top{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap: 10px;
  margin-bottom: 12px;
}

.logo{
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.35);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.name{
  font-size: 24px;
  line-height: 1.15;
}

.tagline{
  color: var(--muted);
  font-size: 14px;
}

.bio{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align:center;
  margin: 6px 0 12px;
}

/* Redes */
.social{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.social a{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color: var(--text);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.social a:hover{
  transform: translateY(-2px);
  background: rgba(0,195,255,.20);
  border-color: rgba(0,195,255,.45);
}

.divider{
  height: 1px;
  background: rgba(255,255,255,.14);
  margin: 12px 0 14px;
}

/* Filas tipo banner */
.rows{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.row{
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radiusRow);
  background: var(--row);
  border: 1px solid var(--row-border);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-decoration:none;
  color: var(--text);
  transition: transform .15s ease, filter .15s ease, border-color .15s ease;
}

.row:hover{
  transform: translateY(-2px);
  filter: brightness(1.05);
  border-color: rgba(255,255,255,.30);
}

.rowIcon{
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  flex: 0 0 auto;
}

.rowIcon img{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.rowText{
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.rowTitle{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
}

.rowSub{
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.35;
}

.rowChevron{
  opacity: .9;
  flex: 0 0 auto;
}

.footer{
  margin-top: 16px;
  text-align:center;
  color: rgba(255,255,255,.60);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 520px){
  .card{ padding: 16px; }
  .row{ padding: 14px; }
  .rowTitle{ font-size: 16px; }
  .rowSub{ font-size: 13px; }
  .rowIcon{ width: 54px; height: 54px; }
  .rowIcon img{ width: 40px; height: 40px; }
}