.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
}

.hero-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 2rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-name {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-name span {
  color: #22279e36;
  -webkit-text-stroke: 1px rgb(255, 255, 255, 0.39);
}

.hero-role {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-role .highlight {
  color: var(--accent);
}

.hero-bio {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: none;
}

.btn-primary {
  background: var(--accent);
  color: #080c10;
  font-weight: 700;
}

.btn-primary:hover {
  background: #00ccff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 170, 255, 0.3);
}

.btn-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .hero-name {
    font-size: 48px;
  }
}

.hero-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-hover);
  margin-bottom: 2rem;
  transition: border-color 0.2s;
}

.hero-avatar:hover {
  border-color: var(--accent);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}