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

:root {
  --bg: #ffffff;
  --text: #000000;
  --text-muted: #8e8e93;
  --accent: #2aabee;
  --radius: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.content {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: fadeUp 0.6s ease-out both;
}

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

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--text);
}

.bio {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.4;
}

.bio__emoji {
  margin-left: 2px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.cta:hover {
  background: #229ed9;
  transform: scale(1.02);
}

.cta:active {
  transform: scale(0.98);
}

.cta__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta--loading {
  pointer-events: none;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .avatar {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
  }

  .title {
    font-size: 1.5rem;
  }
}
