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

:root {
    --primary: #2563eb;
    --surface: #ffffff;
    --bg: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --teal: #0d9488;
    --blue: #3b82f6;
}

body {
    font-family: system-ui, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.logo {
    font-weight: 600;
    font-size: 15px;
    color: var(--teal);
    letter-spacing: 0.5px;
}

.hero {
    background: linear-gradient(145deg, #e2fbea 0%, #ffffff 50%, #cfdef1 100%);
    padding: 100px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-family: monospace;
}

.hero h1 {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--text);
}

.hero p {
    color: var(--teal);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

.projects {
    padding: 60px 0;
}

.projects h2 {
    font-weight: 300;
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 24px;
}

.card.done {
    border-left: 4px solid #10b981;
}

.card.progress {
    border-left: 4px solid #f59e0b;
}

.card.next {
    border-left: 4px solid var(--primary);
}

.status {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.done .status {
    background: #d1fae5;
    color: #065f46;
}

.progress .status {
    background: #fef3c7;
    color: #92400e;
}

.next .status {
    background: #dbeafe;
    color: #1e40af;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
    font-size: 13px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 500;
}

.contact {
    background: var(--surface);
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.contact h2 {
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-subtext {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 14px;
}

.email-contact {
    display: flex;
    justify-content: center;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-link:hover {
    color: var(--primary);
}

.social-link:hover .email-address {
    color: var(--primary);
}

.email-address {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

.footer p {
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .projects {
        padding: 40px 0;
    }

    .contact {
        padding: 40px 0;
    }

    .contact h2 {
        font-size: 24px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-image {
        height: 180px;
    }
}
