/* Home Page / Landing (Split Layout) */

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Left Column: Content */
.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
}

.home-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 64px;
    display: inline-block;
}

.home-title {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.home-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 480px;
}

.home-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 64px;
}

.home-footer-links {
    font-size: 13px;
    color: var(--color-text-dim);
    display: flex;
    gap: 24px;
}

.home-footer-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.home-footer-links a:hover {
    color: var(--color-text);
}


/* Right Column: Visual (Mock UI) */
.home-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.mock-feed {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* Slight tilt for presentation */
    transform: rotateY(-5deg) rotateX(2deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.home-visual:hover .mock-feed {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Mock Items */
.mock-pcard {
    pointer-events: none;
    /* purely visual */
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0.9;
}

.mock-pcard.highlight {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}


/* Responsive */
@media (max-width: 960px) {
    .home-container {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 60px;
        display: flex;
        flex-direction: column;
    }

    .home-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .home-title {
        font-size: 48px;
    }

    .home-logo {
        margin-bottom: 40px;
    }

    .home-visual {
        width: 100%;
    }

    .mock-feed {
        transform: none;
        /* No 3D on mobile */
        max-width: 100%;
    }
}