/**
 * ALGA ARENA — Hero Redesign Styles
 * Editorial typography, asymmetric alignments, and spatial metrics
 */

.landing-hero {
    height: 100svh;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    background: var(--arena-navy);
    position: relative;
    padding: 0 var(--sp-12);
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    margin-inline-start: 0;
    padding: 0;
    max-width: 100%;
}

.hero-tag {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--arena-broadcast-blue);
    font-size: 0.8125rem;
    font-weight: 700;
}

.hero-headline {
    font-size: clamp(3.5rem, 6.5vw, 6.25rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--arena-text-primary);
}

.hero-headline span.accent {
    background: linear-gradient(135deg, #fff 30%, var(--arena-broadcast-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--arena-text-secondary);
}

/* 3D Scene Wrapper placement */
.hero-scene-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating spatial label tags */
.spatial-stat-label {
    position: absolute;
    background: rgba(11, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--arena-border-accent);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-md);
    font-size: 0.75rem;
    color: #fff;
    pointer-events: none;
    box-shadow: var(--shadow-sm);
    z-index: 12;
}

@media (max-width: 1024px) {
    .landing-hero {
        grid-template-columns: 1fr;
        padding: var(--sp-20) var(--sp-6) var(--sp-8);
        height: auto;
        min-height: 100svh;
    }
    .hero-scene-wrap {
        height: 400px;
        order: -1;
    }
}
