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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  font-family: 'Inter', -apple-system, sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Landing layout */
.landing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Profile card row */
.card {
  display: flex;
  align-items: center;
  gap: 28px;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.info h1 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #ffffff;
}

.info .subtitle {
  font-size: 1.1rem;
  font-weight: 200;
  color: #ffffff;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* Social icons row — aligned with text, offset by avatar + gap */
.socials {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 116px;
}

.socials a {
  color: #ffffff;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: #888;
}

.socials a svg {
  width: 100%;
  height: 100%;
}

/* Non-desktop */
@media (max-width: 1024px) {
  .landing {
    align-items: center;
  }

  .card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .info h1 {
    font-size: 1.4rem;
  }

  .socials {
    margin-left: 0;
    justify-content: center;
  }
}
