/* ==========================================
   ABOUT SECTION - SPLIT LAYER GEOMETRY
   ========================================== */

#about {
    background-color: #010108; 
z-index: 1;

}
#about .content-container {
    text-align: left;
    align-items: flex-start; 
}

.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    align-items: center;
    pointer-events: none;
}

/* --- LEFT SIDE: 3D WEBGL BOX HOLDER --- */
.about-left-viewport {
    width: 100%;
    height: 60vh; 
}

#about #about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


#about .content-container {
    position: absolute;
    z-index: 2; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.about-left-viewport {
    width: 100%;
    height: 60vh; 
}

/* --- RIGHT SIDE: CONTENT INFRASTRUCTURE --- */
.about-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
    pointer-events: auto;
}

.about-title {
    color: #ffffff;
    font-family: "oscine", sans-serif;
    font-size: 3.5vw;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: -0.01em;
    line-height: 1.0;
    margin: 0 0 32px 0;
}

.about-body-block p {
    color: #ffffff;
    font-family: "oscine", sans-serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.15vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    opacity: 0.8;
}

.about-lead {
    margin-bottom: 24px !important;
}

/* --- ACTION RUNWAY: LINKS & PROMPTS --- */
.about-cta-matrix {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    font-family: "oscine", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1rem);
    text-transform: lowercase;
}

.cta-link {
    color: #00f0ff; /* Pulling your signature neon cyan hue for key actions */
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.cta-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-link:hover .arrow {
    transform: translateX(4px);
}

.cta-divider {
    color: #ffffff;
    opacity: 0.4;
}

.cta-scroll-prompt {
    color: #ffffff;
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.cta-scroll-prompt:hover {
    opacity: 0.95;
}

/* ==========================================
   RESPONSIVE SCALING (MOBILE ADAPTATIONS)
   ========================================== */
@media (max-width: 768px) {
    .about-split-grid {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        overflow-y: auto;
    }

    .about-left-viewport {
        height: 35vh;
        padding-right: 0;
        margin-bottom: 30px;
        order: 1; /* Pushes the object above text on mobile layout sweeps */
    }

    .about-right-content {
        padding-left: 0;
        order: 2;
    }

    .about-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .about-cta-matrix {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 30px;
    }

    .cta-divider {
        display: none; /* Hide standard text connector for clean mobile stacking */
    }
}