*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --border: #1f1f1f;
    --text: #ededed;
    --text-muted: #888888;
    --text-subtle: #888888;
    --accent: #ededed;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --mono: "SF Mono", "Fira Code", "Cascadia Code", Menlo, monospace;
}

html {
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Layout */
.container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Hero */
.hero {
    padding: 80px 0 60px;
    height: auto;
    background: transparent;
    display: block;
    text-align: left;
}

.hero h1 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 8px;
    color: var(--text);
}

.hero p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Section headings */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 16px;
}

/* Bio */
.bio {
    padding: 0 0 48px;
}

.bio p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.bio p:last-child {
    margin-bottom: 0;
}

/* Projects */
.projects {
    padding: 0 0 60px;
    display: block;
    height: auto;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
}

.project {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    color: var(--text);
    transition: color 0.1s ease;
}

.project:hover {
    color: var(--text-muted);
}

.project-name {
    font-size: 0.9rem;
    font-weight: 400;
}

.project-desc {
    font-size: 0.8rem;
    color: var(--text-subtle);
    margin-left: 16px;
}

/* Footer */
footer {
    height: auto;
    margin-top: auto;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: transparent;
}

footer p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-subtle);
    text-align: left;
}

/* Links */
a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: var(--text-subtle);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.15s ease;
}

a:hover {
    text-decoration-color: var(--text);
}

/* Status badge colors */
.status-badge.status-badge--live {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.3);
}

.status-badge.status-badge--in-progress {
    color: #fb923c;
    border-color: rgba(251, 146, 60, 0.3);
}

@media (max-width: 600px) {
    .hero {
        padding: 48px 0 40px;
    }


}
