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

:root {
    --bg: #0f0f10;
    --surface: #18181a;
    --text: #f4f4f5;
    --text-muted: #a1a1aa;
    --accent: #d4a373;
    --accent-dim: #a17a52;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main {
    width: 100%;
    max-width: 640px;
}

.container {
    text-align: center;
}

header {
    margin-bottom: 3rem;
}

h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

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

.about {
    background-color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.about p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.projects {
    text-align: left;
    margin-bottom: 2.5rem;
}

.projects h2 {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-align: center;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 1.25rem;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.project-card + .project-card {
    margin-top: 20px;
}

.project-card:hover {
    border-color: rgba(212, 163, 115, 0.3);
    transform: translateY(-2px);
}

.project-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 0.875rem;
    background-color: rgba(255, 255, 255, 0.03);
    flex-shrink: 0;
}

.project-card-content h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.project-card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

footer {
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 480px) {
    body {
        padding: 1.5rem;
    }

    .about {
        padding: 1.5rem;
    }
}
