.project-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.project-nav {
    padding: 1.5rem 0;
}

.back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.back:hover {
    color: var(--text);
}

.hero {
    text-align: center;
    padding: 6rem 0 5rem;
}

.hero-lockup {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    margin-bottom: 0.75rem;
}

.hero-icon {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    flex-shrink: 0;
    align-self: center;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero-tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.statement {
    padding: 4rem 0 6rem;
    display: flex;
    justify-content: center;
}

.statement-content {
    max-width: 720px;
    text-align: center;
}

.lead {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    line-height: 1.6;
    color: var(--text);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.cta {
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.highlights {
    padding: 0 0 6rem;
}

.bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 980px;
    margin: 0 auto;
}

.bento-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 260px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.bento-card-large {
    grid-column: span 2;
    min-height: 320px;
}

.bento-card-wide {
    grid-column: span 2;
    min-height: 240px;
}

.bento-text {
    max-width: 560px;
}

.bento-card-large .bento-text {
    max-width: 640px;
}

.bento-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.bento-text p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.project-footer {
    text-align: center;
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.status-line {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(161, 161, 170, 0.7);
}

@media (max-width: 768px) {
    .project-page {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-lockup {
        gap: 0.5em;
    }

    .statement {
        padding: 3rem 0 4rem;
    }

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

    .bento-card,
    .bento-card-large,
    .bento-card-wide {
        grid-column: span 1;
        min-height: auto;
        padding: 2rem;
    }

    .bento-text h2 {
        font-size: 1.375rem;
    }

    .bento-text p {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bento-card {
        transition: none;
    }

    .bento-card:hover {
        transform: none;
    }
}
