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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #0A0A0A;
    line-height: 1.5;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(212, 212, 212, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 212, 212, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

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

/* Header */
.header {
    position: relative;
    z-index: 1;
    padding: 48px 0;
    border-bottom: 1px solid #D4D4D4;
    background-color: #FFFFFF;
}

.header-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.site-title {
    grid-column: 1 / 13;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    line-height: 24px;
}

.site-subtitle {
    grid-column: 1 / 13;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: #A3A3A3;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 12px;
}

/* Statement Block */
.statement-block {
    position: relative;
    z-index: 1;
    padding: 96px 0;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.statement {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: #0A0A0A;
    max-width: 900px;
    letter-spacing: -1px;
}

/* Showcase Grid */
.showcase-grid {
    position: relative;
    z-index: 1;
    padding: 96px 0;
    background-color: #FFFFFF;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.grid-cell {
    aspect-ratio: 1;
    opacity: 0;
    animation: revealCell 0.6s ease-out forwards;
    animation-delay: calc(var(--cell-index) * 0.1s);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-cell:hover {
    transform: scale(1.02);
}

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

.cell-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 24px;
    border: 1px solid #D4D4D4;
    background-color: #F5F5F5;
    transition: all 0.3s ease;
}

.grid-cell:hover .cell-content {
    background-color: #E5E5E5;
    border-color: #0A0A0A;
}

.cell-image {
    flex-grow: 1;
    margin-bottom: 12px;
    border: 1px solid #D4D4D4;
    aspect-ratio: 1;
}

.cell-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #404040;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    padding: 48px 0;
    border-top: 1px solid #D4D4D4;
    background-color: #FFFFFF;
}

.footer-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #A3A3A3;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .statement {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .header,
    .statement-block,
    .showcase-grid,
    .footer {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    .statement {
        font-size: 1.5rem;
    }
}
