/* ============================================================
   Section 03b — "Works with your stack" qualification band
   Compact strip between How-it-works and Trust. Three stacked
   integration groups: blue eyebrow + one-line sub + a wrapping
   row of chip tiles (logo + name + descriptor). Framework chips
   are name-only pills, plus a dashed "whatever you run next"
   ghost. Reuses existing tokens; logos are pre-colored SVGs —
   rendered bare at 26px, no added backgrounds.
   ============================================================ */

.nl-stack-band {
    background: #0f172b;
    padding: clamp(48px, 6vw, 72px) 0;
    position: relative;
}

.nl-stack-band__inner {
    max-width: 1148px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    gap: clamp(26px, 3.2vw, 36px);
}

.nl-stack-band__header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.nl-stack-band__title {
    margin: 0;
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.7px;
    color: #FFFFFF;
}

.nl-stack-band__subtitle {
    margin: 12px 0 0;
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(14.5px, 1.5vw, 16px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
    color: #AFBCD5;
}

/* ─── Integration groups ─── */
.nl-stack-band__group-title {
    margin: 0;
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #3B82F6;
}

.nl-stack-band__group-sub {
    margin: 6px 0 0;
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: -0.15px;
    color: #AFBCD5;
}

.nl-stack-band__chips {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Chip tile: bare pre-colored logo + name + descriptor */
.nl-stack-band__chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.nl-stack-band__chip-logo {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: block;
}

.nl-stack-band__chip-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nl-stack-band__chip-name {
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: #FFFFFF;
}

.nl-stack-band__chip-desc {
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 12.5px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.1px;
    color: #8A97AC;
}

/* Name-only framework pills */
.nl-stack-band__pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-family: var(--nl-font, 'Plus Jakarta Sans', sans-serif);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: #FFFFFF;
}

.nl-stack-band__pill--ghost {
    background: transparent;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.16);
    font-weight: 400;
    color: #8A97AC;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
    .nl-stack-band__chip {
        padding: 10px 14px 10px 12px;
    }

    .nl-stack-band__chip-name {
        font-size: 14px;
    }

    .nl-stack-band__pill {
        padding: 10px 16px;
        font-size: 14px;
    }
}
