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

body {
    background: #fff;
    color: #444;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    width: fit-content;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 500;
    color: #111;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 20px;
    margin-left: -3px;
}

.role {
    font-size: 1rem;
    color: #444;
    margin-bottom: 16px;
}

.role a {
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #ccc;
    transition: border-color 0.2s ease;
}

.role a:hover {
    border-color: #111;
}

.bio {
    font-size: 0.938rem;
    color: #666;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 16px;
}

.location {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 20px;
}

.links {
    display: flex;
    gap: 24px;
}

.links a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #111;
}

@media (max-width: 480px) {
    .hero {
        padding-bottom: 10vh;
    }

    .links {
        gap: 20px;
    }
}
