/* ==========================================================================
   NEXUS AI (HR) — Terminal design system (Promise-style: black + signal green)
   Static HTML/CSS/JS port of the original React/TanStack landing page.
   Fonts (Manrope, IBM Plex Mono) are loaded via Google Fonts <link> tags
   in each page <head> — see assets/css/style.css for the tokens that use
   them.
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  color-scheme: dark;
}
body {
  background: #070907;
  color: #eef4ef;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

:root {
  --nx-bg: #070907;
  --nx-bg2: #050705;
  --nx-panel: #0a0d0a;
  --nx-panel2: #0e120e;
  --nx-line: #1d251e;
  --nx-line2: #2c372e;
  --nx-acc: #27f07d;
  --nx-acc-strong: #5cff9f;
  --nx-acc-deep: #0f9e55;
  --nx-acc-soft: rgba(39, 240, 125, 0.1);
  --nx-danger: #ff8177;
  --nx-text: #eef4ef;
  --nx-muted: #aab6ac;
  --nx-dim: #7f8d81;
  --nx-sans: "Manrope", system-ui, sans-serif;
  --nx-mono: "IBM Plex Mono", ui-monospace, monospace;
  --nx-radius: 6px;
  --nx-topbar-h: 38px;
  --nx-header-h: 66px;
}

.nx-root {
  min-height: 100dvh;
  background: linear-gradient(180deg, var(--nx-bg) 0%, var(--nx-bg2) 100%);
  color: var(--nx-text);
  font-family: var(--nx-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.nx-root *,
.nx-root *::before,
.nx-root *::after {
  box-sizing: border-box;
}
.nx-root h1,
.nx-root h2,
.nx-root h3,
.nx-root h4,
.nx-root p {
  margin: 0;
}
.nx-root a {
  color: inherit;
  text-decoration: none;
}
.nx-root img {
  display: block;
  max-width: 100%;
}
.nx-root :focus-visible,
.nx-quiz-page :focus-visible,
.nx-legal :focus-visible {
  outline: 2px solid var(--nx-acc);
  outline-offset: 3px;
}

.nx-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    rgba(170, 255, 205, 0.055) 1px,
    transparent 1.4px
  );
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 24%, #000 0%, transparent 74%);
}

.nx-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.nx-mono {
  font-family: var(--nx-mono);
}

/* ---- Typography ---- */
.nx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nx-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nx-acc);
}
.nx-h1 {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: clamp(28px, 4.1vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--nx-text);
}
.nx-h2 {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--nx-text);
}
.nx-gild {
  color: var(--nx-acc);
  font-style: normal;
}

/* ---- Topbar ---- */
.nx-topbar {
  position: relative;
  z-index: 5;
  height: var(--nx-topbar-h);
  border-bottom: 1px solid var(--nx-line);
  background: rgba(5, 7, 5, 0.85);
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--nx-dim);
}
.nx-topbar .nx-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}
.nx-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nx-topbar a {
  color: var(--nx-acc);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.nx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 8px var(--nx-acc);
  flex: none;
}

/* ---- Header ---- */
.nx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nx-header-h);
  background: rgba(5, 7, 5, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nx-line);
}
.nx-header .nx-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.nx-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.nx-brand .mk {
  flex: none;
  display: block;
}
.nx-brand .nm {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--nx-text);
}
.nx-nav {
  display: flex;
  gap: 28px;
  font-family: var(--nx-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--nx-muted);
  padding-left: 70px;
}
.nx-nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nx-nav a:hover {
  color: var(--nx-acc);
  border-color: var(--nx-acc);
}

/* ---- Buttons ---- */
.nx-cta-node {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--nx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nx-acc);
  border: 1px solid rgba(39, 240, 125, 0.45);
  border-radius: var(--nx-radius);
  padding: 11px 18px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nx-cta-node:hover {
  background: var(--nx-acc-soft);
  border-color: var(--nx-acc);
  transform: translateY(-1px);
}
.nx-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 10px var(--nx-acc);
  animation: nx-pulse 1.8s infinite;
  flex: none;
}
@keyframes nx-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.nx-cta-terminal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--nx-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #03140a;
  background: #1fd66f;
  border: 1px solid rgba(3, 20, 10, 0.35);
  border-radius: var(--nx-radius);
  padding: 17px 26px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nx-cta-terminal:hover {
  background: #2ce77e;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}
.nx-cta-terminal i {
  font-style: normal;
  transition: transform 0.2s;
}
.nx-cta-terminal:hover i {
  transform: translateX(4px);
}

.nx-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nx-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nx-muted);
  padding: 17px 4px;
  transition: color 0.2s;
}
.nx-ghost .u {
  border-bottom: 1px solid var(--nx-line2);
  padding-bottom: 3px;
  transition: border-color 0.2s;
}
.nx-ghost:hover {
  color: var(--nx-acc);
}
.nx-ghost:hover .u {
  border-color: var(--nx-acc);
}

.nx-menu-btn {
  display: none;
  padding: 9px 13px;
  font-size: 16px;
  background: transparent;
  color: var(--nx-text);
  border: 1px solid rgba(39, 240, 125, 0.45);
  border-radius: var(--nx-radius);
  cursor: pointer;
}

/* ---- Mobile nav drawer ---- */
.nx-mobile-nav {
  display: grid;
  gap: 10px;
  padding: 14px 0;
}
.nx-mobile-nav[hidden] {
  display: none;
}
.nx-mobile-nav a {
  color: var(--nx-muted);
}
.nx-mobile-nav a:hover {
  color: var(--nx-acc);
}

/* ---- Hero (centered composition, floating sim cards on the sides) ---- */
.nx-hero {
  position: relative;
  z-index: 1;
}
.nx-hero .nx-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100dvh - var(--nx-topbar-h) - var(--nx-header-h));
  justify-content: center;
  padding: 72px 0 56px;
}
.nx-hero-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(1080px, 96vw);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 50%, #000 28%, transparent 72%);
}
.nx-hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  max-width: 640px;
}
.nx-hero-center .nx-h1 {
  font-size: clamp(30px, 4.4vw, 52px);
}
.nx-hero-sub {
  color: var(--nx-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 46ch;
}
.nx-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.nx-hero-micro {
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--nx-dim);
  margin-top: 8px;
}

/* floating sim cards */
.nx-hero-sim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.nx-float {
  pointer-events: auto;
  position: absolute;
  width: 292px;
  background: rgba(8, 11, 8, 0.94);
  border: 1px solid var(--nx-line2);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.nx-float-l {
  left: -34px;
  top: 64px;
  animation: nx-float-l 7s ease-in-out infinite;
}
.nx-float-r {
  right: -34px;
  top: 236px;
  animation: nx-float-r 8s ease-in-out infinite;
}
.nx-float-risk {
  left: -8px;
  top: 330px;
  width: 252px;
  animation: nx-float-rk 9s ease-in-out infinite;
}
.nx-float-chip {
  right: 30px;
  top: 52px;
  width: 232px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: nx-float-ch 6.5s ease-in-out infinite;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.nx-float-chip.flash {
  border-color: var(--nx-acc);
  box-shadow: 0 0 28px rgba(39, 240, 125, 0.4);
}
.nx-float-chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 8px var(--nx-acc);
  animation: nx-pulse 1.8s infinite;
  flex: none;
}
.chip-line {
  font-family: var(--nx-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--nx-dim);
  display: flex;
  align-items: center;
  gap: 7px;
}
.chip-line b {
  color: var(--nx-acc);
  font-weight: 600;
}
.rk-note {
  font-family: var(--nx-mono);
  font-size: 9.5px;
  line-height: 1.6;
  color: var(--nx-dim);
  margin: 0;
}
.rk-opts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rk-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 10px;
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  background: transparent;
  color: var(--nx-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.rk-btn span {
  color: var(--nx-dim);
  font-weight: 400;
}
.rk-btn:hover {
  border-color: rgba(39, 240, 125, 0.5);
}
.rk-btn.on {
  border-color: var(--nx-acc);
  color: var(--nx-acc);
  background: var(--nx-acc-soft);
}
.rk-btn.on span {
  color: var(--nx-acc);
}
@keyframes nx-float-l {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes nx-float-r {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}
@keyframes nx-float-rk {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes nx-float-ch {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.fl-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--nx-line);
  font-family: var(--nx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--nx-text);
}
.fl-head .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 8px var(--nx-acc);
  animation: nx-pulse 1.8s infinite;
  flex: none;
}
.fl-head .sim {
  margin-left: auto;
  color: var(--nx-dim);
  border: 1px solid var(--nx-line2);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
}
.nx-float canvas {
  display: block;
  width: 100%;
  height: 130px;
}
.fl-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-top: 1px solid var(--nx-line);
  font-family: var(--nx-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--nx-dim);
}
.fl-foot b {
  color: var(--nx-acc);
  font-weight: 600;
  margin-left: 5px;
}
.nx-demo-mode {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  overflow: hidden;
}
.nx-demo-mode button {
  font-family: var(--nx-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--nx-dim);
  border: 0;
  padding: 5px 9px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nx-demo-mode button.on {
  background: var(--nx-acc);
  color: #05130a;
}
.fl-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 130px;
}
.fl-body .tag {
  font-family: var(--nx-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--nx-acc);
}
.fl-body strong {
  font-family: var(--nx-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--nx-text);
}
.fl-rows {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  font-family: var(--nx-mono);
  font-size: 10px;
}
.fl-rows span {
  color: var(--nx-dim);
}
.fl-rows b {
  color: var(--nx-muted);
  font-weight: 500;
  text-align: right;
}
.fl-acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 2px;
}
.fl-acts[hidden] {
  display: none;
}
.fl-acts button {
  font-family: var(--nx-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-radius: 5px;
  cursor: pointer;
  transition: filter 0.15s;
  border: 0;
}
.fl-acts button:hover {
  filter: brightness(1.15);
}
.fl-acts .ok {
  background: #1fd66f;
  color: #03140a;
  border: 1px solid rgba(3, 20, 10, 0.35);
}
.fl-acts .no {
  background: transparent;
  color: var(--nx-muted);
  border: 1px solid var(--nx-line2);
}
.fl-log {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--nx-mono);
  font-size: 10px;
  line-height: 1.9;
  color: var(--nx-dim);
}
.fl-log .cur {
  color: var(--nx-acc);
}
.fl-auto {
  font-family: var(--nx-mono);
  font-size: 10px;
  color: var(--nx-dim);
  margin: 0;
}
.fl-out {
  font-family: var(--nx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--nx-acc);
  line-height: 1.6;
  margin: 0;
}
[data-phase] {
  display: none;
}
[data-phase].is-active {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

@media (max-width: 1279px) {
  .nx-hero-sim {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 44px;
    width: min(700px, 100%);
    pointer-events: auto;
  }
  .nx-float,
  .nx-float-l,
  .nx-float-r,
  .nx-float-risk,
  .nx-float-chip {
    position: static;
    width: auto;
    animation: none;
  }
  .nx-float-chip {
    justify-content: center;
  }
}
@media (max-width: 620px) {
  .nx-hero-sim {
    grid-template-columns: 1fr;
  }
}

/* ---- Hero trust strip ---- */
.nx-hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nx-line);
  border: 1px solid var(--nx-line);
  border-radius: 10px;
  overflow: hidden;
}
.nx-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--nx-panel);
  padding: 16px 18px;
}
.nx-badge .ic {
  color: var(--nx-acc);
  flex: none;
  margin-top: 2px;
}
.nx-badge strong {
  display: block;
  font-family: var(--nx-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 3px;
}
.nx-badge span {
  font-size: 12px;
  color: var(--nx-dim);
  line-height: 1.5;
}

/* ---- Sections ---- */
.nx-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.nx-band {
  background: rgba(5, 7, 5, 0.6);
  border-top: 1px solid var(--nx-line);
  border-bottom: 1px solid var(--nx-line);
}
.nx-section-head {
  max-width: 640px;
  margin-bottom: 38px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nx-section-head.nx-center {
  margin-inline: auto;
  text-align: center;
  align-items: center;
}
.nx-section-head p {
  color: var(--nx-muted);
  font-size: 16px;
}

/* ---- Process steps grid ---- */
.nx-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--nx-line);
}
.nx-why-grid.nx-why-4 {
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--nx-line);
}
.nx-step {
  background: var(--nx-bg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nx-step-badge {
  font-family: var(--nx-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--nx-acc);
}
.nx-step-icon {
  width: 40px;
  height: 40px;
  color: var(--nx-acc);
  opacity: 0.9;
}
.nx-step h3 {
  font-family: var(--nx-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.nx-step p {
  color: var(--nx-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Modules bento ---- */
.nx-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--nx-line);
  border: 1px solid var(--nx-line);
}
.nx-tile {
  background: var(--nx-bg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nx-tile-icon {
  width: 36px;
  height: 36px;
  color: var(--nx-acc);
}
.nx-tile h3 {
  font-family: var(--nx-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.nx-tile p {
  color: var(--nx-muted);
  font-size: 13.5px;
  line-height: 1.6;
}
.nx-tile-console {
  grid-column: 1 / -1;
  padding: 0;
  gap: 0;
}
.nx-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--nx-line);
  font-family: var(--nx-mono);
}
.nx-console-head strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.nx-console-head .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--nx-acc);
}
.nx-console-head .live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 8px var(--nx-acc);
  animation: nx-pulse 1.6s infinite;
}
.nx-console-sub {
  padding: 8px 20px;
  font-family: var(--nx-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--nx-dim);
  border-bottom: 1px solid var(--nx-line);
}
.nx-console-tabs {
  display: flex;
  gap: 8px;
  padding: 12px 20px 0;
  flex-wrap: wrap;
}
.nx-console-tabs button {
  font-family: var(--nx-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 7px 13px;
  background: transparent;
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  color: var(--nx-dim);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nx-console-tabs button:hover {
  color: var(--nx-muted);
}
.nx-console-tabs button.on {
  border-color: var(--nx-acc);
  color: var(--nx-acc);
  background: var(--nx-acc-soft);
}
.nx-console-chart {
  padding: 10px 6px 0;
  position: relative;
}
.nx-console-chart canvas {
  width: 100%;
  height: 232px;
  display: block;
}
.nx-console-alert {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 250px;
  background: rgba(10, 14, 10, 0.97);
  border: 1px solid rgba(39, 240, 125, 0.4);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
  animation: nx-card-in 0.3s ease;
}
.nx-console-alert[hidden] {
  display: none;
}
@keyframes nx-card-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.nx-console-alert .tag {
  font-family: var(--nx-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--nx-acc);
}
.nx-console-alert strong {
  font-family: var(--nx-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nx-text);
}
.nx-console-alert p {
  font-family: var(--nx-mono);
  font-size: 9.5px;
  line-height: 1.6;
  color: var(--nx-dim);
  margin: 0;
}
.nx-console-toast {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  font-family: var(--nx-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--nx-acc);
  background: rgba(8, 12, 8, 0.95);
  border: 1px solid rgba(39, 240, 125, 0.4);
  border-radius: 6px;
  padding: 9px 16px;
  white-space: nowrap;
  animation: nx-card-in 0.25s ease;
}
.nx-console-log {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 6px 20px 10px;
  font-family: var(--nx-mono);
  font-size: 9.5px;
  color: var(--nx-dim);
  overflow: hidden;
  white-space: nowrap;
}
.nx-console-log b {
  color: var(--nx-muted);
  font-weight: 500;
}
.nx-console-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--nx-line);
}
.nx-console-foot .c {
  padding: 13px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-right: 1px solid var(--nx-line);
}
.nx-console-foot .c:last-child {
  border-right: 0;
}
.nx-console-foot span {
  font-family: var(--nx-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--nx-dim);
}
.nx-console-foot strong {
  font-family: var(--nx-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--nx-acc);
}
.nx-tile-note,
.nx-steps-note,
.nx-fit-note {
  margin-top: 18px;
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--nx-dim);
  text-align: center;
}

/* ---- Fit matrix ---- */
.nx-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.nx-fit-card {
  border: 1px solid var(--nx-line);
  background: var(--nx-panel);
  padding: 30px 28px;
}
.nx-fit-card.yes {
  border-top: 2px solid var(--nx-acc);
}
.nx-fit-card.no {
  border-top: 2px solid var(--nx-line2);
}
.nx-fit-card h3 {
  font-family: var(--nx-mono);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.nx-fit-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.nx-fit-card li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--nx-muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.nx-mark {
  flex: none;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--nx-mono);
  font-size: 12px;
  border-radius: 4px;
  margin-top: 1px;
}
.nx-mark.ok {
  color: var(--nx-acc);
  border: 1px solid rgba(39, 240, 125, 0.4);
  background: var(--nx-acc-soft);
}
.nx-mark.no {
  color: var(--nx-danger);
  border: 1px solid rgba(255, 129, 119, 0.45);
  background: rgba(255, 129, 119, 0.08);
}

/* ---- Reviews ---- */
.nx-rev {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nx-rev-card {
  border: 1px solid var(--nx-line);
  background: var(--nx-panel);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.nx-rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nx-rev-ava {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(39, 240, 125, 0.45);
  background: var(--nx-acc-soft);
  box-shadow: 0 0 10px rgba(39, 240, 125, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nx-rev-ava img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nx-rev-head strong {
  font-family: var(--nx-mono);
  font-size: 12.5px;
  font-weight: 600;
  display: block;
}
.nx-rev-head span {
  font-size: 11.5px;
  color: var(--nx-dim);
  display: block;
  margin-top: 2px;
}
.nx-rev-stars {
  color: var(--nx-acc);
  font-size: 12px;
  letter-spacing: 3px;
}
.nx-rev-stars i {
  color: var(--nx-line2);
  font-style: normal;
}
.nx-rev-card p {
  color: var(--nx-muted);
  font-size: 13.5px;
  line-height: 1.65;
}
.nx-rev-tag {
  margin-top: auto;
  font-family: var(--nx-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--nx-dim);
  border-top: 1px solid var(--nx-line);
  padding-top: 12px;
}

/* ---- Access CTA ---- */
.nx-access {
  border: 1px solid var(--nx-line2);
  background: var(--nx-panel);
  padding: 44px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nx-access-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nx-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--nx-muted);
}
.nx-access-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 10px var(--nx-acc);
  animation: nx-pulse 1.6s infinite;
}
.nx-access-status b {
  color: var(--nx-acc);
}
.nx-access .nx-cta-node {
  padding: 15px 26px;
  font-size: 12.5px;
}
.nx-access-meta {
  display: flex;
  gap: 26px;
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--nx-dim);
  flex-wrap: wrap;
  justify-content: center;
}
.nx-access-legal {
  font-family: var(--nx-mono);
  font-size: 10px;
  color: var(--nx-dim);
}

/* ---- FAQ ---- */
.nx-faq {
  max-width: 780px;
  margin-inline: auto;
  border: 1px solid var(--nx-line);
}
.nx-faq-item {
  border-bottom: 1px solid var(--nx-line);
  background: var(--nx-bg);
}
.nx-faq-item:last-child {
  border-bottom: 0;
}
.nx-faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 19px 22px;
  color: var(--nx-text);
  font-family: var(--nx-mono);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nx-faq-item > button:hover {
  color: var(--nx-acc);
}
.nx-faq-item > button i {
  font-style: normal;
  color: var(--nx-acc);
  font-size: 16px;
  flex: none;
}
.nx-faq-ans {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.nx-faq-ans.open {
  grid-template-rows: 1fr;
}
.nx-faq-ans > p {
  overflow: hidden;
  padding: 0 22px;
  color: var(--nx-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.nx-faq-ans.open > p {
  padding-bottom: 20px;
}

/* ---- Footer ---- */
.nx-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--nx-line);
  background: var(--nx-bg2);
  padding: 56px 0 26px;
}
.nx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.nx-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nx-footer-brand p {
  color: var(--nx-dim);
  font-size: 13.5px;
  max-width: 40ch;
}
.nx-footer h4 {
  font-family: var(--nx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--nx-dim);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.nx-footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nx-footer nav a {
  color: var(--nx-muted);
  font-size: 13.5px;
  transition: color 0.2s;
}
.nx-footer nav a:hover {
  color: var(--nx-acc);
}
.nx-risk {
  border: 1px solid var(--nx-line);
  background: var(--nx-panel);
  padding: 20px 22px;
  margin-bottom: 22px;
}
.nx-risk strong {
  display: block;
  font-family: var(--nx-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--nx-dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nx-risk p {
  color: var(--nx-dim);
  font-size: 12.5px;
  line-height: 1.65;
}
.nx-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--nx-dim);
  flex-wrap: wrap;
}
.nx-copy a {
  color: var(--nx-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Sticky mobile CTA ---- */
.nx-sticky {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  text-align: center;
  font-family: var(--nx-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--nx-acc);
  color: #05130a;
  border-radius: var(--nx-radius);
  padding: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55), 0 0 24px rgba(39, 240, 125, 0.25);
}

/* ---- Reveal ---- */
.nx-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.nx-reveal.vis {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .nx-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nx-live,
  .nx-access-status i,
  .nx-console-head .live i {
    animation: none;
  }
}

/* ==========================================================================
   QUIZ
   ========================================================================== */
.nx-quiz-page {
  min-height: 100dvh;
  background: linear-gradient(180deg, var(--nx-bg) 0%, var(--nx-bg2) 100%);
  color: var(--nx-text);
  font-family: var(--nx-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}
.nx-quiz-page *,
.nx-quiz-page *::before,
.nx-quiz-page *::after {
  box-sizing: border-box;
}
.nx-quiz-page h1,
.nx-quiz-page h3,
.nx-quiz-page p {
  margin: 0;
}
.nx-quiz-page a {
  color: inherit;
  text-decoration: none;
}
.nx-quiz-page img {
  display: block;
}
.nx-quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--nx-line);
}
.nx-quiz-main {
  width: min(680px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 60px;
  flex: 1;
}
.nx-quiz-intro {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.nx-quiz-intro[hidden] {
  display: none;
}
.nx-quiz-intro h1 {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
}
.nx-quiz-intro p {
  color: var(--nx-muted);
  font-size: 15px;
  max-width: 52ch;
}
.nx-quiz-frame {
  border: 1px solid var(--nx-line2);
  background: var(--nx-panel);
  padding: 30px 28px;
}
.nx-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--nx-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--nx-dim);
  margin-bottom: 24px;
}
.nx-progress .rail {
  flex: 1;
  height: 3px;
  background: var(--nx-line);
  border-radius: 2px;
  overflow: hidden;
}
.nx-progress .rail i {
  display: block;
  height: 100%;
  background: var(--nx-acc);
  transition: width 0.4s ease;
  box-shadow: 0 0 8px var(--nx-acc);
}
.nx-q-legend {
  font-family: var(--nx-mono);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
}
.nx-q-hint {
  color: var(--nx-dim);
  font-size: 13px;
  margin-bottom: 6px;
}
.nx-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.nx-choice {
  position: relative;
  text-align: left;
  background: var(--nx-bg);
  border: 1px solid var(--nx-line2);
  border-radius: var(--nx-radius);
  padding: 17px 18px;
  cursor: pointer;
  color: var(--nx-text);
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  font-family: var(--nx-sans);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.nx-choice:hover {
  border-color: rgba(39, 240, 125, 0.55);
  transform: translateY(-1px);
}
.nx-choice.sel {
  border-color: var(--nx-acc);
  background: var(--nx-acc-soft);
}
.nx-choice strong {
  font-size: 15px;
  font-weight: 600;
}
.nx-choice span {
  color: var(--nx-dim);
  font-size: 12.5px;
}
.nx-choice .tag {
  position: absolute;
  top: -9px;
  right: 12px;
  font-family: var(--nx-mono);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #05130a;
  background: var(--nx-acc);
  border-radius: 3px;
  padding: 2px 8px;
}
.nx-quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  font-family: var(--nx-mono);
  font-size: 10.5px;
  color: var(--nx-dim);
  letter-spacing: 0.06em;
}
.nx-back {
  background: transparent;
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  color: var(--nx-muted);
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nx-back:hover {
  border-color: var(--nx-acc);
  color: var(--nx-acc);
}
.nx-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 30px 0 20px;
}
.nx-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--nx-line2);
  border-top-color: var(--nx-acc);
  animation: nx-spin 0.9s linear infinite;
}
@keyframes nx-spin {
  to {
    transform: rotate(360deg);
  }
}
.nx-logs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--nx-mono);
  font-size: 12px;
  color: var(--nx-muted);
  width: 100%;
  max-width: 380px;
}
.nx-logs li {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: nx-card-in 0.3s ease;
}
.nx-logs li[hidden] {
  display: none;
}
.nx-logs li::before {
  content: "\203A";
  color: var(--nx-acc);
}
.nx-logs li.fin {
  color: var(--nx-acc);
  font-weight: 600;
}
.nx-granted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--nx-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--nx-acc);
  margin-bottom: 16px;
}
.nx-granted i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nx-acc);
  box-shadow: 0 0 10px var(--nx-acc);
}
.nx-form-intro h3 {
  font-family: var(--nx-mono);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.nx-form-intro p {
  color: var(--nx-muted);
  font-size: 14px;
}
.nx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.nx-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nx-field label {
  font-family: var(--nx-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nx-dim);
}
.nx-field input {
  background: var(--nx-bg);
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  color: var(--nx-text);
  font-family: var(--nx-sans);
  font-size: 15px;
  padding: 12px 13px;
  transition: border-color 0.2s;
  width: 100%;
}
.nx-field input:focus {
  outline: none;
  border-color: var(--nx-acc);
}
.nx-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--nx-muted);
  cursor: pointer;
}
.nx-consent input {
  margin-top: 3px;
  accent-color: var(--nx-acc);
}
.nx-consent a {
  color: var(--nx-acc);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nx-form-legal {
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--nx-dim);
}
.nx-form-legal a {
  color: var(--nx-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nx-cta-submit {
  width: 100%;
  font-family: var(--nx-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #03140a;
  background: #1fd66f;
  border: 1px solid rgba(3, 20, 10, 0.35);
  border-radius: var(--nx-radius);
  padding: 17px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, transform 0.2s;
}
.nx-cta-submit:hover {
  background: #2ce77e;
  transform: translateY(-1px);
}
.nx-cta-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.nx-state {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
}
.nx-state h3 {
  font-family: var(--nx-mono);
  font-size: 19px;
  font-weight: 600;
}
.nx-state p {
  color: var(--nx-muted);
  font-size: 14.5px;
  max-width: 46ch;
}
.nx-state .risk {
  font-family: var(--nx-mono);
  font-size: 10.5px;
  color: var(--nx-dim);
}
.nx-quiz-legal {
  margin-top: 22px;
  font-family: var(--nx-mono);
  font-size: 10px;
  line-height: 1.7;
  color: var(--nx-dim);
  text-align: center;
}
.nx-quiz-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid var(--nx-line);
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--nx-dim);
}
.nx-quiz-foot a:hover {
  color: var(--nx-acc);
}
[data-quiz-stage] {
  display: none;
}
[data-quiz-stage].is-active {
  display: block;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.nx-legal {
  min-height: 100dvh;
  background: linear-gradient(180deg, var(--nx-bg) 0%, var(--nx-bg2) 100%);
  color: var(--nx-text);
  font-family: var(--nx-sans);
  font-size: 15.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding: 52px 0 70px;
}
.nx-legal * {
  box-sizing: border-box;
}
.nx-legal-shell {
  width: min(760px, calc(100% - 44px));
  margin-inline: auto;
}
.nx-legal-back {
  display: inline-block;
  font-family: var(--nx-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--nx-acc);
  margin-bottom: 30px;
  text-decoration: none;
}
.nx-legal-back:hover {
  text-decoration: underline;
}
.nx-legal h1 {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: clamp(23px, 3.4vw, 32px);
  line-height: 1.25;
  margin: 0 0 18px;
}
.nx-legal h2 {
  font-family: var(--nx-mono);
  font-weight: 600;
  font-size: 16.5px;
  margin: 34px 0 12px;
  color: var(--nx-text);
}
.nx-legal p,
.nx-legal li {
  color: var(--nx-muted);
}
.nx-legal p {
  margin: 0 0 12px;
}
.nx-legal ol,
.nx-legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nx-legal a {
  color: var(--nx-acc);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.nx-legal-meta {
  font-family: var(--nx-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--nx-dim);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.nx-legal-lead {
  font-size: 16.5px;
  color: var(--nx-text);
}
.nx-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--nx-line);
}
.nx-legal-nav a {
  font-family: var(--nx-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--nx-muted);
  border: 1px solid var(--nx-line2);
  border-radius: 5px;
  padding: 8px 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.nx-legal-nav a:hover {
  border-color: var(--nx-acc);
  color: var(--nx-acc);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .nx-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .nx-why-grid.nx-why-4 {
    grid-template-columns: 1fr 1fr;
  }
  .nx-rev {
    grid-template-columns: 1fr 1fr;
  }
  .nx-bento {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .nx-nav,
  .nx-header .nx-cta-node {
    display: none;
  }
  .nx-menu-btn {
    display: inline-flex;
  }
  .nx-shell {
    width: calc(100% - 36px);
  }
  .nx-section {
    padding: 62px 0;
  }
  .nx-hero .nx-shell {
    padding: 48px 0 40px;
    min-height: 0;
  }
  .nx-hero-stats {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .nx-why-grid,
  .nx-why-grid.nx-why-4 {
    grid-template-columns: 1fr;
  }
  .nx-rev {
    grid-template-columns: 1fr;
  }
  .nx-bento {
    grid-template-columns: 1fr;
  }
  .nx-fit {
    grid-template-columns: 1fr;
  }
  .nx-footer-grid {
    grid-template-columns: 1fr;
  }
  .nx-sticky {
    display: block;
  }
  .nx-footer {
    padding-bottom: 84px;
  }
  .nx-form-grid {
    grid-template-columns: 1fr;
  }
  .nx-topbar span {
    font-size: 9.5px;
  }
}

.iti__country-list {
  color: #03140a;
}
