.nrss-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 150px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bgh-darker);
    padding: 0;
}
/* --- Video background --- */
.nrss-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.nrss-hero__video-wrap iframe,
.nrss-hero__video-wrap .nrss-yt-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}
.nrss-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 13, 22, 0.88) 0%, rgba(7, 13, 22, 0.80) 40%, rgba(7, 13, 22, 0.92) 100%);
    background: linear-gradient(180deg, rgba(7, 13, 22, 0.68) 0%, rgba(7, 13, 22, 0.60) 40%, rgba(7, 13, 22, 0.72) 100%);
    background: linear-gradient(180deg, rgba(7, 13, 22, 0.78) 0%, rgba(7, 13, 22, 0.70) 40%, rgba(7, 13, 22, 0.82) 100%);
}
/* faint blueprint grid on top of the overlay */
.nrss-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(79, 143, 196, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 143, 196, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
/* --- Content --- */
.nrss-hero__content {
    position: relative;
    z-index: 4;
    max-width: 980px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nrss-hero__title {
    font-family: var(--font-family-main);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: var(--light);
    margin-bottom: 22px;
}
.nrss-hero__title em,
.nrss-hero__title b,
.nrss-hero__title strong {
    font-style: normal;
    font-weight: inherit;
    color: var(--main-color);
}
.nrss-hero__subtitle {
    color: var(--light);
    max-width: 640px;
}
.nrss-hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.nrss-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    background: rgb(43 118 231 / 30%);
    border: 1px solid rgb(43 118 231 / 50%);
    border-radius: 5px;
    padding: 10px 15px;
}
.nrss-hero__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nrss-hero__badge svg{
  flex-shrink:0;
  color:var(--blueprint-300, #7bb2df);
}
.nrss-hero__fit {
    color: var(--light);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 560px;
}
.nrss-hero__fit strong,
.nrss-hero__fit b {
    font-weight: 600;
}
.nrss-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
@media (max-width: 600px) {
    .nrss-hero {
        min-height: auto;   
    }
    .nrss-hero__content {
        padding-bottom: 50px;
    }
    .nrss-hero__fit {
        margin-bottom: 0;
    }
    .nrss-hero__actions {
        flex-direction: column;
        width: 100%;
    }
}