/* rovenatilopomoxari — futuristic / metallic blue shell */

:root {
  --fx-bg: #030712;
  --fx-bg-elev: #0a1628;
  --fx-blue: #38bdf8;
  --fx-blue-dim: #0ea5e9;
  --fx-blue-deep: #0369a1;
  --fx-silver: #94a3b8;
  --fx-silver-bright: #e2e8f0;
  --fx-white: #f8fafc;
  --fx-black: #020617;
  --fx-hud: "Exo 2", ui-sans-serif, system-ui, sans-serif;
  --fx-body: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.nmt_future {
  background: var(--fx-bg);
  color: var(--fx-silver-bright);
  font-family: var(--fx-body);
  font-size: 0.95rem;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nmt_future::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(14, 165, 233, 0.08), transparent 50%);
}

a {
  color: var(--fx-blue);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
a:hover {
  color: #7dd3fc;
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.nmt_wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.nmt_bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.06);
}

.nmt_bar_glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fx-blue), #e2e8f0, var(--fx-blue), transparent);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.6);
}

.nmt_bar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
  position: relative;
}

.nmt_logo {
  font-family: var(--fx-hud);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e2e8f0 0%, var(--fx-blue) 50%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.2s;
}
.nmt_logo:hover {
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(56, 189, 248, 0.5));
}

.nmt_nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nmt_nav a {
  padding: 0.45rem 0.75rem;
  font-family: var(--fx-hud);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-silver);
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.nmt_nav a:hover {
  color: var(--fx-white);
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.nmt_ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.45rem 0.55rem;
}
.nmt_ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fx-blue);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nmt_ham[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nmt_ham[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nmt_ham[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nmt_mobdrop {
  display: none;
  background: rgba(3, 7, 18, 0.97);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}
.nmt_mobdrop.nmt_open {
  display: block;
}
.nmt_mobnav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.nmt_mobnav a {
  font-family: var(--fx-hud);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fx-silver);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 2px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nmt_nav {
    display: none;
  }
  .nmt_ham {
    display: flex !important;
  }
}

.nmt_main {
  padding: 2rem 0 4rem;
}

/* ── Hero + particles ── */
.nmt_hero {
  position: relative;
  margin: 0 -1.5rem 2.5rem;
  min-height: min(58vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

/* Procedural metallic backdrops (no bitmap), under particle canvas */
.nmt_hero_field {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--fx-bg);
}

.nmt_hero_field--0 {
  background-image:
    radial-gradient(ellipse 90% 70% at 20% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(148, 163, 184, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #0c1220 0%, #030712 100%);
}

.nmt_hero_field--1 {
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 18px,
      rgba(56, 189, 248, 0.04) 18px,
      rgba(56, 189, 248, 0.04) 19px
    ),
    radial-gradient(circle at 70% 30%, rgba(14, 165, 233, 0.08) 0%, transparent 45%),
    linear-gradient(195deg, #0a1628 0%, #020617 100%);
}

.nmt_hero_field--2 {
  background-image:
    conic-gradient(from 200deg at 55% 45%, rgba(56, 189, 248, 0.12), transparent 40%, rgba(148, 163, 184, 0.06), transparent 75%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0a1628 100%);
}

.nmt_hero_field--3 {
  background-image:
    radial-gradient(circle at 0% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(226, 232, 240, 0.08) 0%, transparent 55%),
    linear-gradient(130deg, #030712 0%, #1e293b 55%, #020617 100%);
}

.nmt_hero_field::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.nmt_hero_canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nmt_hero_inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 42rem;
}

.nmt_hero_kicker {
  font-family: var(--fx-hud);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--fx-blue);
  margin-bottom: 1rem;
  opacity: 0.95;
}

.nmt_hero_title {
  font-family: var(--fx-hud);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--fx-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: perspective(900px) rotateX(6deg);
  text-shadow:
    0 0 40px rgba(56, 189, 248, 0.35),
    0 2px 0 #0c4a6e,
    0 4px 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.1s ease-out;
}

.nmt_hero_lead {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--fx-silver);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Scroll reveal ── */
.nmt_reveal {
  opacity: 0;
  transform: translateY(48px) rotateX(12deg);
  transform-origin: center top;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nmt_reveal.nmt_reveal_on {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* ── HUD feature cards ── */
.nmt_hud_section {
  margin-bottom: 2.5rem;
}

.nmt_section_label {
  font-family: var(--fx-hud);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fx-blue-dim);
  margin-bottom: 0.5rem;
}

.nmt_section_title {
  font-family: var(--fx-hud);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fx-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.nmt_hud_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.nmt_hud_card {
  position: relative;
  padding: 1.35rem 1.2rem 1.4rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.95));
  border: 1px solid rgba(56, 189, 248, 0.25);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.nmt_hud_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(56, 189, 248, 0.06) 100%);
  pointer-events: none;
}

.nmt_hud_card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 0 30px rgba(56, 189, 248, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.5);
}

.nmt_hud_corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--fx-blue);
  border-style: solid;
  opacity: 0.7;
  pointer-events: none;
}
.nmt_hud_corner.tl {
  top: 6px;
  left: 6px;
  border-width: 2px 0 0 2px;
}
.nmt_hud_corner.br {
  bottom: 6px;
  right: 6px;
  border-width: 0 2px 2px 0;
}

.nmt_hud_tag {
  font-family: var(--fx-hud);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--fx-blue);
  margin-bottom: 0.5rem;
}

.nmt_hud_card h3 {
  font-family: var(--fx-hud);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fx-white);
  margin-bottom: 0.4rem;
}

.nmt_hud_card p {
  font-size: 0.8rem;
  color: var(--fx-silver);
  line-height: 1.6;
}

/* ── 3D product showcase ── */
.nmt_showcase {
  margin-bottom: 2.5rem;
}

.nmt_showcase_stage {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  perspective: 1200px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.08) 0%, transparent 65%);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 4px;
  overflow: hidden;
}

.nmt_showcase_stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.5;
}

.nmt_holo {
  position: relative;
  width: min(100%, 340px);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

.nmt_holo_inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 0 60px rgba(56, 189, 248, 0.2),
    inset 0 0 40px rgba(56, 189, 248, 0.05);
  background: rgba(15, 23, 42, 0.6);
}

.nmt_holo_inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.12) 45%, transparent 60%);
  animation: nmt_holo_sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes nmt_holo_sweep {
  0%,
  100% {
    transform: translateX(-100%) skewX(-12deg);
  }
  50% {
    transform: translateX(100%) skewX(-12deg);
  }
}

.nmt_holo_visual {
  display: block;
  width: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(56, 189, 248, 0.22) 0%, transparent 52%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(3, 7, 18, 0.98) 100%);
}

.nmt_holo_visual::before {
  content: "";
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  animation: nmt_holo_grid 18s linear infinite;
}

.nmt_holo_visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 4px;
  transform: rotate(45deg);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.15),
    inset 0 0 30px rgba(56, 189, 248, 0.06);
  animation: nmt_holo_pulse 1.6s ease-in-out infinite alternate;
}

@keyframes nmt_holo_grid {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(28px, 28px);
  }
}

@keyframes nmt_holo_pulse {
  from {
    opacity: 0.5;
    transform: rotate(45deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) scale(1.03);
  }
}

.nmt_holo_caption {
  padding: 0.75rem 1rem;
  font-family: var(--fx-hud);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fx-silver-bright);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(3, 7, 18, 0.85);
}

.nmt_holo_scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--fx-blue), transparent);
  opacity: 0.6;
  animation: nmt_scan 3s linear infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes nmt_scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* ── Glass testimonials ── */
.nmt_quote_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.nmt_glass {
  position: relative;
  padding: 1.35rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(56, 189, 248, 0.04));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.nmt_glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  animation: nmt_glass_shine 5s ease-in-out infinite;
}

@keyframes nmt_glass_shine {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

.nmt_glass p {
  font-size: 0.88rem;
  color: var(--fx-silver-bright);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.nmt_glass cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--fx-hud);
  font-size: 0.6rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fx-blue);
  position: relative;
  z-index: 1;
}

/* ── CTA ── */
.nmt_cta {
  margin: 2.5rem 0;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.06), transparent);
}

.nmt_cta p {
  font-size: 0.9rem;
  color: var(--fx-silver);
  margin-bottom: 1.25rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* ── Listing header ── */
.nmt_list_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.nmt_list_head h1,
.nmt_list_head h2,
h1.nmt_page_title,
h2.nmt_page_title {
  font-family: var(--fx-hud);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--fx-white);
  letter-spacing: 0.03em;
}

.nmt_list_meta {
  font-family: var(--fx-hud);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fx-silver);
}

/* ── Grid cards (directory) ── */
.nmt_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 680px) {
  .nmt_grid {
    grid-template-columns: 1fr;
  }
}

.nmt_card {
  position: relative;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  display: block;
}

.nmt_card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.4), transparent 40%, rgba(148, 163, 184, 0.2));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}

.nmt_card:hover {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    0 0 40px rgba(56, 189, 248, 0.15),
    0 12px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(-4px);
}

.nmt_card_num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--fx-hud);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(56, 189, 248, 0.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

.nmt_card_img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.nmt_card_body {
  padding: 16px 18px 18px;
  position: relative;
  z-index: 1;
}

.nmt_card_title {
  font-family: var(--fx-hud);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fx-white);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.nmt_card_desc {
  font-size: 0.78rem;
  color: var(--fx-silver);
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Laser + expand button */
.nmt_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 2px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
  color: var(--fx-blue);
  font-family: var(--fx-hud);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s,
    border-color 0.25s;
}

.nmt_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(56, 189, 248, 0.25) 45%, transparent 90%);
  transform: translateX(-100%);
  animation: nmt_btn_laser 2.8s ease-in-out infinite;
}

@keyframes nmt_btn_laser {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.nmt_btn:hover {
  transform: scale(1.06);
  border-color: rgba(56, 189, 248, 0.85);
  box-shadow:
    0 0 24px rgba(56, 189, 248, 0.35),
    inset 0 0 20px rgba(56, 189, 248, 0.1);
}

.nmt_btn::after {
  content: "›";
  font-size: 1rem;
  line-height: 1;
  opacity: 0.9;
}

button.nmt_btn::after {
  content: none;
}

.nmt_muted {
  color: var(--fx-silver);
  font-size: 0.9rem;
}

h2 {
  font-family: var(--fx-hud);
  font-size: 1.2rem;
  color: var(--fx-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

/* ── Info strip (policy) ── */
.nmt_info_grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 720px) {
  .nmt_info_grid {
    grid-template-columns: 1fr;
  }
}

.nmt_info_cell {
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85), rgba(3, 7, 18, 0.92));
  padding: 20px 16px;
  overflow: hidden;
}

.nmt_info_cell.wide {
  grid-column: 1 / -1;
}

.nmt_info_num {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--fx-hud);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(56, 189, 248, 0.1);
  line-height: 1;
  pointer-events: none;
}

.nmt_info_label {
  font-family: var(--fx-hud);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fx-blue);
  margin-bottom: 6px;
}

.nmt_info_cell p {
  font-size: 0.8rem;
  color: var(--fx-silver);
  line-height: 1.65;
}

.nmt_affil {
  margin-top: 12px;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(3, 7, 18, 0.6);
}

.nmt_affil_row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 2px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.nmt_affil_i {
  display: flex;
  height: 26px;
  width: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  font-family: var(--fx-hud);
  font-size: 11px;
  font-weight: 700;
  color: var(--fx-blue);
}

.nmt_affil_label {
  font-family: var(--fx-hud);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fx-silver-bright);
}

.nmt_affil p {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--fx-silver);
}

/* ── Secondary pages: space map ── */
.nmt_page_space {
  position: relative;
  padding: 28px 26px 32px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 4px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.98));
  overflow: hidden;
}

.nmt_page_space::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(148, 163, 184, 0.06) 0%, transparent 2px),
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.04) 0%, transparent 2px);
  background-size: 120px 120px, 180px 180px, 220px 220px;
  opacity: 0.6;
  pointer-events: none;
}

.nmt_page_space > * {
  position: relative;
  z-index: 1;
}

.nmt_page_space h1 {
  font-family: var(--fx-hud);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fx-white);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.nmt_page_space ul,
.nmt_page_space ol {
  margin: 12px 0 18px 1.35rem;
  color: var(--fx-silver);
  font-size: 0.9rem;
  line-height: 1.65;
}

.nmt_page_space li {
  margin: 8px 0;
}

.nmt_page_space h2 {
  margin-top: 22px;
  font-size: 1.15rem;
}

/* ── Minimal future form ── */
.nmt_form {
  margin-top: 1.25rem;
  max-width: 440px;
}

.nmt_label {
  display: block;
  font-family: var(--fx-hud);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fx-silver);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.nmt_label:first-of-type {
  margin-top: 0;
}

.nmt_input,
.nmt_form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: var(--fx-body);
  font-size: 0.9rem;
  color: var(--fx-white);
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

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

.nmt_input:focus,
.nmt_form textarea:focus {
  outline: none;
  border-color: var(--fx-blue);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.nmt_form .nmt_btn {
  margin-top: 1.35rem;
}

/* ── Footer ── */
.nmt_foot {
  margin-top: 3rem;
  padding: 2rem 0 1rem;
  position: relative;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
}

.nmt_foot::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.45), transparent);
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.nmt_foot_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.nmt_foot_brand {
  font-family: var(--fx-hud);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fx-white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nmt_foot_brand::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--fx-blue);
  box-shadow: 0 0 12px var(--fx-blue);
  border-radius: 1px;
}

.nmt_foot_disc {
  font-size: 0.75rem;
  color: var(--fx-silver);
  line-height: 1.75;
  max-width: 300px;
}

.nmt_foot_links_row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 100px;
}

.nmt_foot_links_row a {
  font-family: var(--fx-hud);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fx-silver);
  padding-left: 0.25rem;
  transition: color 0.2s, text-shadow 0.2s;
}

.nmt_foot_links_row a:hover {
  color: var(--fx-blue);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.nmt_copy {
  font-family: var(--fx-hud);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--fx-silver);
  margin-top: 1.5rem;
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.nmt_trust {
  margin: 1.25rem 0 1rem;
  padding: 1.1rem 0 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.1rem;
}

.nmt_trust img {
  height: 34px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0.3) brightness(1.1);
  transition: opacity 0.2s, filter 0.2s;
}

.nmt_trust img:hover {
  opacity: 1;
  filter: none;
}

@media (max-width: 520px) {
  .nmt_trust img {
    height: 28px;
    max-width: 92px;
  }
}

.nmt_article_img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
