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

:root {
    --bg: #0c0c0c;
    --text: #ebebeb;
    --text-dim: #9a9a9a;
    --accent: #f0a500;
    --mono: 'IBM Plex Mono', monospace;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--mono);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 540px;
    width: 100%;
}

/* Header */
header {
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Intro */
.intro {
    margin-bottom: 2.5rem;
}

.intro p {
    color: var(--text-dim);
    margin-bottom: 0.125rem;
}

.intro p:last-child {
    margin-bottom: 0;
}

/* Sections */
section h2 {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

/* Projects */
.projects {
    margin-bottom: 2.5rem;
}

.project-list {
    display: flex;
    flex-direction: column;
}

.project {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem 0;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.project:first-child {
    padding-top: 0;
}

.project:hover .project-name {
    color: var(--text);
}

.project:hover .project-arrow {
    opacity: 1;
    color: var(--accent);
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-name {
    font-weight: 500;
    color: var(--accent);
    transition: color 0.2s ease;
}

.project-desc {
    color: var(--text-dim);
    font-size: 0.8125rem;
    line-height: 1.5;
}

.project-arrow {
    margin-left: auto;
    color: var(--text-dim);
    opacity: 0.6;
    transition: all 0.2s ease;
}

/* Connect */
.connect {
    margin-bottom: 3rem;
}

.links {
    display: flex;
    gap: 1.5rem;
}

.links a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.links a:hover {
    color: var(--text);
}

/* Footer */
footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer p {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 480px) {
    body {
        padding: 2rem 1.25rem;
        align-items: flex-start;
        padding-top: 3rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    header {
        margin-bottom: 1.25rem;
    }

    .intro, .projects {
        margin-bottom: 2rem;
    }

    .connect {
        margin-bottom: 2rem;
    }

    .links {
        flex-direction: column;
        gap: 0.5rem;
    }
}
