:root {
    --primary-color: #000;
    --secondary-color: #666;
    --background-color: #fff;
    --border-color: #eee;
    --hover-color: #f5f5f5;
    --text-color: #333;

    --accent-gold: #d4a017;
    --accent-sky: #38bdf8;
    --accent-teal: #2dd4bf;
    --accent-orange: #f97316;
    --accent-purple: #a78bfa;
    --accent-red: #ef4444;
    --accent-pink: #f472b6;
    --accent-lime: #84cc16;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'BerkeleyMono', 'Berkeley Mono', ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
    line-height: 1.5;
    color: var(--primary-color);
    background-color: var(--background-color);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header */
.site-header {
    padding: 3rem 0 1rem;
}

.site-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-links img:hover {
    opacity: 1;
}

/* Content */
.content {
    padding: 0 2rem 2rem;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Table (shared by Press & Investments) */
.press-table {
    width: 100%;
    border-collapse: collapse;
}

.press-table tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.15s;
}

.press-table tr:last-child {
    border-bottom: none;
}

.press-table tr:hover {
    background-color: var(--hover-color);
}

.press-table tr[data-href] {
    cursor: pointer;
}

.press-table td {
    padding: 0.65rem 1rem 0.65rem 0;
    vertical-align: baseline;
    font-size: 0.9rem;
}

.press-pub {
    white-space: nowrap;
    font-weight: 600;
    width: 1%;
}

.press-date {
    color: var(--secondary-color);
    white-space: nowrap;
    width: 1%;
    padding-right: 1.5rem;
}

.press-title {
    color: var(--primary-color);
}

.press-desc {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

/* Bio */
#bio p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

#bio a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 600px) {
    .site-header {
        padding: 2rem 0 0.75rem;
    }

    .content {
        padding: 0 1rem 1rem;
    }

    .press-table td {
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem 0.5rem 0;
    }

    .press-pub {
        font-size: 0.75rem;
    }

    .press-desc {
        display: none;
    }
}

@media (max-width: 400px) {
    .press-table,
    .press-table tbody,
    .press-table tr,
    .press-table td {
        display: block;
    }

    .press-table tr {
        padding: 0.75rem 0;
    }

    .press-table td {
        padding: 0.1rem 0;
    }

    .press-pub {
        width: auto;
    }

    .press-date {
        width: auto;
        font-size: 0.75rem;
    }
}
