*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #999;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
}

body {
  display: flex;
  justify-content: center;
  padding: 8rem 2rem 6rem;
}

main {
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.vu-meter {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 24px;
  margin-top: 1.5rem;
}

.vu-bar {
  width: 4px;
  background: #333;
  border-radius: 1px;
  animation: vu-bounce 1.2s infinite ease-in-out;
}

.vu-bar:nth-child(1) { animation-delay: 0s; }
.vu-bar:nth-child(2) { animation-delay: 0.1s; }
.vu-bar:nth-child(3) { animation-delay: 0.2s; }
.vu-bar:nth-child(4) { animation-delay: 0.3s; }
.vu-bar:nth-child(5) { animation-delay: 0.4s; }
.vu-bar:nth-child(6) { animation-delay: 0.5s; }
.vu-bar:nth-child(7) { animation-delay: 0.6s; }
.vu-bar:nth-child(8) { animation-delay: 0.7s; }
.vu-bar:nth-child(9) { animation-delay: 0.8s; }
.vu-bar:nth-child(10) { animation-delay: 0.9s; }
.vu-bar:nth-child(11) { animation-delay: 1.0s; }
.vu-bar:nth-child(12) { animation-delay: 1.1s; }

@keyframes vu-bounce {
  0%, 100% { height: 4px; background: #333; }
  25% { height: 12px; background: #4a7a4a; }
  50% { height: 20px; background: #8a8a4a; }
  75% { height: 16px; background: #4a7a4a; }
}

header {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.name {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #eee;
  letter-spacing: -0.01em;
}

.subtitle {
  font-size: 0.9rem;
  color: #777;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.about p {
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: #bbb;
}

.label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

li {
  font-size: 0.9rem;
  color: #999;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.links a {
  font-size: 0.9rem;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s;
}

.links a:hover {
  color: #eee;
}

.links .sep {
  color: #333;
  font-size: 0.7rem;
}

.email {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.email:hover {
  color: #999;
}
