.hero {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: var(--space-6);
  width: 100%;
  height: min-content;
  padding-top: var(--space-16);
  padding-bottom: var(--space-12);
  position: relative;
  overflow: visible;
}

.hero__socials {
  display: flex;
  align-items: center;
  align-self: flex-end;
  gap: 0;
  margin-top: var(--space-2);
}

.hero__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  color: var(--text-tertiary);
  transition: color var(--duration-fast) ease;
  text-decoration: none;
}

.hero__social-link svg {
  width: 26px;
  height: 26px;
}

.hero__social-link:hover {
  color: var(--text-primary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.hero__title.reveal {
  opacity: 1;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 480px;
}

.hero__identity {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  align-self: flex-start;
}

.hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__identity-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__identity-name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero__identity-role {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--space-16) + var(--space-5));
    padding-bottom: var(--space-8);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }
}
