/* =========================================================
   Chamber War – Hero (Norisk Style)
   ========================================================= */

.hero {
    position: relative;
    padding: calc(var(--header-height) + 48px) 0 80px;
    min-height: min(680px, calc(100vh - var(--header-height)));
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    /* Soft dark gradient fade */
    background: linear-gradient(to bottom, transparent, var(--stone-dark));
}

.hero > * { position: relative; z-index: 2; }
#hero-particles { z-index: 0 !important; }

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

/* ---- Badge Pill / Eyebrow ---- */

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8fb2ff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.badge-pill__dot {
    display: none; /* Hide dot for eyebrow style */
}

/* ---- Title ---- */

.hero-title {
    margin-bottom: 40px;
}

.hero-title__line {
    display: block;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-title__line--accent {
    color: var(--teal);
    text-shadow: 0 0 30px var(--teal-glow);
}

/* ---- Tagline ---- */

.hero-tagline {
    font-size: 1rem;
    max-width: 48ch;
    margin-bottom: 28px;
    color: var(--text-muted);
    line-height: 1.8;
}

.hero-tagline strong {
    color: var(--teal);
    font-weight: 400;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* ---- Register hint ---- */

.hero-register-hint {
    font-size: 0.95rem;
    max-width: 52ch;
    margin-bottom: 32px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    color: var(--text-muted);
    position: relative;
}

.hero-register-hint::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--teal);
}

.hero-register-hint a {
    color: var(--teal);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.hero-register-hint a:hover { color: #fff; }
.hero-register-hint strong  { color: var(--teal); font-family: var(--font-heading); font-weight: normal; }

/* ---- Stats ---- */

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stat::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--ominous);
    margin-left: 12px;
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat__value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.hero-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- Actions ---- */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---- Vault Frame (Pixel Frame) ---- */

.vault-frame {
    position: relative;
    padding: 2px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    /* pixel corner cuts can be simulated or we just keep it blocky */
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.5), 0 0 30px rgba(0,0,0,0.3);
}

/* We hide the old corners */
.vault-frame__corner { display: none; }

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.coming-soon__label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.coming-soon__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--text);
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-media { order: -1; }

    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 40px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-title__line {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}
