.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:24px;
}

.card{
  width:100%;
  max-width:var(--max);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.header{
  display:flex;
  gap:16px;
  align-items:center;
  margin-bottom: 14px;
}

.logo{
  width:72px;
  height:72px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  object-fit: cover;
}

.name{
  margin:0;
  font-size: 22px;
  letter-spacing: .2px;
}

.bio{
  margin:6px 0 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 14px;
}

.links{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin: 16px 0 18px;
}

.link{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
  font-weight: 600;
}

.link:hover{
  transform: translateY(-1px);
  border-color: rgba(124,58,237,.55);
  background: rgba(124,58,237,.12);
}

.footer{
  display:flex;
  justify-content:center;
}

.powered{
  color: var(--muted);
  font-size: 12px;
}

.poweredLink{
  color: var(--text);
  border-bottom: 1px dashed rgba(255,255,255,.25);
}
