.npi-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: #142033;
}

.npi-hero__media,
.npi-hero__still,
.npi-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.npi-hero__still {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease;
    animation: none;
}

.npi-hero__still.is-active {
    opacity: 1;
    z-index: 1;
    animation: npiKenBurns 7.2s ease-out forwards;
}

@keyframes npiKenBurns {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.18) translate3d(-1.4%, -1.2%, 0); }
}

.npi-hero__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(16, 22, 32, 0.28) 0%, rgba(16, 22, 32, 0.18) 38%, rgba(16, 22, 32, 0.72) 100%);
}

.npi-hero__copy {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 6.5rem 1.25rem 4.5rem;
    text-align: center;
}

.npi-hero__copy .npi-eyebrow {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.npi-hero__copy h1 {
    max-width: 18ch;
    margin-inline: auto;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.npi-hero__copy p {
    max-width: 38rem;
    margin-inline: auto;
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.92);
}

.npi-hero__copy .npi-actions {
    justify-content: center;
}

.npi-hero .npi-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}
.npi-hero .npi-btn--ghost:hover {
    background: #fff;
    color: var(--ink);
}

.npi-home-band {
    padding: 4.2rem 1.25rem;
}

.npi-home-band--white { background: #fff; }
.npi-home-band--cream { background: var(--cream); }
.npi-home-band--leaf {
    background: linear-gradient(160deg, #2f8a5c 0%, #1f6b4a 100%);
    color: #fff;
}
.npi-home-band--leaf h2,
.npi-home-band--leaf p { color: #fff; }
.npi-home-band--leaf .npi-muted { color: rgba(255, 255, 255, 0.86); }

.npi-home-band__inner {
    max-width: var(--max);
    margin: 0 auto;
    text-align: center;
}

.npi-home-band__inner .npi-lead {
    margin-inline: auto;
}

.npi-home-band__inner .npi-actions {
    justify-content: center;
}

.npi-home-band__inner .npi-card,
.npi-home-band__inner .npi-scale__card {
    text-align: left;
}

.npi-home-band__inner .npi-grid,
.npi-home-band__inner .npi-values {
    margin-top: 1.55rem;
    text-align: left;
}

.npi-scale {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.8rem;
}
.npi-scale__card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.4rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.npi-scale__arrow {
    align-self: center;
    font-size: 1.8rem;
    color: var(--sun);
    font-weight: 800;
}

@media (max-width: 720px) {
    .npi-scale {
        grid-template-columns: 1fr;
    }
    .npi-scale__arrow {
        transform: rotate(90deg);
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .npi-hero__still.is-active { animation: none; transform: scale(1.05); }
}
