body.page-public {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.card {
    width: 100%;
    max-width: 660px;
    background: rgba(21, 21, 29, .82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px 32px;
    text-align: center;
    animation: card-in .6s ease-out;
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 6px rgba(187, 134, 252, .1);
}

.profile-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    margin: 18px 0 6px;
}

.verified {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.tagline {
    color: var(--text-muted);
    margin: 0 0 6px;
}

.badge-job {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0 22px;
    padding: 7px 16px;
    border: 1px solid rgba(255, 226, 122, .28);
    border-radius: 999px;
    background: rgba(184, 134, 11, .1);
    font-size: .95rem;
}

.clock {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, .3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: .85rem;
    letter-spacing: .02em;
    min-height: 2.4em;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 34px 0 18px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--text-muted);
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent-strong), var(--accent));
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.link:hover,
.link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -10px rgba(187, 134, 252, .55);
    border-color: rgba(255, 255, 255, .3);
    text-decoration: none;
}

.link:active {
    transform: translateY(-1px);
}

.link--muted {
    background: var(--surface-raised);
    border-color: var(--border);
}

.link--muted:hover,
.link--muted:focus-visible {
    background: var(--surface-hover);
    box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .9);
}

.link .link-text {
    flex: 1;
}

.link .icon-external {
    width: 1em;
    height: 1em;
    opacity: .55;
}

.legal-text {
    text-align: left;
    color: var(--text-muted);
}

.legal-text h1 {
    text-align: left;
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    padding-bottom: 14px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--accent);
}

.legal-text h2 {
    font-size: 1.15rem;
    margin: 30px 0 10px;
}

.legal-text a {
    text-decoration: underline;
}

.site-footer {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: .82rem;
    line-height: 1.8;
}

@media (max-width: 520px) {
    .card {
        padding: 28px 20px;
    }

    .profile-image {
        width: 104px;
        height: 104px;
    }

    .link {
        padding: 15px 16px;
        font-size: 1rem;
    }
}
