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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    background: #fff;
    padding: 20px;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #000;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.logo {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    font-size: 14px;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
}

.about {
    margin-bottom: 60px;
    max-width: 600px;
}

.about-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-description {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    font-weight: 400;
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #666;
}

.whitepapers {
    margin-bottom: 60px;
}

.type-cell {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.type-agentic {
    color: #000;
}

.type-biogenic {
    color: #2d8659;
}

.type-node {
    color: #000;
    font-weight: 700;
}

.type-fermentation {
    color: #f25c05;
}

.type-adaptogenics {
    color: #6b5b51;
}

.projects-table {
    width: 100%;
    border-collapse: collapse;
}

.projects-table th,
.projects-table td {
    text-align: left;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    vertical-align: top;
}

.projects-table th {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #666;
}

.projects-table th:first-child,
.projects-table td:first-child {
    width: 60px;
    padding-right: 15px;
}

.projects-table th:nth-child(2),
.projects-table td:nth-child(2) {
    padding-right: 30px;
    padding-left: 15px;
    min-width: 300px;
}

.projects-table th:nth-child(3),
.projects-table td:nth-child(3) {
    padding-right: 30px;
    width: 120px;
}

.projects-table th:nth-child(4),
.projects-table td:nth-child(4) {
    padding-right: 30px;
    width: 180px;
}

.projects-table th:nth-child(5),
.projects-table td:nth-child(5) {
    width: 100px;
}

.project-row:hover td {
    background: #fafafa;
}

.project-thumb {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-thumb.round {
    border-radius: 50%;
}

.thumb-initials {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Courier New', Courier, monospace;
}

.project-name {
    font-weight: 500;
}

.project-name a {
    font-weight: 500;
}

.project-desc {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
    max-width: 280px;
}

.project-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.action-link:hover {
    color: #000;
}

.action-icon {
    font-size: 12px;
}

.github-link:hover {
    color: #000;
}

.status {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 0;
    font-family: 'Courier New', Courier, monospace;
}

.status.research {
    background: #2d8659;
    color: #fff;
}

.status.in-progress {
    background: #000;
    color: #fff;
}

.footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.footer a {
    font-size: 12px;
}

@media (max-width: 900px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }

    .projects-table {
        font-size: 13px;
    }

    .projects-table th:nth-child(3),
    .projects-table td:nth-child(3),
    .projects-table th:nth-child(4),
    .projects-table td:nth-child(4) {
        display: none;
    }

    .project-desc {
        display: none;
    }
}
