:root {
    --nx-bg: #f5f8fc;
    --nx-bg-2: #eaf2fb;
    --nx-card: rgba(255, 255, 255, 0.92);
    --nx-card-2: rgba(248, 251, 255, 0.96);
    --nx-border: rgba(15, 87, 130, 0.14);
    --nx-border-strong: rgba(2, 132, 199, 0.32);
    --nx-text: #0f2137;
    --nx-muted: #6b7f95;
    --nx-soft: #3f5871;
    --nx-accent: #0284c7;
    --nx-accent-2: #0ea5e9;
    --nx-accent-3: #06b6d4;
    --nx-orange: #f97316;
    --nx-orange-2: #fb923c;
    --nx-success: #059669;
    --nx-warning: #d97706;
    --nx-danger: #dc2626;
    --nx-shadow: 0 24px 70px rgba(15, 35, 60, 0.10);
    --nx-radius-lg: 30px;
    --nx-radius-md: 20px;
    --nx-radius-sm: 14px;
    --nx-max: 1640px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(14, 165, 233, 0.18), transparent 34%),
        radial-gradient(circle at 92% 14%, rgba(249, 115, 22, 0.10), transparent 32%),
        radial-gradient(circle at 52% 96%, rgba(6, 182, 212, 0.12), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 46%, #eaf2fb 100%);
    color: var(--nx-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.nx-bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(2, 132, 199, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2, 132, 199, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 90%);
}

.nx-bg-glow {
    position: fixed;
    width: 520px;
    height: 520px;
    z-index: -2;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(76px);
    opacity: 0.30;
}

.nx-bg-glow-a {
    top: -190px;
    left: -150px;
    background: #38bdf8;
}

.nx-bg-glow-b {
    right: -180px;
    bottom: 4%;
    background: #fb923c;
}

.nx-shell {
    width: min(100% - 48px, var(--nx-max));
    margin-left: auto;
    margin-right: auto;
}

/* TOP BAR */

.nx-topbar {
    position: sticky;
    top: 18px;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(15, 35, 60, 0.10);
    backdrop-filter: blur(18px);
}

.nx-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.nx-brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #ffffff;
    font-weight: 950;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #0284c7, #06b6d4);
    box-shadow: 0 12px 26px rgba(2, 132, 199, 0.25);
}

.nx-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.nx-brand-text strong {
    font-size: 1.04rem;
    letter-spacing: 0.12em;
    color: var(--nx-text);
}

.nx-brand-text span {
    margin-top: 4px;
    color: var(--nx-muted);
    font-size: 0.75rem;
}

.nx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.2vw, 34px);
    color: var(--nx-soft);
    font-size: 0.92rem;
    font-weight: 780;
}

.nx-nav a {
    transition: color 0.2s ease;
}

.nx-nav a:hover {
    color: var(--nx-accent);
}

.nx-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

/* BUTTONS */

.nx-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 18px;
    color: var(--nx-text);
    font-weight: 850;
    font-size: 0.92rem;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.nx-btn:hover {
    transform: translateY(-1px);
}

.nx-btn:active {
    transform: translateY(0);
}

.nx-btn:focus-visible,
.nx-category-btn:focus-visible,
.nx-search:focus-visible,
.nx-pwa-close:focus-visible {
    outline: 3px solid rgba(2, 132, 199, 0.20);
    outline-offset: 2px;
}

.nx-btn-primary {
    border-color: rgba(2, 132, 199, 0.32);
    background: linear-gradient(135deg, #0284c7, #06b6d4 55%, #38bdf8);
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(2, 132, 199, 0.24);
}

.nx-btn-primary:hover {
    box-shadow: 0 18px 42px rgba(2, 132, 199, 0.32);
}

.nx-btn-orange {
    border-color: rgba(249, 115, 22, 0.30);
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #fff7ed;
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.20);
}

.nx-btn-orange:hover {
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.28);
}

.nx-btn-ghost {
    border-color: rgba(15, 87, 130, 0.16);
    background: rgba(255, 255, 255, 0.72);
    color: var(--nx-soft);
}

.nx-btn-ghost:hover {
    border-color: var(--nx-border-strong);
    background: #ffffff;
    color: var(--nx-accent);
}

/* HERO */

.nx-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
    gap: 26px;
    align-items: stretch;
    padding: 70px 0 44px;
}

.nx-hero-panel {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 4.2vw, 68px);
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: var(--nx-radius-lg);
    background:
        radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.13), transparent 42%),
        radial-gradient(circle at 100% 80%, rgba(249, 115, 22, 0.07), transparent 38%),
        rgba(255, 255, 255, 0.82);
    box-shadow: var(--nx-shadow);
    backdrop-filter: blur(18px);
}

.nx-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--nx-accent);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nx-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--nx-success);
    box-shadow: 0 0 18px rgba(5, 150, 105, 0.45);
}

.nx-hero h1 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3rem, 5.4vw, 6.35rem);
    line-height: 0.94;
    letter-spacing: -0.078em;
    color: var(--nx-text);
}

.nx-hero h1 span {
    color: var(--nx-accent);
    text-shadow: none;
}

.nx-hero p {
    max-width: 850px;
    margin: 22px 0 0;
    color: var(--nx-soft);
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.78;
}

.nx-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* STATS */

.nx-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    height: 100%;
}

.nx-stat-card {
    min-height: 272px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(22px, 2.4vw, 34px);
    border: 1px solid rgba(15, 87, 130, 0.13);
    border-radius: 26px;
    background:
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.13), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.82));
    box-shadow: 0 16px 44px rgba(15, 35, 60, 0.08);
    overflow: hidden;
    position: relative;
}

.nx-stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), transparent 36%),
        radial-gradient(circle at 80% 90%, rgba(249, 115, 22, 0.06), transparent 32%);
    pointer-events: none;
}

.nx-stat-card strong,
.nx-stat-card span {
    position: relative;
}

.nx-stat-card strong {
    font-size: clamp(2.55rem, 4.2vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    color: var(--nx-accent);
}

.nx-stat-card span {
    display: block;
    max-width: 260px;
    margin-top: 12px;
    color: var(--nx-muted);
    font-size: 0.9rem;
    font-weight: 850;
}

/* SECTIONS */

.nx-section {
    padding: 54px 0;
}

.nx-section-large {
    padding: 82px 0;
}

.nx-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 28px;
}

.nx-section-label {
    display: inline-block;
    color: var(--nx-accent);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nx-section-header h2,
.nx-copy-block h2 {
    margin: 8px 0 0;
    font-size: clamp(2.1rem, 3.4vw, 4.1rem);
    line-height: 1;
    letter-spacing: -0.065em;
    color: var(--nx-text);
}

.nx-section-header p {
    max-width: 760px;
    margin: 0;
    color: var(--nx-soft);
    line-height: 1.72;
    font-size: 1rem;
}

.nx-card {
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: var(--nx-radius-lg);
    background: var(--nx-card);
    box-shadow: var(--nx-shadow);
    backdrop-filter: blur(18px);
}

.nx-copy-block {
    padding: clamp(28px, 3.8vw, 58px);
}

.nx-copy-block p {
    max-width: 1180px;
    color: var(--nx-soft);
    line-height: 1.82;
    font-size: 1.03rem;
}

.nx-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.nx-info-card {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(15, 87, 130, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.82));
    box-shadow: 0 12px 34px rgba(15, 35, 60, 0.06);
}

.nx-info-card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
    letter-spacing: -0.03em;
    color: var(--nx-text);
}

.nx-info-card p {
    margin: 0;
    color: var(--nx-muted);
    line-height: 1.72;
    font-size: 0.96rem;
}

/* FILTER */

.nx-filter-panel {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    align-items: center;
    padding: 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 36px rgba(15, 35, 60, 0.07);
}

.nx-search {
    min-height: 52px;
    width: 100%;
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: 17px;
    background: #ffffff;
    color: var(--nx-text);
    padding: 0 16px;
    outline: none;
    font-weight: 760;
}

.nx-search::placeholder {
    color: rgba(107, 127, 149, 0.72);
}

.nx-search:focus {
    border-color: rgba(2, 132, 199, 0.46);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.10);
}

.nx-category-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nx-category-btn {
    min-height: 40px;
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--nx-soft);
    padding: 0 14px;
    font-weight: 850;
    font-size: 0.84rem;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.nx-category-btn:hover {
    transform: translateY(-1px);
    border-color: var(--nx-border-strong);
    color: var(--nx-accent);
}

.nx-category-btn.is-active {
    border-color: rgba(2, 132, 199, 0.34);
    background: rgba(2, 132, 199, 0.09);
    color: var(--nx-accent);
}

/* APP CARDS */

.nx-apps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.nx-app-card {
    display: flex;
    flex-direction: column;
    min-height: 350px;
    padding: 24px;
    border: 1px solid rgba(15, 87, 130, 0.14);
    border-radius: 26px;
    background:
        radial-gradient(circle at 16% 0%, rgba(14, 165, 233, 0.10), transparent 40%),
        rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 46px rgba(15, 35, 60, 0.08);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.nx-app-card:hover {
    transform: translateY(-4px);
    border-color: var(--nx-border-strong);
    box-shadow: 0 22px 56px rgba(2, 132, 199, 0.14);
}

.nx-app-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.nx-app-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 19px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(249, 115, 22, 0.08));
    border: 1px solid rgba(2, 132, 199, 0.16);
    font-size: 1.48rem;
}

.nx-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(5, 150, 105, 0.08);
    border: 1px solid rgba(5, 150, 105, 0.20);
    color: var(--nx-success);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nx-app-category,
.nx-app-type {
    color: var(--nx-accent);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nx-app-card h3 {
    margin: 8px 0 0;
    font-size: 1.42rem;
    line-height: 1.06;
    letter-spacing: -0.045em;
    color: var(--nx-text);
}

.nx-app-card p {
    margin: 13px 0 0;
    color: var(--nx-soft);
    line-height: 1.72;
    font-size: 0.96rem;
}

.nx-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.nx-tags span {
    padding: 7px 9px;
    border: 1px solid rgba(15, 87, 130, 0.12);
    border-radius: 999px;
    background: rgba(245, 248, 252, 0.90);
    color: #4f6982;
    font-size: 0.74rem;
    font-weight: 850;
}

.nx-app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 22px;
}

.nx-empty {
    padding: 28px;
    text-align: center;
    border: 1px dashed rgba(15, 87, 130, 0.22);
    border-radius: 22px;
    color: var(--nx-muted);
    background: rgba(255, 255, 255, 0.64);
}

/* ROADMAP */

.nx-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.nx-roadmap-item {
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(15, 87, 130, 0.13);
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.08), transparent 42%),
        rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 30px rgba(15, 35, 60, 0.05);
}

.nx-roadmap-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--nx-text);
    font-size: 1.05rem;
}

.nx-roadmap-item span {
    color: var(--nx-muted);
    font-size: 0.9rem;
    line-height: 1.62;
}

/* FAQ */

.nx-faq {
    display: grid;
    gap: 12px;
}

.nx-faq details {
    border: 1px solid rgba(15, 87, 130, 0.13);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
    padding: 18px 20px;
}

.nx-faq summary {
    cursor: pointer;
    color: var(--nx-text);
    font-weight: 900;
}

.nx-faq p {
    margin: 12px 0 0;
    color: var(--nx-soft);
    line-height: 1.75;
}

/* FOOTER */

.nx-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(15, 87, 130, 0.12);
    background: rgba(255, 255, 255, 0.78);
}

.nx-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
    gap: 28px;
    padding: 42px 0;
}

.nx-footer h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    color: var(--nx-text);
}

.nx-footer p,
.nx-footer a,
.nx-footer span {
    color: var(--nx-muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.nx-footer a:hover {
    color: var(--nx-accent);
}

.nx-footer-links {
    display: grid;
    gap: 9px;
}

.nx-footer-bottom {
    padding: 18px 0 30px;
    border-top: 1px solid rgba(15, 87, 130, 0.10);
    color: var(--nx-muted);
    text-align: center;
    font-size: 0.86rem;
}

/* TOAST / PWA */

.nx-toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 80;
    width: min(92vw, 520px);
    padding: 14px 16px;
    border: 1px solid rgba(2, 132, 199, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--nx-text);
    font-size: 0.9rem;
    font-weight: 750;
    text-align: center;
    box-shadow: var(--nx-shadow);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
}

.nx-pwa-help {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(15, 35, 60, 0.34);
    backdrop-filter: blur(12px);
}

.nx-pwa-help-card {
    position: relative;
    width: min(100%, 520px);
    padding: 24px;
    border: 1px solid rgba(2, 132, 199, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 20% 0%, rgba(14, 165, 233, 0.12), transparent 40%),
        rgba(255, 255, 255, 0.96);
    box-shadow: var(--nx-shadow);
}

.nx-pwa-help-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--nx-accent);
    font-size: 1.05rem;
}

.nx-pwa-help-card p {
    margin: 0;
    color: var(--nx-soft);
    line-height: 1.7;
}

.nx-pwa-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(15, 87, 130, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: var(--nx-text);
    font-size: 1.35rem;
    line-height: 1;
}

.nx-noscript {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
    padding: 14px 16px;
    border: 1px solid rgba(217, 119, 6, 0.30);
    border-radius: 16px;
    background: #fff7ed;
    color: #92400e;
    box-shadow: var(--nx-shadow);
}

/* RESPONSIVE */

@media (min-width: 1800px) {
    .nx-shell {
        width: min(100% - 72px, 1720px);
    }

    .nx-hero {
        grid-template-columns: minmax(0, 1.2fr) minmax(500px, 0.8fr);
    }

    .nx-hero-panel {
        min-height: 620px;
    }

    .nx-stat-card {
        min-height: 302px;
    }

    .nx-apps-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .nx-shell {
        width: min(100% - 36px, var(--nx-max));
    }

    .nx-topbar {
        grid-template-columns: 1fr;
        justify-items: center;
        border-radius: 28px;
    }

    .nx-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .nx-hero {
        grid-template-columns: 1fr;
    }

    .nx-hero-panel {
        min-height: auto;
    }

    .nx-stat-card {
        min-height: 210px;
    }

    .nx-apps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nx-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nx-shell {
        width: min(100% - 22px, var(--nx-max));
    }

    .nx-topbar {
        top: 10px;
        margin-top: 10px;
        align-items: stretch;
    }

    .nx-nav,
    .nx-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nx-hero {
        padding-top: 38px;
    }

    .nx-hero-panel {
        padding: 24px;
    }

    .nx-stats-grid,
    .nx-info-grid,
    .nx-apps-grid {
        grid-template-columns: 1fr;
    }

    .nx-filter-panel {
        grid-template-columns: 1fr;
    }

    .nx-category-list {
        justify-content: flex-start;
    }

    .nx-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .nx-section,
    .nx-section-large {
        padding: 44px 0;
    }
}

@media (max-width: 560px) {
    .nx-shell {
        width: min(100% - 16px, var(--nx-max));
    }

    .nx-topbar {
        padding: 12px;
    }

    .nx-brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .nx-brand-text strong {
        font-size: 0.94rem;
    }

    .nx-brand-text span {
        font-size: 0.7rem;
    }

    .nx-nav {
        display: none;
    }

    .nx-actions .nx-btn,
    .nx-hero-actions .nx-btn,
    .nx-app-footer .nx-btn {
        width: 100%;
    }

    .nx-actions,
    .nx-hero-actions {
        width: 100%;
    }

    .nx-hero h1 {
        font-size: 2.55rem;
    }

    .nx-hero p {
        font-size: 0.98rem;
    }

    .nx-hero-panel,
    .nx-copy-block {
        padding: 20px;
        border-radius: 24px;
    }

    .nx-stat-card {
        min-height: 150px;
    }

    .nx-stats-grid,
    .nx-roadmap-grid,
    .nx-footer-grid {
        grid-template-columns: 1fr;
    }

    .nx-app-card {
        padding: 20px;
    }

    .nx-app-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .nx-category-list {
        flex-direction: column;
    }

    .nx-category-btn {
        width: 100%;
    }
}