:root {
    --nts-bg: #04110c;
    --nts-bg-soft: #071a12;
    --nts-surface: #082018;
    --nts-surface-2: #0a281e;
    --nts-border: rgba(0, 242, 111, 0.36);
    --nts-border-strong: rgba(0, 242, 111, 0.62);
    --nts-green: #00f26f;
    --nts-green-dark: #00a94f;
    --nts-cyan: #25c8e8;
    --nts-amber: #ffb000;
    --nts-red: #ff5268;
    --nts-text: #f7fbf8;
    --nts-muted: #a5b6ad;
}

html {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    height: auto !important;
    overflow: visible !important;
    background: var(--nts-bg) !important;
}

html.nts-mobile-menu-open,
body.nts-mobile-menu-open {
    overflow: hidden !important;
}

#main-body {
    padding: 0 !important;
    background: var(--nts-bg) !important;
}

#main-body > .container,
#main-body > .container-fluid {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

#main-body > .container > .row,
#main-body > .container-fluid > .row {
    margin: 0 !important;
}

#main-body .primary-content {
    padding: 0 !important;
}

.footer-dark {
    margin-top: 0 !important;
}

.nts-home,
.nts-home * {
    box-sizing: border-box;
    letter-spacing: 0;
}

.nts-home {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: var(--nts-text);
    background: var(--nts-bg);
    font-family: Inter, Arial, sans-serif;
}

#particles-page-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.5;
}

#particles-page-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.nts-home > section > .nts-shell,
.nts-hero__next {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px), (prefers-reduced-motion: reduce) {
    #particles-page-bg {
        display: none;
    }
}

.nts-home a {
    text-decoration: none;
}

.nts-home img {
    display: block;
    max-width: 100%;
}

.nts-shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.nts-section {
    position: relative;
    padding: 88px 0;
    border-top: 1px solid rgba(0, 230, 105, 0.14);
}

.nts-kicker,
.nts-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nts-green);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
}

.nts-kicker--cyan {
    color: var(--nts-cyan);
}

.nts-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 48px;
    align-items: end;
    margin-bottom: 38px;
}

.nts-section-heading--compact {
    margin-bottom: 30px;
}

.nts-section-heading h2,
.nts-installer h2,
.nts-infrastructure h2 {
    margin: 9px 0 0;
    color: var(--nts-text);
    font-size: 38px;
    line-height: 1.12;
    font-weight: 800;
}

.nts-section-heading h2 span {
    color: var(--nts-green);
}

.nts-section-heading > p,
.nts-installer__copy > p,
.nts-infrastructure__copy > p {
    margin: 0;
    color: var(--nts-muted);
    font-size: 16px;
    line-height: 1.7;
}

.nts-button {
    position: relative;
    overflow: hidden;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    cursor: pointer;
    isolation: isolate;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nts-button:hover {
    transform: translateY(-2px);
}

.nts-button:active {
    transform: translateY(0);
}

.nts-button--primary {
    color: #001d0d !important;
    border: 2px solid transparent;
    background: linear-gradient(var(--nts-green), var(--nts-green)) padding-box,
        conic-gradient(from var(--nts-button-angle), var(--nts-green), var(--nts-cyan), #ffffff, var(--nts-green), var(--nts-green)) border-box;
    animation: ntsButtonBorder 3.2s linear infinite;
}

.nts-button--primary:hover {
    color: #001d0d !important;
    background: linear-gradient(var(--nts-green), var(--nts-green)) padding-box,
        conic-gradient(from var(--nts-button-angle), var(--nts-green), var(--nts-cyan), #ffffff, var(--nts-green), var(--nts-green)) border-box;
}

.nts-button--secondary {
    color: var(--nts-text) !important;
    border: 2px solid transparent;
    background: linear-gradient(#07130e, #07130e) padding-box,
        conic-gradient(from var(--nts-button-angle), rgba(0, 242, 111, 0.35), var(--nts-green), var(--nts-cyan), rgba(0, 242, 111, 0.35)) border-box;
    animation: ntsButtonBorder 3.2s linear infinite;
}

.nts-button--secondary:hover {
    color: var(--nts-text) !important;
    background: linear-gradient(#07130e, #07130e) padding-box,
        conic-gradient(from var(--nts-button-angle), rgba(0, 242, 111, 0.35), var(--nts-green), var(--nts-cyan), rgba(0, 242, 111, 0.35)) border-box;
}

.nts-button--glow {
    color: var(--nts-text) !important;
    border: 2px solid transparent;
    background: linear-gradient(#071a12, #071a12) padding-box,
        conic-gradient(from var(--nts-button-angle), var(--nts-green), var(--nts-cyan), var(--nts-green), #071a12, var(--nts-green)) border-box;
    animation: ntsButtonBorder 3.2s linear infinite;
}

.nts-button--glow:hover {
    color: var(--nts-text) !important;
    background: linear-gradient(#071a12, #071a12) padding-box,
        conic-gradient(from var(--nts-button-angle), var(--nts-green), var(--nts-cyan), var(--nts-green), #071a12, var(--nts-green)) border-box;
}

@property --nts-button-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes ntsButtonBorder {
    to { --nts-button-angle: 360deg; }
}

.nts-button:focus-visible,
.nts-text-link:focus-visible,
.nts-hero__next:focus-visible,
.nts-promo button:focus-visible {
    outline: 3px solid var(--nts-cyan);
    outline-offset: 3px;
}

.nts-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nts-green) !important;
    font-size: 14px;
    font-weight: 800;
}

.nts-text-link:hover {
    color: #55ffa0 !important;
}

.nts-text-link--cyan {
    color: var(--nts-cyan) !important;
}

.nts-hero {
    position: relative;
    min-height: 670px;
    height: 76vh;
    max-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #04110c;
    border-bottom: 1px solid var(--nts-border);
}

.nts-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.nts-hero__visual {
    position: absolute;
    z-index: 2;
    top: calc(50% + 16px);
    right: max(32px, 3vw);
    width: min(620px, 43vw);
    pointer-events: none;
    transform: translateY(-50%);
}

.nts-dashboard-preview {
    padding: 18px;
    overflow: hidden;
    color: var(--nts-text);
    border: 1px solid rgba(0, 242, 111, 0.52);
    border-radius: 8px;
    background: rgba(7, 28, 19, 0.96);
    box-shadow: 0 28px 74px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 242, 111, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: ntsDashboardFloat 6s ease-in-out infinite;
    backdrop-filter: blur(12px);
}

.nts-dashboard-preview__header,
.nts-dashboard-preview__metrics,
.nts-dashboard-preview__server {
    display: flex;
    align-items: center;
}

.nts-dashboard-preview__header {
    min-height: 34px;
    margin-bottom: 14px;
}

.nts-dashboard-preview__dots {
    display: flex;
    gap: 7px;
}

.nts-dashboard-preview__dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ff5f56;
}

.nts-dashboard-preview__dots span:nth-child(2) { background: #ffbd2e; }
.nts-dashboard-preview__dots span:nth-child(3) { background: #27c93f; }

.nts-dashboard-preview__url {
    min-width: 220px;
    margin: 0 auto;
    padding: 6px 18px;
    color: #789286;
    border: 1px solid rgba(0, 242, 111, 0.14);
    border-radius: 20px;
    background: rgba(1, 9, 5, 0.72);
    font-size: 10px;
    text-align: center;
}

.nts-dashboard-preview__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.nts-dashboard-preview__metrics > div,
.nts-dashboard-preview__panel,
.nts-dashboard-preview__chart {
    border: 1px solid rgba(0, 242, 111, 0.18);
    border-radius: 7px;
    background: rgba(4, 20, 13, 0.88);
}

.nts-dashboard-preview__metrics > div {
    min-height: 72px;
    padding: 12px;
}

.nts-dashboard-preview__metrics small,
.nts-dashboard-preview__server small,
.nts-dashboard-preview__label {
    display: block;
    color: #80968b;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.nts-dashboard-preview__metrics strong {
    display: block;
    margin-top: 7px;
    color: var(--nts-green);
    font-size: 18px;
}

.nts-dashboard-preview__metrics .is-cyan { color: var(--nts-cyan); }

.nts-dashboard-preview__panel {
    padding: 14px;
}

.nts-dashboard-preview__label {
    margin-bottom: 8px;
}

.nts-dashboard-preview__server {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nts-dashboard-preview__server:last-child { border-bottom: 0; }

.nts-dashboard-preview__flag {
    width: 22px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0, 242, 111, 0.12);
}

.nts-dashboard-preview__server > div > strong {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
}

.nts-dashboard-preview__status {
    text-align: right;
}

.nts-dashboard-preview__status strong {
    display: block;
    margin-top: 3px;
    color: var(--nts-green);
    font-size: 9px;
    text-transform: uppercase;
}

.nts-dashboard-preview__chart {
    margin-top: 12px;
    padding: 13px 14px;
}

.nts-dashboard-preview__bars {
    height: 42px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
}

.nts-dashboard-preview__bars i {
    flex: 1;
    min-height: 5px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(180deg, #32ff84 0%, #087a3d 100%);
    box-shadow: 0 0 9px rgba(0, 242, 111, 0.2);
}

@keyframes ntsDashboardFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-3deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-1deg) translateY(-8px); }
}

.nts-hero__shade {
    z-index: 1;
    background: linear-gradient(90deg, #04110c 0%, rgba(4, 17, 12, 0.96) 36%, rgba(4, 17, 12, 0.55) 58%, rgba(4, 17, 12, 0.04) 100%);
}

.nts-hero__inner {
    position: relative;
    z-index: 3;
}

.nts-hero__content {
    width: min(650px, 53%);
}

.nts-eyebrow {
    padding: 9px 12px;
    border: 1px solid rgba(0, 242, 111, 0.48);
    border-radius: 6px;
    background: rgba(0, 25, 12, 0.84);
}

.nts-hero h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    color: var(--nts-text);
    font-size: 62px;
    line-height: 1.02;
    font-weight: 900;
}

.nts-hero h1 span {
    color: var(--nts-green);
}

.nts-hero__lead {
    max-width: 680px;
    margin: 0;
    color: #c8d5ce;
    font-size: 18px;
    line-height: 1.65;
}

.nts-hero__actions,
.nts-installer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.nts-hero__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 30px;
    color: #b8c9c0;
    font-size: 13px;
    font-weight: 700;
}

.nts-hero__signals span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nts-hero__signals i {
    color: var(--nts-cyan);
}

.nts-hero__next {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--nts-green) !important;
    border: 1px solid var(--nts-border);
    border-radius: 50%;
    background: rgba(0, 12, 7, 0.82);
    transform: translateX(-50%);
}

.nts-proof {
    border-bottom: 1px solid rgba(0, 230, 105, 0.15);
    background: #071a12;
}

.nts-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nts-proof__item {
    min-height: 116px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px;
    border-left: 1px solid rgba(0, 230, 105, 0.16);
}

.nts-proof__item:last-child {
    border-right: 1px solid rgba(0, 230, 105, 0.16);
}

.nts-proof__item > i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--nts-green);
    border: 1px solid var(--nts-border);
    border-radius: 7px;
    background: #071a11;
}

.nts-proof__item strong,
.nts-proof__item span {
    display: block;
}

.nts-proof__item strong {
    color: var(--nts-text);
    font-size: 15px;
}

.nts-proof__item span {
    margin-top: 3px;
    color: var(--nts-muted);
    font-size: 12px;
}

.nts-solutions {
    background: var(--nts-bg);
}

.nts-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.nts-offer {
    min-height: 390px;
    padding: 32px;
    border: 1px solid var(--nts-border);
    border-radius: 8px;
    background: var(--nts-surface);
}

.nts-offer--panel {
    border-color: rgba(37, 200, 232, 0.42);
    background: #061419;
}

.nts-offer__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nts-green);
    font-size: 12px;
    font-weight: 900;
}

.nts-offer--panel .nts-offer__topline {
    color: var(--nts-cyan);
}

.nts-offer__topline i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 7px;
}

.nts-offer h3 {
    margin: 28px 0 12px;
    color: var(--nts-text);
    font-size: 28px;
    line-height: 1.18;
    font-weight: 850;
}

.nts-offer > p {
    min-height: 76px;
    margin: 0;
    color: var(--nts-muted);
    font-size: 15px;
    line-height: 1.65;
}

.nts-offer ul,
.nts-price-card ul {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.nts-offer li,
.nts-price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 11px 0;
    color: #d9e4de;
    font-size: 14px;
    line-height: 1.45;
}

.nts-offer li i,
.nts-price-card li i {
    margin-top: 3px;
    color: var(--nts-green);
    font-size: 11px;
}

.nts-installer {
    padding: 70px 0;
    border-top: 1px solid rgba(37, 200, 232, 0.28);
    border-bottom: 1px solid rgba(37, 200, 232, 0.28);
    background: #061917;
}

.nts-installer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(400px, 1fr);
    gap: 60px;
    align-items: center;
}

.nts-installer h2 {
    max-width: 700px;
    margin-bottom: 16px;
}

.nts-installer__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(37, 200, 232, 0.34);
    border-radius: 8px;
    background: #061b20;
}

.nts-installer__metrics div {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border-left: 1px solid rgba(37, 200, 232, 0.22);
}

.nts-installer__metrics div:first-child {
    border-left: 0;
}

.nts-installer__metrics strong {
    color: var(--nts-cyan);
    font-size: 23px;
    line-height: 1.1;
}

.nts-installer__metrics span {
    margin-top: 7px;
    color: #a8c0c5;
    font-size: 12px;
    line-height: 1.45;
}

.nts-apps {
    background: #05140f;
}

.nts-app-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.nts-app-card {
    min-width: 0;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(0, 230, 105, 0.3);
    border-radius: 8px;
    background: #020b07;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nts-app-card:hover {
    border-color: var(--nts-green);
    background: #07160f;
    transform: translateY(-3px);
}

.nts-app-card[hidden] {
    display: none !important;
}

.nts-app-card__logo {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
}

.nts-app-card__logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.nts-app-card h3 {
    margin: 0;
    color: var(--nts-text);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.nts-app-card p {
    margin: 5px 0 0;
    color: var(--nts-muted);
    font-size: 11px;
    line-height: 1.35;
}

.nts-apps__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
}

.nts-infrastructure {
    background: #071a12;
}

.nts-infrastructure__grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 66px;
    align-items: center;
}

.nts-infrastructure__media {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--nts-border);
    border-radius: 8px;
    background: #020806;
}

.nts-infrastructure__media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    opacity: 0.8;
}

.nts-infrastructure h2 {
    margin-bottom: 16px;
}

.nts-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.nts-feature-list > div {
    min-height: 116px;
    display: flex;
    gap: 13px;
    padding: 18px;
    border: 1px solid rgba(0, 230, 105, 0.22);
    border-radius: 7px;
    background: #07150f;
}

.nts-feature-list i {
    margin-top: 2px;
    color: var(--nts-green);
}

.nts-feature-list span,
.nts-feature-list strong {
    display: block;
}

.nts-feature-list strong {
    margin-bottom: 6px;
    color: var(--nts-text);
    font-size: 13px;
}

.nts-feature-list span {
    color: var(--nts-muted);
    font-size: 12px;
    line-height: 1.45;
}

.nts-os {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #04110c;
}

.nts-os-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.nts-os-card {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(0, 230, 105, 0.26);
    border-radius: 8px;
    background: var(--nts-surface);
}

.nts-os-card img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.nts-os-card img.nts-os-card__logo--featured {
    width: 56px;
    height: 56px;
}

.nts-os-card:last-child img {
    width: 72px;
}

.nts-os-card span {
    color: var(--nts-text);
    font-size: 13px;
    font-weight: 800;
}

.nts-enterprise {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(0, 242, 111, 0.28);
    border-bottom: 1px solid rgba(0, 242, 111, 0.28);
    background:
        linear-gradient(90deg, rgba(0, 242, 111, 0.035), transparent 30%, transparent 70%, rgba(37, 200, 232, 0.035)),
        #071a12;
}

.nts-enterprise__inner {
    position: relative;
    width: min(1240px, calc(100% - 40px));
    min-height: 470px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    align-items: end;
}

.nts-enterprise__inner::before {
    content: "";
    position: absolute;
    inset: 32px 210px 0;
    z-index: -1;
    border: 1px solid rgba(0, 242, 111, 0.11);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: rgba(4, 22, 14, 0.5);
}

.nts-enterprise__person {
    position: relative;
    align-self: end;
    height: 410px;
    overflow: hidden;
    border: 1px solid rgba(0, 242, 111, 0.38);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    background: #06130e;
    box-shadow: 0 -18px 44px rgba(0, 242, 111, 0.08);
}

.nts-enterprise__person img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.95) contrast(1.04) brightness(1.04);
}

.nts-enterprise__person::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 58%, rgba(4, 17, 12, 0.52));
}

.nts-enterprise__content {
    align-self: center;
    padding: 62px 38px 52px;
    text-align: center;
}

.nts-enterprise__badge,
.nts-enterprise__country {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--nts-green);
    font-weight: 800;
}

.nts-enterprise__badge {
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 242, 111, 0.46);
    border-radius: 6px;
    background: rgba(0, 47, 24, 0.46);
    font-size: 12px;
}

.nts-enterprise h2 {
    max-width: 720px;
    margin: 22px auto 18px;
    color: var(--nts-text);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 900;
}

.nts-enterprise h2 span {
    color: var(--nts-green);
}

.nts-enterprise__title-flag {
    width: 34px;
    height: 24px;
    display: inline-block !important;
    margin-left: 9px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    object-fit: cover;
    vertical-align: -3px;
    box-shadow: 0 0 12px rgba(0, 242, 111, 0.18);
}

.nts-enterprise p {
    max-width: 650px;
    margin: 0 auto;
    color: #b9c8c0;
    font-size: 16px;
    line-height: 1.7;
}

.nts-enterprise__country {
    margin: 20px auto 22px;
    color: #c9d8d0;
    font-size: 13px;
}

.nts-enterprise__country-flag {
    width: 24px;
    height: 17px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 242, 111, 0.14);
}

.nts-enterprise .nts-button {
    min-width: 230px;
}

.nts-pricing {
    background: #071a12;
}

.nts-panel-plans {
    background: #06191c;
    border-top-color: rgba(37, 200, 232, 0.25);
}

.nts-promo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 242, 111, 0.42);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(0, 242, 111, 0.06), rgba(4, 17, 12, 0.94) 48%, rgba(37, 200, 232, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.nts-promo__offer,
.nts-promo__coupon {
    display: flex;
    align-items: center;
    gap: 13px;
}

.nts-promo__offer > i {
    color: #ff8a00;
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(255, 138, 0, 0.25));
}

.nts-promo strong,
.nts-promo span {
    display: block;
}

.nts-promo strong {
    color: var(--nts-text);
    font-size: 17px;
}

.nts-promo__offer > span {
    margin-top: 2px;
    color: var(--nts-muted);
    font-size: 12px;
}

.nts-promo__coupon {
    justify-content: flex-end;
}

.nts-promo__coupon > span {
    margin: 0;
    color: var(--nts-muted);
    font-size: 12px;
    font-weight: 700;
}

.nts-promo__coupon code {
    min-width: 172px;
    padding: 10px 16px;
    color: var(--nts-green);
    border: 1px dashed rgba(0, 242, 111, 0.52);
    border-radius: 6px;
    background: rgba(0, 28, 14, 0.72);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-align: center;
}

.nts-promo button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    color: var(--nts-green);
    border: 1px solid rgba(0, 242, 111, 0.44);
    border-radius: 6px;
    background: #080704;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.nts-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.nts-price-grid--panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nts-price-card {
    position: relative;
    min-width: 0;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(0, 230, 105, 0.26);
    border-radius: 8px;
    background: #06170f;
}

.nts-price-card--panel {
    border-color: rgba(37, 200, 232, 0.3);
    background: #071b20;
}

.nts-price-card--featured {
    border-color: var(--nts-green);
    box-shadow: 0 18px 44px rgba(0, 242, 111, 0.12);
}

.nts-price-card__badge {
    position: absolute;
    top: -12px;
    left: 18px;
    padding: 6px 10px;
    color: #002713;
    border-radius: 5px;
    background: var(--nts-green);
    font-size: 10px;
    font-weight: 900;
}

.nts-price-card__badge--cyan {
    color: #001d24;
    background: var(--nts-cyan);
}

.nts-price-card__discount {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    color: #fff;
    border-radius: 999px;
    background: #ff7a00;
    box-shadow: 0 8px 22px rgba(255, 122, 0, 0.2);
    font-size: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.nts-price-card__head > span {
    color: var(--nts-green);
    font-size: 10px;
    font-weight: 900;
}

.nts-price-card--panel .nts-price-card__head > span {
    color: var(--nts-cyan);
}

.nts-price-card__head h3 {
    margin: 8px 0 0;
    color: var(--nts-text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
    overflow-wrap: anywhere;
}

.nts-price-card__price {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 22px 0 8px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 230, 105, 0.16);
    border-bottom: 1px solid rgba(0, 230, 105, 0.16);
}

.nts-price-card__price small,
.nts-price-card__price span {
    color: var(--nts-muted);
    font-size: 11px;
}

.nts-price-card__price strong {
    margin: 4px 0;
    color: var(--nts-text);
    font-size: 29px;
    line-height: 1.1;
}

.nts-price-card:not(.nts-price-card--panel) .nts-price-card__price strong {
    color: #ff9700;
}

.nts-home.nts-motion-ready .nts-motion-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease, box-shadow 220ms ease;
    transition-delay: var(--nts-card-delay, 0ms);
}

.nts-home.nts-motion-ready .nts-motion-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
}

@media (hover: hover) {
    .nts-home.nts-motion-ready .nts-motion-card.is-visible:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 242, 111, 0.68);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26), 0 0 24px rgba(0, 242, 111, 0.08);
    }
}

.nts-price-card ul {
    flex: 1;
}

.nts-price-card > .nts-button {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.nts-empty-state {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    text-align: center;
    border: 1px dashed rgba(0, 230, 105, 0.42);
    border-radius: 8px;
    background: #04100b;
}

.nts-empty-state--cyan {
    border-color: rgba(37, 200, 232, 0.45);
    background: #06161a;
}

.nts-empty-state > i {
    color: var(--nts-green);
    font-size: 28px;
}

.nts-empty-state h3 {
    margin: 16px 0 8px;
    color: var(--nts-text);
    font-size: 20px;
}

.nts-empty-state p {
    margin: 0 0 20px;
    color: var(--nts-muted);
}

.nts-value-strip {
    position: relative;
    padding: 72px 0 76px;
    border-top: 1px solid var(--nts-border);
    background: linear-gradient(180deg, rgba(4, 19, 12, 0.82), rgba(2, 12, 8, 0.94));
}

.nts-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(36px, 5vw, 76px);
}

.nts-value-item {
    min-width: 0;
    padding: 4px 10px;
    text-align: center;
}

.nts-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    color: var(--nts-green);
    font-size: 32px;
    transition: transform 180ms ease;
}

.nts-value-item:hover .nts-value-icon {
    transform: translateY(-3px);
}

.nts-value-item h3 {
    margin: 0 0 12px;
    color: var(--nts-text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 850;
}

.nts-value-item p {
    max-width: 430px;
    margin: 0 auto;
    color: #91a39a;
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 1180px) {
    .nts-hero__visual {
        right: -7%;
        width: 60vw;
    }

    .nts-hero h1 {
        font-size: 52px;
    }

    .nts-app-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .nts-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nts-installer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .nts-enterprise__inner {
        grid-template-columns: 190px minmax(0, 1fr) 190px;
    }

    .nts-enterprise__person {
        height: 350px;
    }

    .nts-enterprise h2 {
        font-size: 31px;
    }
}

@media (max-width: 900px) {
    .nts-section {
        padding: 68px 0;
    }

    .nts-hero {
        min-height: 650px;
        height: auto;
        padding: 100px 0 90px;
    }

    .nts-hero h1 {
        font-size: 48px;
    }

    .nts-hero__visual {
        display: none;
    }

    .nts-hero__shade {
        background: rgba(2, 8, 6, 0.72);
    }

    .nts-hero__content {
        width: 100%;
    }

    .nts-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nts-proof__item:nth-child(3) {
        border-top: 1px solid rgba(0, 230, 105, 0.16);
    }

    .nts-proof__item:nth-child(4) {
        border-top: 1px solid rgba(0, 230, 105, 0.16);
        border-right: 1px solid rgba(0, 230, 105, 0.16);
    }

    .nts-section-heading,
    .nts-infrastructure__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .nts-offer-grid {
        grid-template-columns: 1fr;
    }

    .nts-infrastructure__media,
    .nts-infrastructure__media img {
        min-height: 360px;
    }

    .nts-os-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nts-value-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nts-value-item {
        padding: 30px 12px;
        border-bottom: 1px solid rgba(0, 230, 105, 0.14);
    }

    .nts-value-item:last-child {
        border-bottom: 0;
    }

    .nts-enterprise__inner {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .nts-enterprise__inner::before,
    .nts-enterprise__person {
        display: none;
    }

    .nts-enterprise__content {
        padding: 68px 28px;
    }
}

@media (max-width: 640px) {
    .nts-shell {
        width: min(100% - 24px, 1240px);
    }

    .nts-section {
        padding: 54px 0;
    }

    .nts-section-heading h2,
    .nts-installer h2,
    .nts-infrastructure h2 {
        font-size: 30px;
    }

    .nts-hero {
        min-height: 640px;
        padding: 112px 0 76px;
    }

    .nts-hero h1 {
        font-size: 40px;
    }

    .nts-hero__lead {
        font-size: 16px;
    }

    .nts-hero__actions,
    .nts-installer__actions {
        width: 100%;
        flex-direction: column;
    }

    .nts-hero__actions .nts-button,
    .nts-installer__actions .nts-button {
        width: 100%;
    }

    .nts-hero__signals {
        flex-direction: column;
        gap: 10px;
    }

    .nts-proof__grid,
    .nts-installer__metrics,
    .nts-feature-list,
    .nts-price-grid,
    .nts-price-grid--panel {
        grid-template-columns: 1fr;
    }

    .nts-proof__item,
    .nts-proof__item:last-child {
        min-height: 94px;
        padding: 18px 14px;
        border-right: 1px solid rgba(0, 230, 105, 0.16);
        border-bottom: 1px solid rgba(0, 230, 105, 0.16);
    }

    .nts-offer {
        min-height: auto;
        padding: 24px 20px;
    }

    .nts-offer > p {
        min-height: 0;
    }

    .nts-installer__metrics div,
    .nts-installer__metrics div:first-child {
        min-height: 94px;
        border-left: 0;
        border-top: 1px solid rgba(37, 200, 232, 0.22);
    }

    .nts-installer__metrics div:first-child {
        border-top: 0;
    }

    .nts-app-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .nts-app-card {
        min-height: 142px;
        padding: 14px;
    }

    .nts-app-card__logo,
    .nts-app-card__logo img {
        width: 46px;
        height: 46px;
    }

    .nts-apps__footer,
    .nts-promo {
        align-items: stretch;
        flex-direction: column;
    }

    .nts-promo__coupon {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nts-promo__coupon code {
        flex: 1 1 170px;
        min-width: 0;
    }

    .nts-apps__footer .nts-button,
    .nts-apps__footer .nts-text-link {
        width: 100%;
        justify-content: center;
    }

    .nts-infrastructure__media,
    .nts-infrastructure__media img {
        min-height: 260px;
    }

    .nts-os-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nts-price-card {
        min-height: auto;
    }

    .nts-enterprise__inner {
        width: calc(100% - 24px);
    }

    .nts-enterprise__content {
        padding: 56px 0;
    }

    .nts-enterprise h2 {
        font-size: 28px;
    }

    .nts-enterprise p {
        font-size: 15px;
    }

    .nts-enterprise .nts-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .nts-button,
    .nts-app-card {
        transition: none;
    }

    .nts-button:hover,
    .nts-button:active {
        transform: none;
    }

    .nts-button--primary,
    .nts-button--glow,
    .nts-dashboard-preview {
        animation: none;
    }

    .nts-button::after {
        display: none;
    }
}
