/* NX — Homepage lower sections (below Featured Products)
   Black #0B0B0B · Dark Red #E60000 · Gold #C9A227 · White #FFFFFF */

.nx-landing {
    --nx-black: #0B0B0B;
    --nx-red: #E60000;
    --nx-red-dark: #C40000;
    --nx-gold: #C9A227;
    --nx-white: #FFFFFF;
    --nx-card: #121212;
    --nx-line: rgba(201, 162, 39, 0.25);
    --nx-wrap: min(1180px, calc(100% - 40px));
    background: var(--nx-black);
    color: var(--nx-white);
    font-family: var(--font-body, 'Inter', sans-serif);
    overflow: hidden;
}

.nx-wrap { width: var(--nx-wrap); margin-inline: auto; }

.nx-section { padding: clamp(64px, 8vw, 96px) 0; }

.nx-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--nx-red);
}

.nx-eyebrow--gold { color: var(--nx-gold); }

.nx-display {
    margin: 0 0 16px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.nx-display em {
    font-style: normal;
    color: var(--nx-gold);
}

.nx-heading {
    margin: 0 0 12px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.nx-copy {
    margin: 0;
    font-size: clamp(0.92rem, 1.3vw, 1.02rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    max-width: 52ch;
}

.nx-copy--center { margin-inline: auto; text-align: center; }

.nx-section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.nx-section-top--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.nx-section-top--split {
    align-items: flex-end;
}

.nx-section-top--split .nx-copy { max-width: 48ch; }

.nx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 4px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nx-btn--fill {
    color: var(--nx-white);
    background: var(--nx-red);
    border-color: var(--nx-red-dark);
}

.nx-btn--fill:hover { transform: translateY(-2px); background: var(--nx-red-dark); }

.nx-btn--line {
    color: var(--nx-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.nx-btn--line:hover { border-color: var(--nx-gold); color: var(--nx-gold); }

.nx-btn--wa {
    color: var(--nx-white);
    background: var(--nx-red);
    border-color: var(--nx-red-dark);
}

.nx-btn--wa:hover { background: var(--nx-red-dark); transform: translateY(-2px); }

.nx-btn--block { width: 100%; }

.nx-icon-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--nx-line);
    border-radius: 4px;
    background: var(--nx-card);
    color: var(--nx-white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nx-icon-btn:hover { background: var(--nx-red); border-color: var(--nx-red); }

/* Reveal */
[data-nx-reveal],
[data-nx-item] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--i, 0) * 60ms);
}

[data-nx-reveal].is-in,
[data-nx-item].is-in {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee */
.nx-marquee {
    border-block: 1px solid var(--nx-line);
    background: var(--nx-red);
    padding: 14px 0;
    overflow: hidden;
}

.nx-marquee-track {
    display: flex;
    width: max-content;
    animation: nx-marquee 32s linear infinite;
}

.nx-marquee-group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.nx-marquee-group span {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.nx-marquee-group strong { color: var(--nx-gold); font-weight: 800; }

.nx-marquee-dot { color: var(--nx-gold) !important; font-size: 8px !important; }

@keyframes nx-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* OEM cinematic */
.nx-oem {
    position: relative;
    min-height: clamp(520px, 70vh, 680px);
    display: flex;
    align-items: center;
    padding: 0;
}

.nx-oem-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nx-oem-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nx-oem-bg-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0.75) 42%, rgba(11, 11, 11, 0.35) 100%);
}

.nx-oem-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    padding-block: clamp(64px, 8vw, 96px);
}

.nx-oem-panel {
    max-width: 520px;
}

.nx-oem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nx-oem-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.nx-oem-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    background: rgba(11, 11, 11, 0.72);
    border: 1px solid var(--nx-line);
    border-left: 3px solid var(--nx-gold);
    backdrop-filter: blur(8px);
}

.nx-oem-step-num {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nx-gold);
}

.nx-oem-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.88rem;
}

.nx-oem-step p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

/* FAQ cinematic */
.nx-faq--prefooter {
    padding-bottom: clamp(48px, 6vw, 72px);
}

.nx-faq {
    position: relative;
    min-height: clamp(520px, 70vh, 720px);
    display: flex;
    align-items: center;
    padding: 0;
}

.nx-faq-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nx-faq-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nx-faq-bg-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.78) 100%);
}

.nx-faq-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
    padding-block: clamp(64px, 8vw, 96px);
}

.nx-faq-intro {
    max-width: 480px;
    padding-top: 8px;
}

.nx-faq-intro .nx-display {
    color: var(--nx-black);
}

.nx-faq-intro .nx-display em {
    color: var(--nx-red);
}

.nx-copy--faq {
    color: rgba(11, 11, 11, 0.62);
    max-width: 42ch;
    margin-bottom: 28px;
}

.nx-faq-accordion {
    display: grid;
    gap: 10px;
}

.nx-faq-item {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-left: 3px solid var(--nx-gold);
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(11, 11, 11, 0.06);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nx-faq-item.is-open {
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: 0 12px 36px rgba(11, 11, 11, 0.1);
}

.nx-faq-trigger {
    display: grid;
    grid-template-columns: 44px 1fr 28px;
    gap: 12px;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--nx-black);
    font-family: inherit;
}

.nx-faq-num {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1rem;
    font-weight: 800;
    color: var(--nx-red);
    line-height: 1;
}

.nx-faq-q {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--nx-black);
}

.nx-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    justify-self: end;
}

.nx-faq-icon::before,
.nx-faq-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    margin: -1px 0 0 -7px;
    background: var(--nx-red);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.nx-faq-icon::after {
    transform: rotate(90deg);
}

.nx-faq-item.is-open .nx-faq-icon::after {
    transform: rotate(90deg) scaleX(0);
    opacity: 0;
}

.nx-faq-body-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nx-faq-item.is-open .nx-faq-body-wrap {
    grid-template-rows: 1fr;
}

.nx-faq-body-inner {
    overflow: hidden;
}

.nx-faq-body-inner p {
    margin: 0;
    padding: 0 18px 18px 74px;
    font-size: 0.84rem;
    line-height: 1.65;
    color: rgba(11, 11, 11, 0.62);
}

/* Why Choose Us — timeline rings */
.nx-why {
    position: relative;
    overflow: hidden;
    background: var(--nx-white);
    padding-bottom: clamp(28px, 4vw, 40px);
    border-block: 1px solid rgba(201, 162, 39, 0.18);
}

.nx-why-deco {
    position: absolute;
    width: clamp(200px, 22vw, 320px);
    height: clamp(200px, 22vw, 320px);
    opacity: 0.06;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: contain;
}

.nx-why-deco--left {
    top: 8%;
    left: -40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Cpath d='M25 85c20-40 50-55 70-35s5 45-25 50-50-5-45-15z' stroke='%23E60000' stroke-width='2'/%3E%3Ccircle cx='60' cy='45' r='28' stroke='%23E60000' stroke-width='2'/%3E%3C/svg%3E");
}

.nx-why-deco--right {
    bottom: 5%;
    right: -30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none'%3E%3Crect x='30' y='25' width='60' height='70' rx='6' stroke='%23E60000' stroke-width='2'/%3E%3Cpath d='M40 45h40M40 60h40M40 75h28' stroke='%23E60000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.nx-why-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 56px);
}

.nx-why-head .nx-copy--center {
    color: rgba(11, 11, 11, 0.58);
}

.nx-why-kicker {
    display: inline-block;
    margin-bottom: 12px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-why-title {
    margin: 0 0 12px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--nx-black);
}

.nx-why-timeline {
    position: relative;
    padding-top: 12px;
}

.nx-why-line {
    position: absolute;
    top: clamp(100px, 12vw, 120px);
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.2) 0%, var(--nx-red) 50%, rgba(201, 162, 39, 0.2) 100%);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.nx-why-track {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: clamp(12px, 2vw, 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4px 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--nx-red) transparent;
}

.nx-why-node {
    flex: 1 1 0;
    min-width: min(200px, 42vw);
    scroll-snap-align: center;
    text-align: center;
    padding: 0 6px;
}

.nx-why-ring {
    position: relative;
    width: clamp(140px, 16vw, 180px);
    height: clamp(140px, 16vw, 180px);
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--nx-red);
    box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.15);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.nx-why-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.nx-why-digit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.nx-why-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(11, 11, 11, 0.88);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.nx-why-hover p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.nx-why-node:hover .nx-why-ring,
.nx-why-node:focus-within .nx-why-ring {
    border-color: var(--nx-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
    transform: translateY(-6px);
}

.nx-why-node:hover .nx-why-ring img,
.nx-why-node:focus-within .nx-why-ring img {
    transform: scale(1.08);
    filter: brightness(0.55);
}

.nx-why-node:hover .nx-why-digit,
.nx-why-node:focus-within .nx-why-digit {
    opacity: 0;
    transform: scale(0.85);
}

.nx-why-node:hover .nx-why-hover,
.nx-why-node:focus-within .nx-why-hover {
    opacity: 1;
    transform: scale(1);
}

.nx-why-node h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 700;
    color: var(--nx-black);
    transition: color 0.3s ease;
}

.nx-why-node:hover h3,
.nx-why-node:focus-within h3 {
    color: var(--nx-red);
}

.nx-why-node > p {
    margin: 0 auto;
    max-width: 22ch;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(11, 11, 11, 0.52);
    transition: color 0.3s ease;
}

.nx-why-node:hover > p,
.nx-why-node:focus-within > p {
    color: rgba(11, 11, 11, 0.72);
}

/* Latest blogs */
.nx-blogs {
    padding-top: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(48px, 6vw, 72px);
    background:
        radial-gradient(ellipse 70% 55% at 0% 100%, rgba(230, 0, 0, 0.14), transparent 58%),
        var(--nx-black);
    border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.nx-blogs .nx-section-top {
    margin-bottom: 28px;
}

.nx-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nx-blog-card {
    display: flex;
    flex-direction: column;
    background: var(--nx-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.35s ease,
        box-shadow 0.45s ease;
}

.nx-blogs-grid [data-nx-item] {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    transition-delay: calc(var(--i, 0) * 130ms);
}

.nx-blogs-grid [data-nx-item].is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.nx-blog-card.is-in:hover,
.nx-blog-card:focus-within {
    transform: translateY(-8px) scale(1);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.nx-blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.nx-blog-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 25%, rgba(201, 162, 39, 0.18) 50%, transparent 75%);
    transform: translateX(-120%);
    transition: transform 0.75s ease;
    pointer-events: none;
}

.nx-blog-card:hover .nx-blog-card__media::after {
    transform: translateX(120%);
}

.nx-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.nx-blog-card:hover .nx-blog-card__media img {
    transform: scale(1.07);
    filter: brightness(0.78);
}

.nx-blog-card__cat {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-black);
    background: var(--nx-gold);
    border-radius: 3px;
}

.nx-blog-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.nx-blog-card__body time {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.nx-blog-card__body h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.nx-blog-card__body h3 a {
    color: var(--nx-white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.nx-blog-card__body h3 a:hover { color: var(--nx-gold); }

.nx-blog-card__body p {
    margin: 0 0 16px;
    font-size: 0.86rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    flex: 1;
}

.nx-blog-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-gold);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.25s ease;
}

.nx-blog-card__link:hover {
    color: var(--nx-white);
    gap: 10px;
}

/* Factory video showcase */
.nx-factory {
    position: relative;
    padding: clamp(64px, 8vw, 96px) 0 clamp(40px, 5vw, 56px);
    background: var(--nx-white);
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
}

.nx-factory__glow {
    display: none;
}

.nx-factory__head {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto 36px;
    text-align: center;
}

.nx-factory__head .nx-heading {
    color: var(--nx-black);
}

.nx-factory__head .nx-heading em {
    font-style: normal;
    color: var(--nx-red);
}

.nx-factory__head .nx-copy {
    color: #5a5a5a;
}

.nx-factory__cinema {
    position: relative;
    z-index: 1;
}

.nx-factory__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
    box-shadow:
        0 24px 56px rgba(11, 11, 11, 0.12),
        0 8px 20px rgba(230, 0, 0, 0.08);
    background: #f5f5f5;
}

.nx-factory__frame::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 3px rgba(230, 0, 0, 0.35);
}

.nx-factory__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0a0a0a;
}

.nx-factory__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.15) 0%, rgba(11, 11, 11, 0.55) 100%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nx-factory__frame.is-playing .nx-factory__shade {
    opacity: 0;
}

.nx-factory__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: var(--nx-white);
    background: var(--nx-red);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background 0.25s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.nx-factory__play-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.55);
    animation: nx-factory-pulse 2.4s ease infinite;
}

@keyframes nx-factory-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.08); opacity: 0.35; }
}

.nx-factory__play:hover {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--nx-red-dark);
}

.nx-factory__frame.is-playing .nx-factory__play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nx-factory__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.nx-factory__steps li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a3a3a;
    background: #fafafa;
    border: 1px solid #e8e8e8;
}

.nx-factory__step-num {
    font-family: var(--font-heading, 'Inter', sans-serif);
    color: var(--nx-red);
}

/* Subscribe CTA — above footer */
.nx-subscribe {
    padding: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
    background: var(--nx-black);
}

.nx-subscribe__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(12px, 3vw, 32px);
    min-height: clamp(300px, 36vw, 380px);
    padding: clamp(32px, 4vw, 48px) clamp(32px, 4.5vw, 56px);
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    background: var(--nx-red);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.nx-subscribe__lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
}

.nx-subscribe__lines svg {
    width: 100%;
    height: 100%;
}

.nx-subscribe__visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 300px;
    padding-left: clamp(8px, 2vw, 20px);
    pointer-events: none;
}

.nx-subscribe__model {
    position: relative;
    z-index: 2;
    display: block;
    width: min(400px, 100%);
    height: clamp(290px, 38vw, 370px);
    object-fit: contain;
    object-position: left bottom;
}

.nx-subscribe__content {
    position: relative;
    z-index: 2;
    color: var(--nx-white);
    padding-block: 8px;
}

.nx-subscribe__title {
    margin: 0 0 16px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--nx-white);
}

.nx-subscribe__title-word--gold {
    color: var(--nx-gold);
}

.nx-subscribe__text {
    margin: 0 0 30px;
    max-width: 48ch;
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.9);
}

.nx-subscribe__form {
    margin: 0;
}

.nx-subscribe__pill {
    display: flex;
    align-items: stretch;
    max-width: 540px;
    padding: 5px;
    border-radius: 999px;
    background: var(--nx-white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.nx-subscribe__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 0 8px 0 16px;
}

.nx-subscribe__icon {
    flex-shrink: 0;
    color: #9ca3af;
}

.nx-subscribe__field input {
    width: 100%;
    min-width: 0;
    padding: 14px 8px 14px 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.92rem;
    color: #1a1a1a;
    outline: none;
}

.nx-subscribe__field input::placeholder {
    color: #9ca3af;
}

.nx-subscribe__submit {
    flex-shrink: 0;
    padding: 15px 28px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-white);
    background: var(--nx-red-dark);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nx-subscribe__submit:hover {
    background: #C40000;
    transform: translateY(-1px);
}

/* Contact */
.nx-connect {
    padding-top: clamp(36px, 5vw, 52px);
    padding-bottom: clamp(40px, 5vw, 56px);
    background:
        radial-gradient(ellipse 55% 45% at 100% 0%, rgba(230, 0, 0, 0.16), transparent 52%),
        radial-gradient(ellipse 40% 35% at 0% 100%, rgba(201, 162, 39, 0.06), transparent 50%),
        var(--nx-black);
}

.nx-connect-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.nx-connect-form-card {
    position: relative;
    padding: clamp(32px, 4vw, 44px);
    background: linear-gradient(165deg, #161616 0%, #101010 100%);
    color: var(--nx-white);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 10px;
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.nx-connect-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--nx-red), var(--nx-gold), var(--nx-red));
    background-size: 200% 100%;
    animation: nx-form-accent 6s ease infinite;
}

@keyframes nx-form-accent {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nx-connect-form-card .nx-eyebrow { color: var(--nx-gold); }

.nx-connect-form-card .nx-heading { color: var(--nx-white); }

.nx-connect-form-card .nx-copy { color: rgba(255, 255, 255, 0.58); max-width: none; }

.nx-form {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.nx-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.nx-field {
    display: grid;
    gap: 6px;
}

.nx-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.85);
}

.nx-form input,
.nx-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(11, 11, 11, 0.85);
    color: var(--nx-white);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nx-form input::placeholder,
.nx-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.nx-form input:focus,
.nx-form textarea:focus {
    outline: none;
    border-color: rgba(201, 162, 39, 0.65);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
    background: rgba(11, 11, 11, 0.95);
}

.nx-form textarea { resize: vertical; min-height: 120px; }

.nx-form .nx-btn--fill {
    margin-top: 4px;
    padding: 16px 26px;
    font-size: 12px;
    letter-spacing: 0.14em;
}

.nx-flash {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.86rem;
}

.nx-flash--success {
    background: rgba(37, 211, 102, 0.1);
    color: #6ee7a0;
    border: 1px solid rgba(37, 211, 102, 0.35);
}

.nx-flash--error {
    background: rgba(230, 0, 0, 0.15);
    color: #f0a0a0;
    border: 1px solid rgba(230, 0, 0, 0.45);
}

.nx-wa-panel {
    padding: 28px 24px;
    background: linear-gradient(165deg, #141414 0%, #101010 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 10px;
    text-align: center;
    margin-bottom: 16px;
    transition: border-color 0.3s ease, transform 0.35s ease;
}

.nx-connect-aside [data-nx-reveal].is-in .nx-wa-panel:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-3px);
}

.nx-wa-title {
    display: block;
    margin-bottom: 16px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--nx-gold);
}

.nx-wa-qr-wrap {
    padding: 12px;
    background: var(--nx-white);
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 14px;
}

.nx-wa-qr { display: block; width: 200px; height: 200px; }

.nx-wa-panel p {
    margin: 0 0 16px;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.nx-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.nx-contact-list li {
    padding: 14px 16px;
    background: var(--nx-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.nx-contact-list span {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--nx-gold);
    margin-bottom: 4px;
}

.nx-contact-list a,
.nx-contact-list em {
    font-style: normal;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.nx-contact-list a:hover { color: var(--nx-white); }

/* Responsive */
@media (max-width: 1024px) {
    .nx-oem-layout,
    .nx-faq-layout,
    .nx-connect-grid {
        grid-template-columns: 1fr;
    }

    .nx-faq-body-inner p {
        padding-left: 18px;
    }

    .nx-why-line { display: none; }

    .nx-why-track {
        justify-content: flex-start;
        gap: 16px;
        padding-bottom: 12px;
    }

    .nx-why-node {
        flex: 0 0 min(220px, 70vw);
    }

    .nx-blogs-grid { grid-template-columns: 1fr; }

    .nx-subscribe__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: clamp(24px, 4vw, 36px);
    }

    .nx-subscribe__text {
        margin-inline: auto;
    }

    .nx-subscribe__pill {
        margin-inline: auto;
    }

    .nx-subscribe__visual {
        min-height: 260px;
        order: -1;
        justify-content: center;
    }

    .nx-subscribe__model {
        object-position: center bottom;
    }
}

@media (max-width: 768px) {
    .nx-wrap { width: calc(100% - 28px); }

    .nx-factory__play { width: 64px; height: 64px; }

    .nx-factory__steps li {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .nx-form-grid { grid-template-columns: 1fr; }

    .nx-subscribe__pill {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }

    .nx-subscribe__field {
        padding: 4px 12px;
    }

    .nx-subscribe__submit {
        width: 100%;
        border-radius: 12px;
    }

    .nx-section-top { flex-direction: column; align-items: flex-start; }

    .nx-section-top--split .nx-btn { align-self: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .nx-marquee-track { animation: none; }

    .nx-connect-form-card::before { animation: none; }

    .nx-factory__play-ring { animation: none; }

    [data-nx-reveal],
    [data-nx-item] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .nx-blog-card__media::after { display: none; }

    .nx-faq-body-wrap { transition: none; }
    .nx-faq-icon::before,
    .nx-faq-icon::after { transition: none; }
}
