/* =========================
   ROGUESENSE HERO
========================= */

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;

    background-image: url('/_system/assets/images/deco/background.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5,5,6,0.96) 0%,
            rgba(5,5,6,0.92) 20%,
            rgba(5,5,6,0.82) 42%,
            rgba(5,5,6,0.58) 65%,
            rgba(5,5,6,0.28) 100%
        ),
        radial-gradient(
            circle at 72% 40%,
            rgba(228,25,45,0.16),
            transparent 28%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;
}

/* background atmosphere */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 74% 42%,
            rgba(228,25,45,0.14),
            transparent 26%
        ),
        radial-gradient(
            circle at 88% 80%,
            rgba(255,255,255,0.05),
            transparent 24%
        ),
        linear-gradient(
            90deg,
            rgba(5,5,6,0.98) 0%,
            rgba(5,5,6,0.90) 40%,
            rgba(5,5,6,0.62) 100%
        );
}

/* hero grid */
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 620px) 1fr;
    gap: 54px;
    align-items: center;
}

/* copy */
.hero-copy {
    max-width: 620px;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow,
.hero-copy .hero-tags {
    position: relative;
    z-index: 2;
}

/* eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,0.035);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

/* pulse */
.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(228,25,45,0.72);
}

/* headline */
.hero h1 {
    font-size: clamp(3rem, 6.4vw, 6.3rem);
    line-height: 0.90;
    letter-spacing: -3px;
    font-weight: 950;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
}

/* lead */
.hero p.lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 680px;
    margin-bottom: 28px;
}

/* tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--text);
    font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: auto;
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 14vw, 3.4rem);
        letter-spacing: -2px;
    }

    .hero-tags {
        gap: 8px;
    }

    .hero-tags span {
        font-size: 0.84rem;
        padding: 8px 12px;
    }
}