/* =========================================
   HOME HERO - LAYOUT
========================================= */
.home-hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: transparent;
}

/* Spline Viewer - Non-interactive */
.home-hero-spline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transform-origin: center center;
    pointer-events: none;
    /* Prevent all interaction */
    z-index: 1;
}

/* 3D Globe Container - Right side */
.home-hero-globe {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 1600px;
    height: 1600px;
    z-index: 1;
    pointer-events: none;
}

/* Invisible layer to block any mouse events to Spline */
.home-hero-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Above Spline, below content */
    pointer-events: auto;
    /* Catches all events */
    background: transparent;
}

.home-hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 10;
    /* Above blocker (2) */
    max-width: 700px;

    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .home-hero-content {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .home-hero-container {
        min-height: 100vh;
        overflow: visible;
    }

    .home-hero-content {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 100%;
        padding: 0 1rem;
        top: auto;
        bottom: 18%;
    }

    .home-hero-globe {
        position: absolute;
        top: 42%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 560px;
        height: 560px;
        z-index: 1;
        pointer-events: none;
    }
}