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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #1c1917;
    color: #d6d3d1;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 80px 24px;
}

.content {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
    padding-left: 40px;
}

/* Tagline row */
.tagline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #44403c;
    background-color: #292524;
    font-size: 0.8rem;
    font-weight: 500;
    color: #d6d3d1;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.roles {
    font-size: 17px;
    color: #a39d94;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: lowercase;
}

/* Name */
h1 {
    font-family: 'Sentient', serif;
    font-size: clamp(3rem, 6vw, 76px);
    font-weight: 500;
    color: #f4efe6;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    white-space: nowrap;
}

/* Bio */
.bio {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #a8a29e;
    max-width: 780px;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid #292524;
    margin: 40px 0;
    max-width: 780px;
}

/* Link buttons */
.links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #44403c;
    border-radius: 999px;
    color: #d6d3d1;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}

.link-btn:hover {
    border-color: #78716c;
    color: #fafaf9;
}

.link-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding: 60px 20px;
        align-items: flex-start;
        padding-top: 80px;
    }

    .content {
        padding-left: 0;
    }

    h1 {
        white-space: normal;
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .roles {
        font-size: 15px;
    }

    .bio {
        font-size: 1rem;
    }
}
