* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor to use our custom one */
}

body {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind everything */
    pointer-events: none; /* Let clicks pass through to cards */
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    position: fixed;
    pointer-events: none; /* Crucial: stops cursor from blocking clicks */
    z-index: 9999;
    transition: transform 0.1s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10; /* Above the canvas */
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    font-weight: 900;
    margin: 10vh 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.card {
    border: 1px solid #000;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.card:hover {
    background: #000;
    color: #fff;
}

.status-text {
    margin-top: 1rem;
    font-weight: bold;
    font-family: monospace;
}

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