/* Technical but friendly - light mode with monospace */

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

body {
    background-color: #fafafa;
    color: #2d2d2d;
    font-family: 'SF Mono', 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    line-height: 1.75;
    max-width: 800px;
    margin: 0 auto;
    padding: 72px 24px;
    font-size: 14px;
}

/* Profile Image */
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px auto;
}

/* Name */
h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

/* Intro paragraph */
p {
    margin-bottom: 16px;
    color: #444;
}

/* Horizontal Rule */
hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 32px 0;
}

/* Section Headers */
h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    text-transform: lowercase;
}

h3::before {
    content: "# ";
    color: #999;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

a:hover {
    border-bottom-color: #2563eb;
}

/* Lists */
ul {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #444;
}

li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #aaa;
}

/* Footer links */
p:last-of-type a {
    font-weight: 500;
}

/* Colophon */
.colophon {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #999;
}

.colophon a {
    color: #888;
}

/* Strong text */
strong {
    font-weight: 600;
    color: #2d2d2d;
}

/* Em text */
em {
    font-style: normal;
    color: #666;
}

/* Code inline */
code {
    background: #f4f4f4;
    padding: 2px 5px;
    border-radius: 3px;
    font-size: 13px;
}

/* Selection */
::selection {
    background: #2563eb;
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 48px 20px;
        font-size: 13px;
    }

    h1 {
        font-size: 20px;
    }
}