:root {
    --bg-color: #ffffff;
    --text-main: #000000;
    --text-muted: #666666;
    --accent: #00b4d8;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
}

.landing-container {
    width: 100%;
    text-align: center;
}

.label-header {
    margin-bottom: 4rem;
}

.label-header h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 400;
}

.projects-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.project-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 450px;
}

.project-card:hover {
    transform: translateY(-8px);
}

.image-wrapper {
    aspect-ratio: 1/1;
    background: #f0f0f0;
    border: 1px solid #000;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.url {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
    transition: all 0.2s ease;
}

.project-card:hover .url {
    color: var(--accent);
}

.landing-footer {
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.landing-footer a {
    color: var(--text-muted);
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.landing-footer a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .projects-grid {
        gap: 3rem;
    }
    
    .label-header {
        margin-bottom: 3rem;
    }
    
    .label-header h1 {
        font-size: 3rem;
    }
}
