/* ================================
   HOME BASE
================================ */

.home-page {
    background-color: var(--bg-primary);
    color: #f8fcfc;
    font-family: var(--font-code);
}

.home-shell {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .home-shell {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

/* ================================
   LAYOUT
================================ */

.content-wrap {
    position: relative;
    z-index: 10;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, #111 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -1;
}

#canvas-container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ================================
   HERO
================================ */

.hero-title {
    font-family: var(--font-primary);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.85;
}

/* ================================
   PRODUCT CARD
================================ */

.product-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    border-top-color: var(--accent);
    background: rgba(168, 85, 247, 0.02);
}

/* ================================
   UTILITIES
================================ */

.status-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #000;
    border-top: 1px solid #1f1f1f;
    color: #444;
    font-size: 10px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    z-index: 100;
}