:root {
    --bg: #1e1e1e;
    --bg-card: #141414;
    --text: #e0e0e0;
    --text-muted: #888;
    --accent: #f0a500;
    --border: #222;
    --radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero */
.hero {
    padding: 8rem 0 2rem;
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: block;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60px;
    height: 2px;
    background: var(--accent);
}

.role {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Sections */
section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* About */
.about p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.values {
    padding-top: 1rem;
}

.values p:first-of-type {
    font-size: 1.15rem;
    border-left: 3px solid var(--accent);
    padding-left: 1rem;
    color: var(--text);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags span {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Projects */
.projects-intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.currently {
    color: var(--accent);
    font-size: 0.85rem;
    margin-top: 1rem;
    font-style: italic;
}

.project-grid {
    display: grid;
    gap: 1rem;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.project-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.project-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.project-tech {
    font-size: 0.75rem;
    color: var(--accent);
}

.project-card--wip {
    opacity: 0.6;
    cursor: default;
}

.project-card--wip:hover {
    border-color: var(--border);
    transform: none;
}

.badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Status dots */
.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.dot--live {
    background: #22c55e;
}

.dot--wip {
    background: var(--accent);
}

/* Contact */
.contact-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    gap: 2rem;
}

.contact-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.contact-links a:hover {
    color: var(--accent);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .contact-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
