:root {
    --accent: #ff5a1f;
    --text: #111;
    --muted: #666;
    --border: #ddd;
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;
}

/* ---------------- TEXT NODES ---------------- */
normal {
    display: inline;
    white-space: normal;
}

/* ---------------- LAYOUT ---------------- */

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 96px 24px;
    text-align: center;
}

.section {
    margin-bottom: 64px;
}

/* ---------------- HEADER ---------------- */

.logo {
    width: 96px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
}

.title normal {
    font-size: 28px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: var(--text);
}

.subtitle normal {
    font-size: 15px;
    color: var(--muted);
    display: block;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* ---------------- BUTTONS ---------------- */

.button {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: none;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.button.primary {
    border-color: var(--accent);
    color: var(--accent);
}

.button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.button.link {
    border: none;
    color: var(--accent);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
}

.button.link:hover {
    text-decoration: underline;
}

/* ---------------- CTA BUTTONS ---------------- */

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

/* ---------------- SECTION TITLES ---------------- */

.section-title normal {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 32px;
    color: var(--text);
}

/* ---------------- PROJECT CARDS ---------------- */

.projects {
    text-align: left;
}

.project-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s ease;
}

.project-card:hover {
    border-color: var(--accent);
}

.project-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.project-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-title normal {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    display: block;
    color: var(--text);
}

.project-desc normal {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 12px;
    display: block;
    line-height: 1.5;
}

.project-links {
    display: flex;
    gap: 8px;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 640px) {
    .container {
        padding: 64px 20px;
    }

    .logo {
        width: 72px;
        margin-bottom: 24px;
    }

    .title normal {
        font-size: 24px;
    }

    .subtitle normal {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .project-card {
        flex-direction: column;
        gap: 12px;
    }

    .project-image {
        width: 100%;
        height: 120px;
    }

    .project-links {
        flex-wrap: wrap;
    }
}