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

body {
    font-family: Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    padding: 60px 20px;
    max-width: 720px;
    margin: 0 auto;
}

h1 {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    color: #000000;
}

.links {
    font-size: 12px;
    margin-bottom: 50px;
    color: #666;
    letter-spacing: 0.5px;
}

.links a {
    margin-right: 20px;
    border-bottom: none;
    color: #666;
}

.links a:hover {
    color: #f44714;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #999;
    font-weight: 500;
}

.project {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e0e0e0;
}

.project:last-child {
    border-bottom: none;
}

.project-name {
    font-weight: 500;
    margin-bottom: 12px;
    color: #000000;
    font-size: 16px;
    letter-spacing: 0.3px;
}

h2,
h3 {
    font-weight: inherit;
    font-size: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

a:hover {
    border-bottom: 1px solid #f44714;
    color: #f44714;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f44714;
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #f44714;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.meta {
    font-size: 11px;
    color: #999;
    margin-top: 80px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    letter-spacing: 0.5px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 25px;
    max-width: 550px;
    width: 90%;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    color: #999;
    line-height: 1;
}

.close-btn:hover {
    color: #f44714;
}

.pgp-key {
    font-family: "Courier New", monospace;
    font-size: 12px;
    font-weight: 500;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 12px;
    white-space: pre;
    overflow-x: auto;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.copy-btn {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 12px;
    padding: 8px 16px;
    background: #f44714;
    color: #ffffff;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.copy-btn:hover {
    background: #d93d10;
}

@media (max-width: 600px) {
    body {
        padding: 40px 15px;
    }

    h1 {
        font-size: 20px;
    }

    .modal-content {
        padding: 25px;
    }

    .pgp-key {
        font-size: 14px;
        padding: 15px;
    }
}
