.bio-page {
  --bio-bg: #0f1419;
  --bio-surface: rgba(255, 255, 255, 0.06);
  --bio-surface-hover: rgba(255, 255, 255, 0.11);
  --bio-border: rgba(255, 255, 255, 0.1);
  --bio-text: #f4f4f5;
  --bio-muted: #a1a1aa;
  --bio-accent: #6366f1;
  --bio-accent-soft: rgba(99, 102, 241, 0.2);
  --bio-event: #d97757;
  min-height: 100vh;
  padding: max(24px, env(safe-area-inset-top)) 20px max(32px, env(safe-area-inset-bottom));
  background: var(--bio-bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -20%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(217, 119, 87, 0.12), transparent 50%);
  color: var(--bio-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

.bio-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.bio-profile {
  text-align: center;
  margin-bottom: 28px;
}

.bio-logo {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  object-fit: contain;
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  padding: 10px;
  margin-bottom: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.bio-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.bio-tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bio-muted);
  line-height: 1.45;
}

.bio-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bio-muted);
  margin: 0 0 10px 4px;
}

.bio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.bio-link {
  display: block;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--bio-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  background: var(--bio-surface);
  border: 1px solid var(--bio-border);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.bio-link:hover {
  background: var(--bio-surface-hover);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.bio-link:focus-visible {
  outline: 2px solid var(--bio-accent);
  outline-offset: 2px;
}

button.bio-link {
  appearance: none;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.bio-link--event {
  border-color: rgba(217, 119, 87, 0.35);
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.12), var(--bio-surface));
}

.bio-link--event:hover {
  border-color: rgba(217, 119, 87, 0.5);
}

.bio-link-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bio-link-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bio-link-title--plain {
  font-weight: 600;
}

.bio-link--with-sub {
  padding-top: 12px;
  padding-bottom: 12px;
}

.bio-link-sub--hint {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(161, 161, 170, 0.88);
  line-height: 1.35;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.bio-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(217, 119, 87, 0.25);
  color: #fdba74;
}

.bio-link-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bio-muted);
}

.bio-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.bio-social a {
  color: var(--bio-muted);
  font-size: 1.35rem;
  text-decoration: none;
  padding: 8px;
  border-radius: 10px;
  transition: color 0.15s ease, background 0.15s ease;
}

.bio-social a:hover {
  color: var(--bio-text);
  background: var(--bio-surface);
}

.bio-footer-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.75rem;
  color: var(--bio-muted);
}

.bio-footer-note a {
  color: #a5b4fc;
  text-decoration: none;
}

.bio-footer-note a:hover {
  text-decoration: underline;
}
