body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 20px 80px;
}

.page {
    display: flex;
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    align-items: center;
}

.hero {
    margin-bottom: 52px;
    text-align: center;
}

.avatar-wrap {
    display: inline-block;
    margin-bottom: 28px;
}

.hero-avatar {
    display: block;
    width: 120px;
    height: 120px;
    border: 2px solid var(--border);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-name {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.hero-pill {
    padding: 5px 13px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-desc {
    color: var(--muted);
    font-size: 0.95rem;
}

.apps {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 480px) {
    body {
        padding: 52px 20px 64px;
    }

    .hero-name {
        font-size: 1.8rem;
    }

    .hero-avatar {
        width: 100px;
        height: 100px;
    }
}
