@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap'); :root {
    --nx-bg: #f3eee2;
    --nx-bg-2: #f7f3ea;
    --nx-paper: #fffdf7;
    --nx-ink: #1a1c5c;
    --nx-ink-2: #2f3192;
    --nx-soft: #5a5d7a;
    --nx-line: rgba(47,49,146,0.14);
    --nx-line-strong: rgba(47,49,146,0.28);
    --nx-lime: #ed5e4e;
    --nx-orange: #ed5e4e;
    --nx-blue: #2f3192;
    --nx-blue-deep: #1f2073;
    --nx-cream: #faf7ef;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    background: var(--nx-bg);
    color: var(--nx-ink);
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: 'ss01' on;
    overflow-x: clip;
}

body.has-cursor {
    cursor: none;
}

body.has-cursor a, body.has-cursor button {
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.nx-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* CURSOR */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--nx-ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--nx-ink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width .25s, height .25s, background .25s, border-color .25s;
}

.cursor-ring--hover {
    width: 68px;
    height: 68px;
    border-color: var(--nx-orange);
    background: var(--nx-orange);
    margin: -14px 0 0 -14px;
    opacity: 0.85;
}

.cursor-ring--active {
    transform: scale(0.85);
}

@media (max-width: 900px) {
    .cursor-dot, .cursor-ring {
        display: none !important;
    }
}

.nx-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--nx-soft);
    text-transform: lowercase;
}

.nx-eyebrow--on-dark {
    color: rgba(255,255,255,0.55);
}
#leadbot-widget-host{
    z-index: 112 !important;
}
/* BUTTONS */
.nx-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--nx-ink);
    background: var(--nx-paper);
    color: var(--nx-ink);
    cursor: pointer;
    transition: background .25s, color .25s, transform .25s;
    text-decoration: none;
}

.nx-btn:hover {
    background: var(--nx-ink);
    color: #fff;
}

.nx-btn--dark {
    background: var(--nx-ink);
    color: #fff;
}

.nx-btn--dark:hover {
    background: var(--nx-orange);
    color: #fff;
    border-color: var(--nx-orange);
}

.nx-btn--lime {
    background: var(--nx-orange);
    border-color: var(--nx-orange);
    color: #fff;
}

.nx-btn--lime:hover {
    background: var(--nx-ink);
    color: #fff;
    border-color: var(--nx-ink);
}

.nx-btn--big {
    padding: 18px 28px;
    font-size: 15px;
}

.nx-btn__arrow {
    font-size: 14px;
}

/* HEADER */
.nx-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--nx-bg);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

.nx-header.is-scrolled {
    border-color: var(--nx-line);
    box-shadow: 0 10px 30px rgba(31,32,115,0.06);
}

.nx-partners {
    background: var(--nx-ink);
    color: #fff;
}

.nx-partners__row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    padding: 8px 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.nx-partners__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nx-partners__g {
    font-family: 'Inter';
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.nx-partners__g .g-blue {
    color: #4285F4;
}

.nx-partners__g .g-red {
    color: #EA4335;
}

.nx-partners__g .g-yellow {
    color: #FBBC05;
}

.nx-partners__g .g-green {
    color: #34A853;
}

.nx-partners__shopify {
    flex-shrink: 0;
}

.nx-partners__label {
    color: rgba(255,255,255,0.85);
}

.nx-partners__divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
}

.nx-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.nx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nx-brand img{
    width: 150px;
    max-width: fit-content;

}

.nx-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nx-brand__name {
    font-family: 'Inter';
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--nx-blue);
}

.nx-brand__name i {
    color: var(--nx-orange);
    font-style: normal;
}

.nx-brand__name b {
    font-weight: 800;
    color: var(--nx-ink);
    margin-left: 2px;
}

.nx-brand__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--nx-soft);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.nx-header__nav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: var(--nx-paper);
    border: 1px solid var(--nx-line);
    border-radius: 999px;
}

.nx-header__nav a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nx-ink);
    transition: background .25s, color .25s;
}

.nx-header__nav a:hover {
    background: rgba(14,14,14,0.06);
}

.nx-header__nav a.is-active {
    background: var(--nx-ink);
    color: #fff;
}

.nx-header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nx-header__mail {
    font-size: 13px;
    color: var(--nx-soft);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nx-burger {
    display: none;
    background: none;
    border: none;
    color: var(--nx-ink);
    cursor: pointer;
    padding: 6px;
}

.nx-mobile {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 250;
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s, visibility .25s;
}

.nx-mobile.is-open {
    visibility: visible;
    opacity: 1;
}

.nx-mobile__panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    background: var(--nx-paper);
    padding: 70px 28px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}

.nx-mobile.is-open .nx-mobile__panel {
    transform: translateX(0);
}

.nx-mobile__close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nx-ink);
}

.nx-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nx-mobile a {
    display: block;
    padding: 14px 0;
    font-weight: 600;
    font-size: 20px;
    color: var(--nx-blue);
    border-bottom: 1px solid var(--nx-line);
}

/* HERO */
.nx-hero {
    position: relative;
    /* padding: 70px 0 0; */
    overflow: hidden;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nx-hero__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: radial-gradient(rgba(14,14,14,0.05) 1px, transparent 1px);
    background-size: 3px 3px;
}

.nx-hero__inner {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.nx-hero__title {
    font-family: 'Inter';
    font-weight: 800;
    font-size: clamp(56px, 9.5vw, 112px);
    line-height: 0.92;
    letter-spacing: -0.045em;
    margin: 40px 0px 0px;
    color: var(--nx-ink);
}

.nx-hero__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.18em;
    align-items: baseline;
}

.h-mask {
    display: inline-block;
    overflow: hidden;
    padding-bottom: 0.06em;
    line-height: 0.92;
}

.h-word {
    display: inline-block;
}

.nx-hero__ital, .nx-hero__amp {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.02em;
    padding: 0 0.04em;
}

.nx-hero__amp {
    color: var(--nx-orange);
}

.nx-hero__accent {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}
/* ===== Hero stats ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â bold animated counters ===== */
.nx-hero__stat-n {
    font-family: 'Inter';
    font-weight: 900;
    font-size: clamp(34px, 3.4vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(180deg, var(--nx-ink) 0%, var(--nx-ink-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.h-stat {
    position: relative;
}

.h-stat::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 4px;
    bottom: 8px;
    width: 3px;
    border-radius: 3px;
    background: var(--nx-orange);
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: opacity .4s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}

.h-stat.is-counting::before {
    opacity: 1;
    transform: scaleY(1);
}

.nx-hero__stat-l {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--nx-soft);
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .nx-hero__stat-n {
        font-size: clamp(28px, 8vw, 36px);
    }
}
.nx-hero__accent::after {
    content: \"\"; display:inline-block; width: 14px; height: 14px; background: var(--nx-orange); border-radius: 50%; margin-left: 0.2em; vertical-align: middle; }

.nx-hero__bottom {display:flex;justify-content: space-between;align-items: flex-end;gap: 40px;/* margin-top: 40px; */padding-top: 40px;/* border-top: 1px solid var(--nx-line); */}
.nx-hero__lead { max-width: 520px; font-size: 18px; line-height: 1.55; color: var(--nx-soft); margin: 0; }
.nx-hero__cta-wrap { flex-shrink: 0; }
.nx-hero__cta { display:inline-flex; align-items:center; gap: 16px; padding: 22px 22px 22px 32px; background: var(--nx-ink); color: #fff; border-radius: 999px; font-weight: 600; font-size: 17px; border: none; cursor: pointer; will-change: transform; }
.nx-hero__cta-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--nx-orange); color: #fff; display:grid; place-items:center; transition: transform .35s ease; }
.nx-hero__cta:hover .nx-hero__cta-icon { transform: rotate(45deg); }
.nx-hero__stats {display:grid;grid-template-columns: repeat(4, 1fr);gap: 24px;padding: 28px 0;border-bottom: 1px solid var(--nx-line);}
.h-stat { display:flex; flex-direction: column; gap: 4px; }
.nx-hero__stat-n {font-family: 'JetBrains Mono', monospace;font-weight: 700;font-size: 50px;letter-spacing: -0.02em;}
.nx-hero__stat-l { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--nx-soft); }

.nx-hero__marquee { background: var(--nx-ink); padding: 12px 0; overflow: hidden; }
.h-marquee__track, .cta-track, .brands-track, .cb-track { display:flex; gap: 28px; width: max-content; white-space: nowrap; }
.h-marquee__track span { font-family: 'Inter'; font-size: 14px; font-weight: 600; color: #fff; }
.h-marquee__track em { color: var(--nx-orange); font-style: normal; padding: 0 12px; }

/* ABOUT */
.nx-about {padding: 90px 0;background: var(--nx-bg);position: relative;}
.nx-about__head { max-width: 1100px; margin-bottom: 80px; }
.nx-about__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(40px, 6vw, 96px); line-height: 1.0; letter-spacing: -0.04em; margin: 24px 0 0; }
.nx-about__title span { display:block; overflow: hidden; }
.nx-about__title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-about__grid {display:grid;grid-template-columns: 1.1fr 1fr;gap: 80px;align-items: center;margin-bottom: 50px;}
.nx-about__img { position: relative; aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; }
.nx-about__img img { width: 100%; height: 100%; object-fit: cover; }
.nx-about__chip { position:absolute; bottom: 20px; left: 20px; background: var(--nx-paper); border-radius: 999px; padding: 12px 18px; display:flex; align-items:center; gap: 10px; font-size: 13px; font-weight: 500; }
.nx-about__chip span { font-family: 'Inter'; font-weight: 800; font-size: 22px; color: var(--nx-orange); }
.nx-about__copy p { font-size: 19px; line-height: 1.55; color: var(--nx-ink); margin: 0 0 22px; }
.nx-about__copy-muted { color: var(--nx-soft) !important; font-size: 16px !important; }
.nx-link { display:inline-flex; align-items:center; gap: 8px; font-weight: 600; padding-bottom: 4px; border-bottom: 1px solid var(--nx-ink); transition: gap .25s; }
.nx-link:hover { gap: 14px; }
.nx-about__stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); }
.ab-stat { padding: 32px 24px; border-right: 1px solid var(--nx-line); }
.ab-stat:last-child { border-right: 0; }
.ab-stat span { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--nx-soft); display: block; margin-bottom: 12px; }
.ab-stat b { display:block; font-family: 'Inter'; font-weight: 700; font-size: 22px; margin-bottom: 8px; letter-spacing: -0.01em; }
.ab-stat p { margin: 0; font-size: 14px; color: var(--nx-soft); line-height: 1.55; }

/* SERVICES */
.nx-services { padding: 140px 0; background: var(--nx-cream); }
.nx-services__head { max-width: 900px; margin-bottom: 80px; }
.nx-services__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(42px, 6.5vw, 104px); line-height: 1.0; letter-spacing: -0.04em; margin: 20px 0 0; }
.nx-services__title span { display: block; }
.nx-services__title-italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-services__lead { max-width: 580px; font-size: 17px; color: var(--nx-soft); margin: 24px 0 0; line-height: 1.55; }
.nx-services__list { display:flex; flex-direction: column; border-top: 1px solid var(--nx-line); }
.nx-svc { position: relative; display:grid; grid-template-columns: 80px 70px 1fr 1fr 180px; gap: 24px; align-items: center; padding: 36px 12px; border-bottom: 1px solid var(--nx-line); transition: padding-left .35s ease; overflow: hidden; }
.nx-svc__hover { position:absolute; inset:0; background: var(--nx-ink); transform: translateY(101%); transition: transform .5s cubic-bezier(.7,0,.2,1); z-index: 0; }
.nx-svc:hover .nx-svc__hover { transform: translateY(0); }
.nx-svc > * { position: relative; z-index: 1; transition: color .35s ease; }
.nx-svc:hover { padding-left: 32px; }
.nx-svc:hover, .nx-svc:hover * {color: #2159af;}
.nx-svc:hover .nx-svc__btn { background: var(--nx-orange); color: #fff; border-color: var(--nx-orange); }
.nx-svc:hover .nx-svc__icon { background: var(--nx-orange); color: #fff; border-color: var(--nx-orange); }
.nx-svc:hover .nx-svc__num { color: var(--nx-orange); }
.nx-svc__num { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--nx-soft); }
.nx-svc__icon { width: 56px; height: 56px; border: 1px solid var(--nx-line-strong); border-radius: 50%; display:grid; place-items:center; color: var(--nx-ink); }
.nx-svc__tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--nx-soft); text-transform: lowercase; display:block; margin-bottom: 6px; }
.nx-svc__title { font-family: 'Inter'; font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 0; }
.nx-svc__desc { font-size: 14px; color: var(--nx-soft); line-height: 1.55; margin: 0; }
.nx-svc__btn { display:inline-flex; align-items:center; gap: 8px; padding: 12px 20px; border: 1px solid var(--nx-ink); border-radius: 999px; background: transparent; color: var(--nx-ink); font-weight: 600; font-size: 13px; cursor: pointer; justify-self: end; transition: background .25s, color .25s; }

/* STRIP */
.nx-strip { background: var(--nx-ink); padding: 0; overflow: hidden; }
.nx-strip__row { padding: 26px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nx-strip__row--alt { background: var(--nx-orange); border-bottom: 0; }
.nx-strip__row--alt .cta-track span { color: #fff; }
.cta-track { display:flex; gap: 40px; width: max-content; white-space: nowrap; align-items: center; }
.cta-track span { display:inline-flex; align-items:center; gap: 24px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 56px; color: #fff; padding-right: 24px; }
.cta-track em { display:inline-block; width: 14px; height: 14px; background: var(--nx-orange); border-radius: 50%; }
.cta-track em.--lime { background: #fff; }

/* CASES */
.nx-cases { padding: 140px 0; background: var(--nx-ink); color: #fff; }
.nx-cases__head {max-width: 900px;/* margin-bottom: 50px; */}
.nx-cases__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(42px, 6.5vw, 104px); line-height: 1.0; letter-spacing: -0.04em; margin: 16px 0 0; }
.nx-cases__title span { display: block; }
.nx-cases__title-italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-cases__grid {display:grid;grid-template-columns: repeat(3, 1fr);gap: 28px;}
.nx-case { background: rgba(255,255,255,0.04); border-radius: 14px; overflow: hidden; transition: background .3s, transform .3s; cursor: pointer; }
.nx-case:hover { background: rgba(237,94,78,0.08); transform: translateY(-6px); }
.nx-case--lg { grid-column: span 2; }
.nx-case__media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.nx-case--lg .nx-case__media { aspect-ratio: 16/7; }
.nx-case__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.nx-case:hover .nx-case__media img { transform: scale(1.06); }
.nx-case__metric { position:absolute; bottom: 16px; left: 16px; background: var(--nx-orange); color: #fff; padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.nx-case__row { display:flex; justify-content: space-between; align-items: center; padding: 24px 28px; }
.nx-case__cat { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); text-transform: lowercase; display:block; margin-bottom: 6px; }
.nx-case__row h3 { font-family: 'Inter'; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 0; }
.nx-case__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display:grid; place-items:center; color: #fff; transition: background .3s, color .3s, border-color .3s; flex-shrink: 0; }
.nx-case:hover .nx-case__arrow { background: var(--nx-orange); color: #fff; border-color: var(--nx-orange); }

/* APPROACH */
.nx-approach { padding: 140px 0; background: var(--nx-bg); }
.nx-approach__grid { display:grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.nx-approach__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(38px, 5vw, 72px); line-height: 1.05; letter-spacing: -0.03em; margin: 20px 0 24px; }
.nx-approach__title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-approach__lead { font-size: 17px; color: var(--nx-soft); line-height: 1.6; margin: 0 0 32px; }
.nx-approach__list { list-style:none; padding: 0; margin: 0; border-top: 1px solid var(--nx-line); }
.nx-approach__row { display:grid; grid-template-columns: 70px 1fr 40px; gap: 24px; align-items: start; padding: 28px 4px; border-bottom: 1px solid var(--nx-line); cursor: pointer; transition: padding .3s; }
.nx-approach__row:hover { padding-left: 16px; }
.nx-approach__row-n { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--nx-soft); padding-top: 6px; }
.nx-approach__row h3 { font-family: 'Inter'; font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.nx-approach__row p { font-size: 15px; color: var(--nx-soft); line-height: 1.6; margin: 8px 0 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .3s, margin .3s; }
.nx-approach__row.is-open p { max-height: 100px; opacity: 1; }
.nx-approach__row-arrow { font-family: 'Inter'; font-size: 32px; font-weight: 300; color: var(--nx-ink); text-align:right; transition: transform .35s; }
.nx-approach__row.is-open .nx-approach__row-arrow { transform: rotate(45deg); color: var(--nx-orange); }

/* BRANDS */
.nx-brands { padding: 60px 0; background: var(--nx-cream); border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); overflow: hidden; }
.nx-brands__head { display:flex; justify-content: space-between; align-items: center; margin-bottom: 36px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--nx-soft); }
.nx-brands__strip { overflow: hidden; }
.brands-track { gap: 48px; }
.nx-brands__item { display:flex; align-items:center; gap: 18px; font-family: 'Instrument Serif', serif; font-style: italic; font-size: 38px; color: var(--nx-ink); }
.nx-brands__star { color: var(--nx-orange); font-size: 22px; }

/* FOCUS */
.nx-focus { padding: 140px 0; background: var(--nx-ink); color: #fff; }
.nx-focus__head { max-width: 900px; margin-bottom: 60px; }
.nx-focus__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(42px, 6vw, 96px); line-height: 1.0; letter-spacing: -0.04em; margin: 16px 0 0; }
.nx-focus__title span { display: block; }
.nx-focus__title-italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-focus__lead { max-width: 600px; font-size: 17px; color: rgba(255,255,255,0.6); margin: 24px 0 0; line-height: 1.55; }
.nx-focus__grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.nx-focus__card { padding: 32px; background: rgba(255,255,255,0.04); border-radius: 14px; border: 1px solid rgba(255,255,255,0.06); transition: background .3s, transform .3s, border-color .3s; }
.nx-focus__card:hover { background: rgba(237,94,78,0.08); border-color: rgba(237,94,78,0.3); transform: translateY(-4px); }
.nx-focus__card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--nx-orange); color: #fff; display:grid; place-items:center; margin-bottom: 20px; }
.nx-focus__card h4 { font-family: 'Inter'; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; margin: 0 0 10px; }
.nx-focus__card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

/* FOOTER */
.nx-footer { background: var(--nx-bg); padding: 120px 0 40px; }
.nx-footer__head { max-width: 900px; margin-bottom: 60px; }
.nx-footer__title { font-family: 'Inter'; font-weight: 800; font-size: clamp(44px, 7vw, 112px); line-height: 1.0; letter-spacing: -0.04em; margin: 0; }
.nx-footer__title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.nx-footer__head p { font-size: 18px; color: var(--nx-soft); margin: 20px 0 0; }
.nx-footer__grid { display:grid; grid-template-columns: 1.6fr 1fr; gap: 80px; padding-top: 60px; border-top: 1px solid var(--nx-line); }
.nx-footer__field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nx-footer__field { display:flex; flex-direction:column; gap: 8px; margin-bottom: 24px; }
.nx-footer__field > span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--nx-soft); }
.nx-footer__field input, .nx-footer__field select, .nx-footer__field textarea { background: transparent; border: none; border-bottom: 1px solid var(--nx-line-strong); padding: 10px 0; font-family: inherit; font-size: 17px; color: var(--nx-ink); outline: none; transition: border-color .25s; }
.nx-footer__field input::placeholder, .nx-footer__field textarea::placeholder { color: rgba(14,14,14,0.3); }
.nx-footer__field input:focus, .nx-footer__field select:focus, .nx-footer__field textarea:focus { border-bottom-color: var(--nx-orange); }
.nx-footer__field textarea { resize: vertical; }

.nx-footer__aside { display:flex; flex-direction: column; gap: 28px; }
.nx-footer__block { display:flex; flex-direction: column; gap: 8px; }
.nx-footer__label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--nx-soft); }
.nx-footer__block p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--nx-ink); display:flex; align-items:center; gap: 10px; }
.nx-footer__block a:hover { color: var(--nx-orange); }
.nx-footer__social { display:flex; gap: 10px; }
.nx-footer__social a { width: 38px; height: 38px; display:grid; place-items:center; border: 1px solid var(--nx-line-strong); border-radius: 999px; transition: background .25s, color .25s, border-color .25s; }
.nx-footer__social a:hover { background: var(--nx-ink); color: #fff; border-color: var(--nx-ink); }
.nx-footer__partners { display:flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.nx-footer__partner { display:flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--nx-paper); border: 1px solid var(--nx-line); border-radius: 10px; font-size: 13px; font-weight: 500; color: var(--nx-ink); }
.nx-footer__partner .nx-partners__g { font-family: 'Inter'; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; line-height: 1; }
.nx-footer__wordmark { font-family: 'Inter'; font-weight: 800; font-size: clamp(56px, 14vw, 220px); letter-spacing: -0.06em; line-height: 1; text-align: center; color: var(--nx-blue); margin: 80px 0 40px; overflow: hidden; white-space: nowrap; }
.nx-footer__wordmark i { color: var(--nx-orange); font-style: normal; }
.nx-footer__base { display:flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--nx-line); font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--nx-soft); flex-wrap: wrap; gap: 8px; }

/* FLOATING ACTIONS */
.fab { position: fixed; right: 24px; top: 50%; transform: translateY(-50%); z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none; }
.fab > * { pointer-events: auto; }
.fab__stack { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s ease, opacity .25s ease; }
.fab.is-open .fab__stack { max-height: 360px; opacity: 1; }
.fab__item { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; transform: translateY(8px); opacity: 0; transition: transform .35s, opacity .25s; }
.fab.is-open .fab__item { transform: translateY(0); opacity: 1; }
.fab.is-open .fab__item:nth-child(1) { transition-delay: .05s; }
.fab.is-open .fab__item:nth-child(2) { transition-delay: .12s; }
.fab.is-open .fab__item:nth-child(3) { transition-delay: .19s; }
.fab__bubble { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 2px; padding: 10px 16px; background: var(--nx-paper); border: 1px solid var(--nx-line); border-radius: 14px; box-shadow: 0 10px 24px rgba(31,32,115,0.10); transform-origin: right center; transition: transform .25s ease; }
.fab__item:hover .fab__bubble { transform: scale(1.04); }
.fab__label { font-family: 'Inter'; font-size: 13px; font-weight: 700; color: var(--nx-ink); line-height: 1; }
.fab__sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--nx-soft); line-height: 1.1; }
.fab__btn { position: relative; width: 50px; height: 50px; border-radius: 50%; background: var(--c, var(--nx-ink)); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 26px rgba(0,0,0,0.18); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.fab__item:hover .fab__btn { transform: rotate(-8deg) scale(1.08); }
.fab__trigger { position: relative; width: 64px; height: 64px; border-radius: 50%; border: 0; background: var(--nx-ink); color: #fff; cursor: pointer; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(31,32,115,0.35); transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s; }
.fab__trigger:hover { transform: scale(1.06) rotate(10deg); background: var(--nx-orange); }
.fab.is-open .fab__trigger { background: var(--nx-orange); transform: rotate(90deg); }
.fab__trigger-icon { position: relative; z-index: 2; display: grid; place-items: center; transition: transform .3s; }
.fab__trigger-ring { position: absolute; inset: -6px; border-radius: 50%; border: 1.5px dashed rgba(237,94,78,0.55); animation: fabRing 14s linear infinite; }
.fab__trigger-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--nx-orange); opacity: 0; animation: fabPulse 2.4s ease-out infinite; }
@keyframes fabRing { to { transform: rotate(360deg); } }
@keyframes fabPulse { 0% { transform: scale(1); opacity: .35; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }
.fab__plus, .fab__close { transition: opacity .25s, transform .25s; }
.fab__close { position: absolute; opacity: 0; transform: scale(0.6); }
.fab.is-open .fab__plus { opacity: 0; transform: scale(0.6); }
.fab.is-open .fab__close { opacity: 1; transform: scale(1); }

/* ENQUIRY MODAL */
.lm-overlay { position: fixed; inset: 0; background: rgba(14,14,14,0.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 300; display: none; align-items: center; justify-content: center; padding: 24px; }
.lm-overlay.is-open { display: flex; animation: lmFade .3s ease; }
@keyframes lmFade { from { opacity: 0; } to { opacity: 1; } }
.lm-card { background: var(--nx-paper); border-radius: 18px; width: 100%; max-width: 880px; max-height: 92vh; overflow: auto; position: relative; animation: lmRise .4s cubic-bezier(.2,.7,.2,1); }
@keyframes lmRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.lm-close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: var(--nx-bg); border: 1px solid var(--nx-line); display: grid; place-items: center; cursor: pointer; z-index: 2; transition: background .25s, color .25s; }
.lm-close:hover { background: var(--nx-ink); color: #fff; }
.lm-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; min-height: 480px; }
.lm-info { padding: 44px 36px; background: var(--nx-ink); color: #fff; border-radius: 18px 0 0 18px; display: flex; flex-direction: column; justify-content: center; }
.lm-num { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--nx-orange); }
.lm-title { font-family: 'Inter'; font-weight: 800; font-size: 38px; letter-spacing: -0.02em; line-height: 1.05; margin: 16px 0 14px; }
.lm-desc { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 24px; }
.lm-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.lm-bullets li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.lm-bullets svg { color: var(--nx-orange); flex-shrink: 0; }
.lm-formwrap { padding: 44px 40px; }
.lm-form__head { font-family: 'Inter'; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; margin: 0 0 6px; }
.lm-form__sub { font-size: 14px; color: var(--nx-soft); margin: 0 0 26px; }
.lm-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.lm-field > span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--nx-soft); }
.lm-field input { background: transparent; border: none; border-bottom: 1px solid var(--nx-line-strong); padding: 10px 0; font-family: inherit; font-size: 16px; color: var(--nx-ink); outline: none; transition: border-color .25s; }
.lm-field input::placeholder { color: rgba(14,14,14,0.3); }
.lm-field input:focus { border-bottom-color: var(--nx-orange); }
.lm-mobile { display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--nx-line-strong); padding: 4px 0; transition: border-color .25s; }
.lm-mobile:focus-within { border-bottom-color: var(--nx-orange); }
.lm-mobile__cc { font-family: 'Inter'; font-weight: 700; font-size: 16px; color: var(--nx-ink); padding-right: 8px; border-right: 1px solid var(--nx-line); }
.lm-mobile input { border: 0; padding: 6px 0; flex: 1; }
.lm-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; background: var(--nx-ink); color: #fff; border: none; border-radius: 999px; font-family: inherit; font-weight: 600; font-size: 15px; cursor: pointer; margin-top: 14px; transition: background .25s, color .25s; width: 100%; }
.lm-btn:hover { background: var(--nx-orange); color: #fff; }
.lm-disclaimer { display: block; margin-top: 14px; font-size: 11px; color: var(--nx-soft); text-align: center; }
.error-message { display: block; min-height: 16px; margin-top: 6px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--nx-orange); }
.error-message:empty { min-height: 0; }
.animate-label { position: relative; }
.error-message label.error { color: var(--nx-orange); font-family: 'JetBrains Mono', monospace; font-size: 11px; }

/* THANK YOU */
.ty-page { position: relative; min-height: 100vh; background: var(--nx-bg); padding: 100px 0 80px; overflow: hidden; }
.ty-bg { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(47,49,146,0.08) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.6; }
.ty-wrap { position: relative; z-index: 2; max-width: 900px; }
.ty-badge { width: 72px; height: 72px; border-radius: 50%; background: var(--nx-orange); color: #fff; display: grid; place-items: center; margin-bottom: 28px; box-shadow: 0 14px 30px rgba(237,94,78,0.3); animation: tyPop .6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes tyPop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.ty-title { font-family: 'Inter'; font-weight: 800; font-size: clamp(40px, 6vw, 80px); line-height: 1.0; letter-spacing: -0.04em; color: var(--nx-blue); margin: 0 0 24px; }
.ty-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--nx-orange); }
.ty-lead { font-size: 18px; color: var(--nx-soft); line-height: 1.6; max-width: 720px; margin: 0 0 48px; }
.ty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.ty-step { padding: 24px; background: var(--nx-paper); border: 1px solid var(--nx-line); border-radius: 12px; }
.ty-step span { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--nx-soft); display: block; margin-bottom: 10px; }
.ty-step b { display: block; font-family: 'Inter'; font-weight: 700; font-size: 20px; letter-spacing: -0.01em; color: var(--nx-blue); margin-bottom: 6px; }
.ty-step p { margin: 0; font-size: 14px; color: var(--nx-soft); line-height: 1.55; }
.ty-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; padding: 18px 0; border-top: 1px solid var(--nx-line); border-bottom: 1px solid var(--nx-line); }
.ty-meta__item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--nx-ink); }
.ty-meta__item:hover { color: var(--nx-orange); }
.ty-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nx-header__nav { display: none; }
  .nx-header__mail { display: none; }
  .nx-burger { display: inline-flex; }
  .nx-cases__grid, .nx-focus__grid { grid-template-columns: repeat(2, 1fr); }
  .nx-case--lg { grid-column: span 2; }
  .nx-about__grid, .nx-approach__grid, .nx-footer__grid { grid-template-columns: 1fr; gap: 50px; }
  .nx-svc { grid-template-columns: 60px 60px 1fr 150px; }
  .nx-svc__desc { display: none; }
}
@media (max-width: 760px) {
  .nx-container { padding: 0 18px; }
  .nx-partners__row { justify-content: center; flex-wrap: wrap; gap: 12px; padding: 6px 0; font-size: 10px; }
  .nx-partners__divider { display: none; }
  .nx-partners__g { font-size: 13px !important; }
  .nx-header__row {padding: 12px 12px;gap: 10px;}
  .nx-brand { gap: 8px; }
  .nx-brand__name { font-size: 17px; }
  .nx-brand__tag { display: none; }
  .nx-header__right { gap: 8px; }
  .nx-header__right .nx-btn { padding: 9px 14px 9px 16px; font-size: 12px; gap: 6px; }
  .nx-mobile__panel { width: 100vw; max-width: 100vw; padding: 80px 24px 40px; }
  .nx-hero { padding: 30px 0 0; min-height: auto; }
  .nx-hero__inner { padding-bottom: 50px; }
  .nx-hero__bottom {flex-direction: column;align-items: stretch;gap: 28px;padding-top: 0;margin-top: 0;}
  .nx-hero__cta-wrap { align-self: flex-start; }
  .nx-hero__stats {grid-template-columns: repeat(2, 1fr);gap: 37px;padding: 49px 0 0px;border-bottom: none;}
  .nx-hero__stat-n { font-size: 26px; }
  .nx-about { padding: 90px 0; }
  .nx-about__head { margin-bottom: 50px; }
  .nx-about__grid { gap: 36px; margin-bottom: 60px; }
  .nx-about__stats { grid-template-columns: repeat(2, 1fr); }
  .ab-stat { border-right: 0; border-bottom: 1px solid var(--nx-line); padding: 24px 18px; }
  .ab-stat:nth-child(odd) { border-right: 1px solid var(--nx-line); }
  .ab-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .nx-services { padding: 90px 0; }
  .nx-svc { grid-template-columns: 44px 1fr 36px; gap: 14px; padding: 22px 4px; }
  .nx-svc__icon, .nx-svc__desc { display: none; }
  .nx-svc__title { font-size: 22px; }
  .nx-svc__btn { padding: 0; border: 0; background: transparent; font-size: 0; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--nx-ink); display: grid; place-items: center; justify-self: end; }
  .nx-svc__btn svg { display: block; }
  .nx-svc:hover { padding-left: 12px; }
  .nx-cases { padding: 90px 0; }
  .nx-cases__grid { grid-template-columns: 1fr; gap: 18px; }
  .nx-case--lg { grid-column: span 1; }
  .nx-case__row h3 { font-size: 18px; }
  .nx-approach { padding: 90px 0; }
  .nx-approach__row { grid-template-columns: 44px 1fr 30px; gap: 14px; padding: 22px 4px; }
  .nx-approach__row h3 { font-size: 22px; }
  .nx-brands__head { flex-direction: column; gap: 8px; text-align: center; }
  .nx-brands__item { font-size: 28px; gap: 12px; }
  .nx-focus { padding: 90px 0; }
  .nx-focus__grid { grid-template-columns: 1fr; gap: 18px; }
  .nx-focus__card { padding: 24px; }
  .cta-track span { font-size: 32px; gap: 16px; }
  .h-marquee__track span { font-size: 18px; }
  .nx-footer { padding: 80px 0 30px; }
  .nx-footer__head { margin-bottom: 40px; }
  .nx-footer__grid { padding-top: 40px; gap: 50px; }
  .nx-footer__field-row { grid-template-columns: 1fr; gap: 0; }
  .nx-footer__wordmark { font-size: clamp(46px, 16vw, 110px); margin: 50px 0 30px; }
  .nx-footer__base { flex-direction: column; gap: 10px; text-align: center; padding-top: 20px; }
  .lm-overlay { padding: 12px; }
  .lm-grid { grid-template-columns: 1fr; min-height: auto; }
  .lm-info { border-radius: 18px 18px 0 0; padding: 28px 24px; }
  .lm-formwrap { padding: 28px 24px; }
  .lm-title { font-size: 28px; }
  .fab { right: 14px; gap: 10px; top: auto; bottom: 20px; transform: none; }
  .fab__bubble { display: none; }
  .fab__btn { width: 46px; height: 46px; }
  .fab__trigger { width: 56px; height: 56px; }
  .ty-page { padding: 70px 0 60px; }
  .ty-grid { grid-template-columns: 1fr; }
  .ty-actions { flex-direction: column; align-items: stretch; }
}
@media (max-width: 420px) {
  .nx-hero__title { font-size: 46px; }
  .nx-footer__title { font-size: 42px; }
  .nx-about__title, .nx-services__title, .nx-cases__title, .nx-focus__title { font-size: 36px; }
  .nx-header__right .nx-btn span:not(.nx-btn__arrow) { display: none; }
  .nx-header__right .nx-btn { padding: 10px; width: 38px; height: 38px; justify-content: center; }
}