.ng-hero {
    padding: 150px 0 80px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(120, 60, 255, 0.18), transparent 45%),
        radial-gradient(circle at right, rgba(180, 60, 255, 0.10), transparent 40%),
        linear-gradient(180deg, #02030a 0%, #03040c 60%, #000000 100%);
}

.ng-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.ng-eyebrow {
    margin: 0 0 14px;
    color: #d8a84e;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    font-weight: 700;
}

.ng-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.ng-subtext {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255,255,255,0.72);
    font-size: 1rem;
    line-height: 1.7;
}

.ng-band {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ng-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.82) 0%,
            rgba(0,0,0,0.58) 28%,
            rgba(0,0,0,0.45) 55%,
            rgba(0,0,0,0.68) 100%
        ),
        radial-gradient(circle at center, rgba(120, 40, 255, 0.08), transparent 60%);
    backdrop-filter: blur(8px);
}

.ng-band::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 40px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.75) 35%,
        rgba(0,0,0,0.28) 72%,
        rgba(0,0,0,0) 100%
    );
}

.ng-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 30px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.75) 35%,
        rgba(0,0,0,0.28) 72%,
        rgba(0,0,0,0) 100%
    );
}

.ng-band-inner {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding: 80px 20px;
}


.ng-band-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 20px;
}

.pos-1 .ng-band-inner {
    margin-left: 10%;
    margin-right: auto;
    text-align: left;
}

.pos-2 .ng-band-inner {
    margin-right: 6%;
    margin-left: auto;
    text-align: right;
}

.pos-3 .ng-band-inner {
    margin-left: 14%;
    margin-right: auto;
    text-align: left;
}

.pos-4 .ng-band-inner {
    margin-right: 12%;
    margin-left: auto;
    text-align: right;
}

.pos-5 .ng-band-inner {
    margin-left: 20%;
    text-align: left;
}

.ng-number {
    display: inline-block;
    margin-bottom: 14px;
    color: #d8a84e;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.ng-band h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
}

.ng-band p {
    margin: 0 auto;
    max-width: 700px;
    color: rgba(255,255,255,0.78);
    font-size: 1.15rem;
    line-height: 1.75;
}

.ng-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ng-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.03);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .25s ease;
}

.ng-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(214,92,255,0.58);
    color: #f4ddff;
    background: rgba(214,92,255,0.08);
}

.ng-btn-primary {
    background: linear-gradient(90deg, #e24a72, #8b46ff);
    border: none;
}

.ng-btn-primary:hover {
    border: none;
    color: #fff;
}

@media (max-width: 768px) {
    .ng-band {
        min-height: 460px;
    }

    .ng-band-inner {
        padding: 70px 18px;
    }

    .ng-band p {
        font-size: 0.98rem;
    }
}


