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

body {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    color: #282828;
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

header {
    margin-bottom: 80px;
}

h1 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.intro {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.7;
    color: #888;
    max-width: 560px;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #888;
    margin-bottom: 40px;
}

.project {
    padding: 32px 0;
    border-top: 1px solid #eee;
}

.project:last-child {
    border-bottom: 1px solid #eee;
}

.project h3 {
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.project h3 a {
    color: #282828;
    text-decoration: none;
}

.project h3 a:hover {
    color: #888;
}

.project p {
    font-weight: 300;
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
}

.founder {
    margin-bottom: 3rem;
    text-align: center;
}

.founder-portrait {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.founder-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.founder-name h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.founder-logos {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.founder-logos img {
    width: 14px;
    height: 14px;
    opacity: 0.45;
    border-radius: 2px;
}

.founder p {
    font-weight: 300;
    color: #555;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
    font-size: 0.95rem;
}

section + section {
    margin-top: 60px;
}

footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

footer a {
    color: #282828;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
}

footer a:hover {
    color: #888;
}

footer p {
    color: #888;
    font-size: 0.8rem;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .container {
        padding: 48px 20px 40px;
    }

    header {
        margin-bottom: 56px;
    }

    h1 {
        font-size: 1.625rem;
    }

    .intro {
        font-size: 1.1rem;
    }

    .project {
        padding: 24px 0;
    }

    footer {
        margin-top: 56px;
    }
}
