.nml-ht {
    background: linear-gradient(157.77deg, #040F2D 18.4%, #162F6F 98.88%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Hero row */
.nml-ht__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 144px 0 80px;
    position: relative;
    overflow: hidden;
}

.nml-ht__hero-content {
    max-width: 799px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

/* Badge pill */
.nml-ht__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-bg);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-text-primary);
    border: 1px solid var(--color-line);
}

.nml-ht__badge img {
    width: 20px;
    height: 20px;
    display: block;
}

.nml-ht__heading {
    color: var(--color-text-white);
    margin: 0;
    font-size: 56px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nml-ht__subhead {
    margin: 0 0 56px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-align: left;
    color: var(--color-text-white);
    max-width: 680px;
}

/* Feature row (icon + label + sublabel, with dividers) */
.nml-ht__features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.nml-ht__feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nml-ht__feature-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background: #FFFFFF;
    opacity: 0.4;
}

.nml-ht__feature-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #FFFFFF33;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px 0px #00000047;
    backdrop-filter: blur(4px);
}

.nml-ht__feature-icon img {
    width: 24px;
    height: 24px;
    display: block;
}

.nml-ht__feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nml-ht__feature-label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-text-white);
}

.nml-ht__feature-sublabel {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFF;
    opacity: 0.6;
}

/* Decorative logo */
.nml-ht__hero-deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 383px;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.nml-ht__hero-deco img {
    display: block;
    width: 100%;
    height: auto;
}

.nml-ht__hero-deco--placeholder {
    height: 320px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .nml-ht__hero-deco {
        width: 38%;
    }
}

@media (max-width: 768px) {

    .nml-ht__hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 96px;
        padding-bottom: 40px;
    }

    .nml-ht__badge {
        gap: 4px;
        padding: 6px 8px;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 20px;
    }

    .nml-ht__badge img {
        width: 16px;
        height: 16px;
    }

    .nml-ht__heading {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 16px;
    }

    .nml-ht__subhead {
        margin: 0 0 40px;
        font-size: 16px;
        line-height: 24px;
    }

    .nml-ht__hero-deco {
        display: none;
    }

    .nml-ht__features {
        gap: 32px;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
    }

    .nml-ht__feature-label {
        font-size: 14px;
        line-height: 20px;
    }

    .nml-ht__feature-sublabel {
        font-size: 12px;
        line-height: 16px;
    }

    .nml-ht__feature-icon {
        width: 38px;
        height: 38px;
    }

    .nml-ht__feature-icon img {
        width: 20px;
        height: 20px;
    }

    .nml-ht__feature-item {
        width: 100%;
    }

    .nml-ht__feature-item:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: -42%;
        transform: translateY(-50%);
        width: 100%;
        height: 1px;
        background: #FFFFFF;
        opacity: 0.4;
    }
}
