* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  background: #0a0a0a;
  color: #dcdcdc;
  font-family: "Manrope";
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 80px 24px;
  opacity: 0;
  animation: pageIn 0.6s ease forwards;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.page {
  width: 100%;
  max-width: 10in;
}
.identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
}
.avatar {
  width: 1in;
  height: 1in;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  margin-bottom: 24px;
  margin-right: 12px;
}
h1 {
  font-size: 22px;
  font-weight: 400;
  color: #f2f2f2;
  margin: 0;
  display: inline;
}
.pronounce {
  font-size: 15px;
  font-weight: 400;
  color: #5c5c5c;
  margin-left: 8px;
}
.tagline {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  margin-bottom: 64px;
}
.tabs {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
}
.tab-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: #f2f2f2;
  border-radius: 7px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.tab {
  position: relative;
  z-index: 1;
  flex: 1;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 400;
  color: #8a8a8a;
  cursor: pointer;
  transition: color 0.3s ease;
}
.tab.active {
  color: #0a0a0a;
}
.panel {
  display: none;
  font-size: 14px;
  line-height: 1.75;
  color: #a8a8a8;
  min-height: 140px;
}
.panel.active {
  display: block;
  animation: panelIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel b {
  color: #dcdcdc;
  font-weight: 400;
  font-style: italic;
}
a {
  color: #c4c4c4;
  text-decoration: none;
  font-style: italic;
  transition: color 0.25s ease;
}
a:hover {
  color: #f2f2f2;
}
.foot {
  font-size: 12px;
  font-weight: 400;
  color: #3a3a3a;
  margin-top: 40px;
}
