/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 48px 140px;
    overflow: visible;
}

.hero-vanta {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3;
}

/* Mobile: Vanta HALO effect with blur overlay */
@media (max-width: 768px) {
    .hero-vanta {
        opacity: 1;
    }

    .hero-vanta::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(3, 3, 3, 0.5);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        z-index: 1;
    }
}

/* ══════════════════════════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════════════════════════ */

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ══════════════════════════════════════════════════════════════
   CONTENT
   ══════════════════════════════════════════════════════════════ */

.hero-content {
    text-align: left;
}

.hero-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -4px;
    color: var(--white);
    margin: 0 0 28px 0;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin: 0 0 40px 0;
    line-height: 1.7;
    max-width: 500px;
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS - Glassmorphism
   ══════════════════════════════════════════════════════════════ */

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn.glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn.glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn.glass:first-child {
    background: rgba(150, 255, 200, 0.25);
    border-color: rgba(150, 255, 200, 0.45);
}

.btn.glass:first-child:hover {
    background: rgba(150, 255, 200, 0.35);
    border-color: rgba(150, 255, 200, 0.65);
    box-shadow: 0 0 50px rgba(150, 255, 200, 0.4);
}

/* ══════════════════════════════════════════════════════════════
   STREAM
   ══════════════════════════════════════════════════════════════ */

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

.hero-stream {
    position: relative;
    padding: 14px;
}

.hero-stream iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 16px;
    display: block;
}

.stream-live {
    position: absolute;
    top: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff3b3b;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 12px #ff3b3b;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero {
        padding: 100px 32px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 110px 20px 130px;
        min-height: auto;
    }

    .hero-inner {
        gap: 80px;
    }

    .hero-title {
        font-size: clamp(32px, 9vw, 44px);
        letter-spacing: -1px;
        margin-bottom: 24px;
        padding-top: 150px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .btn.glass {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 14px;
    }

    .hero-stream {
        padding: 10px;
        border-radius: 18px;
    }

    .hero-stream iframe {
        border-radius: 12px;
    }

    .stream-live {
        top: 20px;
        left: 20px;
        padding: 8px 12px;
        font-size: 10px;
        border-radius: 8px;
    }

    .live-dot {
        width: 8px;
        height: 8px;
    }
}
