.bio {
  max-width: 460px;
  margin: 0 auto;
  padding: 52px 20px 48px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
}

/* ── Brand block ── */
.bio-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d1b6b, #0f0f0f);
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
}

.bio-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.bio-tag {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

/* ── Group ── */
.bio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bio-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

/* ── Cards ── */
.bio-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--panel);
  border: 1px solid #222;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s, transform .1s;
  gap: 12px;
}

.bio-card:hover {
  border-color: #3f3f46;
  background: #111;
}

.bio-card:active { transform: scale(0.99); }

.bio-card--pro {
  border-color: #3b1f6a;
  background: linear-gradient(135deg, #0d0d0d 0%, #180d30 100%);
}

.bio-card--pro:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, #111 0%, #1e1040 100%);
}

.bio-card-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bio-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bio-card-desc {
  font-size: 12px;
  color: var(--muted);
}

.bio-pro-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--accent);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.bio-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.bio-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.bio-card-term {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Footer ── */
.bio-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.bio-home {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 20px;
  transition: border-color .15s;
}
.bio-home:hover { border-color: #3f3f46; }

.bio-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}
.bio-link:hover { color: var(--fg); }
