/* NEURA Rack — product page (Apple MacBook Pro rhythm) */

@font-face {
  font-family: 'Mars Bold';
  src: url('/assets/Mars Bold/Mars Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.font-mars {
  font-family: 'Mars Bold', 'Bebas Neue', 'Impact', 'Arial Black', sans-serif !important;
  font-weight: bold !important;
}

:root {
  --nr-bg: #0a0a0a;
  --nr-bg-elevated: rgba(255, 255, 255, 0.03);
  --nr-bg-section: rgba(255, 255, 255, 0.05);
  --nr-glass: rgba(255, 255, 255, 0.04);
  --nr-text: #f5f5f7;
  --nr-text-muted: #86868b;
  --nr-text-secondary: #a1a1a6;
  --nr-accent: #2997ff;
  --nr-accent-purple: #bf5af2;
  --nr-border: rgba(255, 255, 255, 0.08);
  --nr-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --nr-nav-h: 56px;
  --nr-subnav-h: 52px;
}

.nr-page {
  /* Non usare transparent: sovrascrive bg-dark-950 e lascia vedere html bianco */
  background-color: rgb(10 10 10);
  color: var(--nr-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Layer fisso: base nera + griglia + sfere (index hero) */
.nr-atmosphere {
  z-index: 0;
}

.nr-atmosphere__base {
  background-color: rgb(10 10 10);
}

/* Accento headline — stesso gradiente della index ("Innovation") */
.nr-gradient-text {
  background: linear-gradient(90deg, #60a5fa 0%, #c084fc 50%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nr-hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--nr-text-secondary);
  text-align: center;
  margin: 0 auto 20px;
  max-width: 640px;
}

/* ── Global nav (Apple product bar) ── */
.nr-global-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nr-nav-h);
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nr-border);
}

.nr-global-nav__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nr-global-nav__logo img {
  height: 18px;
  opacity: 0.85;
}

.nr-global-nav__product {
  font-size: 12px;
  color: var(--nr-text-muted);
  letter-spacing: -0.01em;
}

.nr-global-nav__links {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .nr-global-nav__links {
    display: flex;
  }
}

.nr-global-nav__links a {
  color: var(--nr-text-muted);
  text-decoration: none;
  transition: color 0.2s var(--nr-ease);
}

.nr-global-nav__links a:hover {
  color: var(--nr-text);
}

.nr-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s var(--nr-ease), color 0.2s var(--nr-ease);
}

.nr-btn-pill--primary {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
}

.nr-btn-pill--primary:hover {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.nr-btn-pill--ghost {
  background: transparent;
  color: var(--nr-accent);
  border: none;
}

.nr-btn-pill--ghost:hover {
  text-decoration: underline;
}

.nr-btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.2s var(--nr-ease);
}

.nr-btn-large--fill {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.nr-btn-large--fill:hover {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.nr-btn-large--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.nr-btn-large--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── Sticky local nav ── */
.nr-local-nav {
  position: sticky;
  top: var(--nr-nav-h);
  z-index: 90;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nr-border);
}

.nr-local-nav__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nr-subnav-h);
  gap: 16px;
}

.nr-local-nav__title {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nr-local-nav__links {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 12px;
}

.nr-local-nav__links::-webkit-scrollbar {
  display: none;
}

.nr-local-nav__links a {
  color: var(--nr-text-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nr-local-nav__links a:hover,
.nr-local-nav__links a.is-active {
  color: var(--nr-text);
}

.nr-local-nav__links a.is-active {
  border-bottom-color: var(--nr-text);
}

.nr-local-nav__cta {
  display: none;
}

@media (min-width: 640px) {
  .nr-local-nav__cta {
    display: inline-flex;
  }
}

/* ── Section rhythm ── */
.nr-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .nr-section {
    padding: 120px 0;
  }
}

.nr-section--dark {
  background: transparent;
}

.nr-section--elevated {
  background: var(--nr-bg-elevated);
  border-top: 1px solid var(--nr-border);
  border-bottom: 1px solid var(--nr-border);
}

.nr-section--gray {
  background: var(--nr-bg-section);
  border-top: 1px solid var(--nr-border);
  border-bottom: 1px solid var(--nr-border);
}

.nr-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

.nr-container--wide {
  max-width: 1200px;
}

.nr-eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--nr-text-muted);
  margin-bottom: 8px;
}

.nr-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 16px;
}

.nr-headline--hero {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

.nr-subhead {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--nr-text-secondary);
  margin: 0 0 24px;
}

.nr-body {
  font-size: 17px;
  line-height: 1.47;
  color: var(--nr-text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.nr-body--center {
  text-align: center;
}

.nr-copy-block {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Placeholder assets (dev) ── */
.nr-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding: 32px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nr-placeholder--hero {
  min-height: min(70vh, 640px);
  border-radius: 0;
  border-left: none;
  border-right: none;
  margin-top: 32px;
}

.nr-placeholder--video::before {
  content: '▶';
  font-size: 48px;
  opacity: 0.25;
  margin-bottom: 12px;
}

.nr-placeholder__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-accent);
  margin-bottom: 8px;
}

.nr-placeholder__hint {
  font-size: 14px;
  color: var(--nr-text-muted);
  max-width: 420px;
  line-height: 1.4;
}

/* ── Hero ── */
.nr-hero {
  padding-top: calc(var(--nr-nav-h) + 48px);
  text-align: center;
}

.nr-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 28px;
}

/* Hero product shot — stile Apple */
.nr-hero-visual {
  position: relative;
  max-width: 1060px;
  margin: 40px auto 0;
  padding: 0 22px;
}

.nr-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Dissolvenza verso il nero in basso, per fondersi con la pagina */
.nr-hero-visual::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 28%;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(to top, rgb(10 10 10) 0%, transparent 100%);
  pointer-events: none;
}

/* Intermezzo fotografico — spezza il ritmo scuro della pagina */
.nr-photo-break {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0;
  background: #f5f5f7;
}

.nr-photo-break img {
  display: block;
  width: 100%;
  max-height: min(72vh, 780px);
  object-fit: cover;
  object-position: center 45%;
}

.nr-photo-break::before,
.nr-photo-break::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(48px, 8vw, 96px);
  pointer-events: none;
  z-index: 1;
}

.nr-photo-break::before {
  top: 0;
  background: linear-gradient(to bottom, rgb(10 10 10) 0%, transparent 100%);
}

.nr-photo-break::after {
  bottom: 0;
  background: linear-gradient(to top, rgb(10 10 10) 0%, transparent 100%);
}

.nr-photo-break__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(24px, 5vw, 40px);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin: 0;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.85);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 980px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nr-photo-break__badge {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(90deg, #ea580c, #f97316);
  border-radius: 980px;
}

@media (min-width: 768px) {
  .nr-photo-break__caption {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .nr-photo-break__caption {
    max-width: min(92vw, 560px);
    border-radius: 16px;
  }
}

@media (min-width: 768px) {
  .nr-hero-visual {
    margin-top: 56px;
  }
}

.nr-hero-animate > * {
  opacity: 0;
  transform: translateY(16px);
  animation: nrFadeUp 0.6s var(--nr-ease) forwards;
}

.nr-hero-animate > *:nth-child(1) { animation-delay: 0.05s; }
.nr-hero-animate > *:nth-child(2) { animation-delay: 0.15s; }
.nr-hero-animate > *:nth-child(3) { animation-delay: 0.25s; }
.nr-hero-animate > *:nth-child(4) { animation-delay: 0.35s; }
.nr-hero-animate > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes nrFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Highlights carousel ── */
.nr-highlights {
  padding: 60px 0 80px;
}

.nr-highlights__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 22px;
  padding: 0 22px 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.nr-highlights__track::-webkit-scrollbar {
  display: none;
}

.nr-highlight-card {
  flex: 0 0 min(85vw, 720px);
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nr-border);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nr-highlight-card__media {
  min-height: 360px;
}

.nr-highlight-card__media .nr-placeholder {
  min-height: 360px;
  border: none;
  border-radius: 0;
}

/* ── Highlight · failover redundancy animation ── */
.nr-failover-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 32px 24px 28px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(124, 58, 237, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(41, 151, 255, 0.08), transparent 60%),
    #0a0a0a;
}

.nr-failover-anim__stage {
  position: relative;
  width: min(100%, 560px);
  height: 200px;
}

.nr-failover-anim__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nr-failover-anim__path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.nr-failover-anim__path--12,
.nr-failover-anim__path--23 {
  stroke: rgba(41, 151, 255, 0.35);
  stroke-dasharray: 6 6;
  animation: nr-failover-path-dim 9s ease-in-out infinite;
}

.nr-failover-anim__path--bypass {
  stroke: rgba(191, 90, 242, 0.2);
  stroke-width: 2.5;
  stroke-dasharray: 8 6;
  opacity: 0;
  animation: nr-failover-bypass-path 9s ease-in-out infinite;
}

.nr-failover-anim__packet {
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: #2997ff;
  box-shadow: 0 0 8px rgba(41, 151, 255, 0.9);
  pointer-events: none;
  opacity: 0;
}

.nr-failover-anim__packet--12 {
  offset-path: path('M148 130 H252');
  offset-rotate: 0deg;
  animation: nr-failover-packet-12 9s ease-in-out infinite;
}

.nr-failover-anim__packet--23 {
  offset-path: path('M388 130 H492');
  offset-rotate: 0deg;
  animation: nr-failover-packet-23 9s ease-in-out infinite;
}

.nr-failover-anim__packet--bypass,
.nr-failover-anim__packet--bypass-rev {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: #bf5af2;
  box-shadow: 0 0 10px rgba(191, 90, 242, 0.95);
}

.nr-failover-anim__packet--bypass {
  offset-path: path('M148 130 Q320 28 492 130');
  offset-rotate: 0deg;
  animation: nr-failover-packet-bypass 9s ease-in-out infinite;
}

.nr-failover-anim__packet--bypass-rev {
  offset-path: path('M492 130 Q320 28 148 130');
  offset-rotate: 0deg;
  animation: nr-failover-packet-bypass-rev 9s ease-in-out infinite;
}

.nr-failover-anim__node {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  padding: 16px 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.nr-failover-anim__node--1 { left: 12.5%; }
.nr-failover-anim__node--2 { left: 50%; animation: nr-failover-node2 9s ease-in-out infinite; }
.nr-failover-anim__node--3 { left: 87.5%; }

.nr-failover-anim__led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.85);
  animation: nr-failover-led-pulse 2s ease-in-out infinite;
}

.nr-failover-anim__node--2 .nr-failover-anim__led {
  animation: nr-failover-led2 9s ease-in-out infinite;
}

.nr-failover-anim__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--nr-text);
  letter-spacing: -0.01em;
}

.nr-failover-anim__offline-tag {
  position: absolute;
  top: -10px;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff8a8a;
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.35);
  opacity: 0;
  animation: nr-failover-offline-tag 9s ease-in-out infinite;
}

.nr-failover-anim__status {
  position: relative;
  height: 22px;
  margin-top: 20px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-failover-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
  animation: nr-failover-status 9s ease-in-out infinite;
}

.nr-failover-anim__status-line--a { animation-name: nr-failover-status-a; }
.nr-failover-anim__status-line--b { animation-name: nr-failover-status-b; }
.nr-failover-anim__status-line--c { animation-name: nr-failover-status-c; color: #bf5af2; }
.nr-failover-anim__status-line--d { animation-name: nr-failover-status-d; color: #34d399; }

/* 9s cycle: 0-2s ok · 2-3s fail · 3-7s failover · 7-8s recover · 8-9s ok */
@keyframes nr-failover-node2 {
  0%, 20% {
    opacity: 1;
    filter: none;
    border-color: rgba(52, 211, 153, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  26%, 72% {
    opacity: 0.5;
    filter: grayscale(0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }
  78%, 100% {
    opacity: 1;
    filter: none;
    border-color: rgba(52, 211, 153, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

@keyframes nr-failover-led2 {
  0%, 20% { background: #34d399; box-shadow: 0 0 12px rgba(52, 211, 153, 0.85); }
  26%, 72% { background: #555; box-shadow: none; }
  78%, 100% { background: #34d399; box-shadow: 0 0 12px rgba(52, 211, 153, 0.85); }
}

@keyframes nr-failover-offline-tag {
  0%, 24% { opacity: 0; transform: translateY(4px); }
  28%, 70% { opacity: 1; transform: translateY(0); }
  74%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes nr-failover-path-dim {
  0%, 20% { stroke: rgba(41, 151, 255, 0.45); opacity: 1; }
  28%, 70% { stroke: rgba(255, 255, 255, 0.08); opacity: 0.35; }
  78%, 100% { stroke: rgba(41, 151, 255, 0.45); opacity: 1; }
}

@keyframes nr-failover-bypass-path {
  0%, 24% { opacity: 0; stroke: rgba(191, 90, 242, 0.2); }
  30%, 68% { opacity: 1; stroke: rgba(191, 90, 242, 0.75); }
  74%, 100% { opacity: 0; stroke: rgba(191, 90, 242, 0.2); }
}

@keyframes nr-failover-packet-12 {
  0%, 4% { offset-distance: 0%; opacity: 0; }
  6% { offset-distance: 0%; opacity: 1; }
  10% { offset-distance: 100%; opacity: 1; }
  12%, 18% { offset-distance: 0%; opacity: 1; }
  20%, 100% { offset-distance: 0%; opacity: 0; }
}

@keyframes nr-failover-packet-23 {
  0%, 4% { offset-distance: 100%; opacity: 0; }
  6% { offset-distance: 100%; opacity: 1; }
  10% { offset-distance: 0%; opacity: 1; }
  12%, 18% { offset-distance: 100%; opacity: 1; }
  20%, 100% { offset-distance: 100%; opacity: 0; }
}

@keyframes nr-failover-packet-bypass {
  0%, 32% { offset-distance: 0%; opacity: 0; }
  34% { offset-distance: 0%; opacity: 1; }
  50% { offset-distance: 100%; opacity: 1; }
  52%, 100% { offset-distance: 100%; opacity: 0; }
}

@keyframes nr-failover-packet-bypass-rev {
  0%, 40% { offset-distance: 0%; opacity: 0; }
  42% { offset-distance: 0%; opacity: 1; }
  58% { offset-distance: 100%; opacity: 1; }
  60%, 100% { offset-distance: 100%; opacity: 0; }
}

@keyframes nr-failover-status-a {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

@keyframes nr-failover-status-b {
  0%, 22% { opacity: 0; }
  26%, 30% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

@keyframes nr-failover-status-c {
  0%, 32% { opacity: 0; }
  36%, 68% { opacity: 1; }
  72%, 100% { opacity: 0; }
}

@keyframes nr-failover-status-d {
  0%, 72% { opacity: 0; }
  76%, 88% { opacity: 1; }
  92%, 100% { opacity: 0; }
}

@keyframes nr-failover-led-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

/* ── Hotspot · router + mesh nodes animation ── */
.nr-mesh-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse 60% 55% at 50% 30%, rgba(191, 90, 242, 0.12), transparent 70%),
    radial-gradient(ellipse 50% 45% at 20% 85%, rgba(41, 151, 255, 0.1), transparent 65%),
    #0a0a0a;
}

.nr-mesh-anim__stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 640 / 220;
  height: auto;
}

.nr-mesh-anim__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nr-mesh-anim__path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke: rgba(41, 151, 255, 0.28);
  stroke-dasharray: 6 6;
}

.nr-mesh-anim__path--in {
  stroke: rgba(255, 255, 255, 0.22);
  animation: nr-mesh-path-in 9s ease-in-out infinite;
}

.nr-mesh-anim__path--r1,
.nr-mesh-anim__path--r2,
.nr-mesh-anim__path--r3 {
  animation: nr-mesh-path-route 9s ease-in-out infinite;
}

.nr-mesh-anim__path--r2 { animation-delay: 0.12s; }
.nr-mesh-anim__path--r3 { animation-delay: 0.24s; }

.nr-mesh-anim__path--sync {
  stroke: rgba(52, 211, 153, 0.35);
  stroke-dasharray: 5 5;
  opacity: 0;
  animation: nr-mesh-path-sync 9s ease-in-out infinite;
}

.nr-mesh-anim__packet {
  position: absolute;
  left: 50%;
  top: 5%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2997ff;
  box-shadow: 0 0 10px rgba(41, 151, 255, 0.9);
  pointer-events: none;
  opacity: 0;
}

.nr-mesh-anim__packet--in {
  animation: nr-mesh-packet-in 9s ease-in-out infinite;
}

.nr-mesh-anim__packet--n1 {
  animation: nr-mesh-packet-n1 9s ease-in-out infinite;
}

.nr-mesh-anim__packet--n2 {
  animation: nr-mesh-packet-n2 9s ease-in-out infinite;
}

.nr-mesh-anim__packet--n3 {
  animation: nr-mesh-packet-n3 9s ease-in-out infinite;
}

.nr-mesh-anim__packet--sync {
  width: 8px;
  height: 8px;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
  animation: nr-mesh-packet-sync 9s ease-in-out infinite;
}

.nr-mesh-anim__router {
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 108px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(191, 90, 242, 0.08);
  border: 1px solid rgba(191, 90, 242, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: nr-mesh-router-pulse 9s ease-in-out infinite;
}

.nr-mesh-anim__node {
  position: absolute;
  top: 76%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
  padding: 10px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.nr-mesh-anim__node--1 {
  left: 20%;
  animation: nr-mesh-node-hit 9s ease-in-out infinite;
}

.nr-mesh-anim__node--2 {
  left: 50%;
  animation: nr-mesh-node-hit 9s ease-in-out infinite;
  animation-delay: 0.12s;
}

.nr-mesh-anim__node--3 {
  left: 80%;
  animation: nr-mesh-node-hit 9s ease-in-out infinite;
  animation-delay: 0.24s;
}

.nr-mesh-anim__led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.85);
}

.nr-mesh-anim__led--router {
  background: #bf5af2;
  box-shadow: 0 0 10px rgba(191, 90, 242, 0.85);
  animation: nr-mesh-led-router 9s ease-in-out infinite;
}

.nr-mesh-anim__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--nr-text);
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}

.nr-mesh-anim__status {
  position: relative;
  height: 22px;
  margin-top: 16px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-mesh-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
}

.nr-mesh-anim__status-line--a { animation: nr-mesh-status-a 9s ease-in-out infinite; }
.nr-mesh-anim__status-line--b { animation: nr-mesh-status-b 9s ease-in-out infinite; color: #bf5af2; }
.nr-mesh-anim__status-line--c { animation: nr-mesh-status-c 9s ease-in-out infinite; color: #5ac8fa; }
.nr-mesh-anim__status-line--d { animation: nr-mesh-status-d 9s ease-in-out infinite; color: #34d399; }

@keyframes nr-mesh-packet-in {
  0%, 4% { left: 50%; top: 5%; transform: translate(-50%, -50%); opacity: 0; }
  8% { transform: translate(-50%, -50%); opacity: 1; }
  18%, 22% { left: 50%; top: 26%; transform: translate(-50%, -50%); opacity: 1; }
  26%, 100% { left: 50%; top: 26%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-mesh-packet-n1 {
  0%, 22% { left: 50%; top: 37%; transform: translate(-50%, -50%); opacity: 0; }
  26% { transform: translate(-50%, -50%); opacity: 1; }
  34% { left: 35%; top: 56%; transform: translate(-50%, -50%); opacity: 1; }
  42%, 46% { left: 20%; top: 76%; transform: translate(-50%, -50%); opacity: 1; }
  50%, 100% { left: 20%; top: 76%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-mesh-packet-n2 {
  0%, 28% { left: 50%; top: 37%; transform: translate(-50%, -50%); opacity: 0; }
  32% { transform: translate(-50%, -50%); opacity: 1; }
  44%, 48% { left: 50%; top: 76%; transform: translate(-50%, -50%); opacity: 1; }
  52%, 100% { left: 50%; top: 76%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-mesh-packet-n3 {
  0%, 34% { left: 50%; top: 37%; transform: translate(-50%, -50%); opacity: 0; }
  38% { transform: translate(-50%, -50%); opacity: 1; }
  46% { left: 65%; top: 56%; transform: translate(-50%, -50%); opacity: 1; }
  54%, 58% { left: 80%; top: 76%; transform: translate(-50%, -50%); opacity: 1; }
  62%, 100% { left: 80%; top: 76%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-mesh-packet-sync {
  0%, 54% { left: 20%; top: 85%; transform: translate(-50%, -50%); opacity: 0; }
  58% { transform: translate(-50%, -50%); opacity: 1; }
  74%, 78% { left: 80%; top: 85%; transform: translate(-50%, -50%); opacity: 1; }
  82%, 100% { left: 80%; top: 85%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-mesh-path-in {
  0%, 8% { stroke: rgba(255, 255, 255, 0.22); }
  12%, 22% { stroke: rgba(41, 151, 255, 0.65); }
  26%, 100% { stroke: rgba(255, 255, 255, 0.22); }
}

@keyframes nr-mesh-path-route {
  0%, 24% { stroke: rgba(41, 151, 255, 0.28); }
  30%, 52% { stroke: rgba(41, 151, 255, 0.65); }
  58%, 100% { stroke: rgba(41, 151, 255, 0.28); }
}

@keyframes nr-mesh-path-sync {
  0%, 54% { opacity: 0; }
  58%, 78% { opacity: 1; stroke: rgba(52, 211, 153, 0.7); }
  82%, 100% { opacity: 0; }
}

@keyframes nr-mesh-router-pulse {
  0%, 16% {
    border-color: rgba(191, 90, 242, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  20%, 28% {
    border-color: rgba(191, 90, 242, 0.85);
    box-shadow: 0 0 24px rgba(191, 90, 242, 0.35);
  }
  32%, 100% {
    border-color: rgba(191, 90, 242, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

@keyframes nr-mesh-node-hit {
  0%, 36% {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
  42%, 54% {
    border-color: rgba(52, 211, 153, 0.85);
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.35);
  }
  60%, 100% {
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
}

@keyframes nr-mesh-led-router {
  0%, 16% { opacity: 0.85; transform: scale(1); }
  20%, 28% { opacity: 1; transform: scale(1.15); }
  32%, 100% { opacity: 0.85; transform: scale(1); }
}

@keyframes nr-mesh-status-a {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

@keyframes nr-mesh-status-b {
  0%, 22% { opacity: 0; }
  26%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

@keyframes nr-mesh-status-c {
  0%, 52% { opacity: 0; }
  56%, 76% { opacity: 1; }
  80%, 100% { opacity: 0; }
}

@keyframes nr-mesh-status-d {
  0%, 76% { opacity: 0; }
  80%, 94% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* ── Hotspot · NEURA Router schematic ── */
.nr-router-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(191, 90, 242, 0.14), transparent 70%),
    radial-gradient(ellipse 40% 35% at 88% 18%, rgba(52, 211, 153, 0.1), transparent 65%),
    #0a0a0a;
}

.nr-router-anim__stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 640 / 220;
  height: auto;
}

.nr-router-anim__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nr-router-anim__path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke: rgba(41, 151, 255, 0.3);
  stroke-dasharray: 6 6;
}

.nr-router-anim__path--lan {
  stroke: rgba(255, 255, 255, 0.28);
  animation: nr-router-path-lan 9s ease-in-out infinite;
}

.nr-router-anim__path--n1,
.nr-router-anim__path--n2,
.nr-router-anim__path--n3 {
  animation: nr-router-path-nodes 9s ease-in-out infinite;
}

.nr-router-anim__path--n2 { animation-delay: 0.1s; }
.nr-router-anim__path--n3 { animation-delay: 0.2s; }

.nr-router-anim__path--fleet {
  stroke: rgba(52, 211, 153, 0.35);
  stroke-dasharray: 4 5;
  opacity: 0;
  animation: nr-router-path-fleet 9s ease-in-out infinite;
}

.nr-router-anim__path--bypass {
  stroke: rgba(191, 90, 242, 0.25);
  stroke-width: 2.5;
  stroke-dasharray: 5 5;
  opacity: 0;
  animation: nr-router-path-bypass 9s ease-in-out infinite;
}

.nr-router-anim__packet {
  position: absolute;
  left: 18%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #2997ff;
  box-shadow: 0 0 10px rgba(41, 151, 255, 0.9);
  pointer-events: none;
  opacity: 0;
}

.nr-router-anim__packet--lan { animation: nr-router-packet-lan 9s ease-in-out infinite; }
.nr-router-anim__packet--n1 { animation: nr-router-packet-n1 9s ease-in-out infinite; }
.nr-router-anim__packet--n2 { animation: nr-router-packet-n2 9s ease-in-out infinite; }
.nr-router-anim__packet--n3 { animation: nr-router-packet-n3 9s ease-in-out infinite; }

.nr-router-anim__packet--bypass {
  width: 10px;
  height: 10px;
  background: #bf5af2;
  box-shadow: 0 0 10px rgba(191, 90, 242, 0.95);
  animation: nr-router-packet-bypass 9s ease-in-out infinite;
}

.nr-router-anim__packet--fleet {
  width: 8px;
  height: 8px;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
  animation: nr-router-packet-fleet 9s ease-in-out infinite;
}

.nr-router-anim__chip {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nr-text-secondary);
}

.nr-router-anim__chip--office {
  left: 10%;
  top: 50%;
}

.nr-router-anim__chip--fleet {
  left: 88%;
  top: 18%;
  border-color: rgba(52, 211, 153, 0.35);
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
}

.nr-router-anim__hub {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 96px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(191, 90, 242, 0.1);
  border: 1px solid rgba(191, 90, 242, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: nr-router-hub-pulse 9s ease-in-out infinite;
}

.nr-router-anim__led {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.9);
  animation: nr-router-led 2.4s ease-in-out infinite;
}

.nr-router-anim__hub-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--nr-text);
  text-align: center;
  line-height: 1.2;
}

.nr-router-anim__dns {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nr-router-anim__dns-item {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 6px;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #5ac8fa;
  background: rgba(41, 151, 255, 0.1);
  border: 1px solid rgba(41, 151, 255, 0.35);
  opacity: 0;
  white-space: nowrap;
  animation: nr-router-dns 9s ease-in-out infinite;
}

.nr-router-anim__dns-item:nth-child(1) { left: 50%; top: 14%; animation-delay: 0s; }
.nr-router-anim__dns-item:nth-child(2) { left: 50%; top: 14%; animation-delay: 3s; }
.nr-router-anim__dns-item:nth-child(3) { left: 50%; top: 14%; animation-delay: 6s; }

.nr-router-anim__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
  color: var(--nr-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

.nr-router-anim__node--1 { left: 22%; top: 78%; }
.nr-router-anim__node--2 {
  left: 50%;
  top: 78%;
  animation: nr-router-node2 9s ease-in-out infinite;
}
.nr-router-anim__node--3 { left: 78%; top: 78%; }

.nr-router-anim__offline {
  position: absolute;
  top: -9px;
  padding: 1px 5px;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ff8a8a;
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 100, 100, 0.35);
  opacity: 0;
  animation: nr-router-offline 9s ease-in-out infinite;
}

.nr-router-anim__status {
  position: relative;
  height: 22px;
  margin-top: 16px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-router-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
}

.nr-router-anim__status-line--a { animation: nr-router-status-a 9s ease-in-out infinite; }
.nr-router-anim__status-line--b { animation: nr-router-status-b 9s ease-in-out infinite; color: #5ac8fa; }
.nr-router-anim__status-line--c { animation: nr-router-status-c 9s ease-in-out infinite; color: #bf5af2; }
.nr-router-anim__status-line--d { animation: nr-router-status-d 9s ease-in-out infinite; color: #34d399; }

@keyframes nr-router-packet-lan {
  0%, 4% { left: 18%; top: 50%; transform: translate(-50%, -50%); opacity: 0; }
  8% { transform: translate(-50%, -50%); opacity: 1; }
  18%, 22% { left: 40%; top: 50%; transform: translate(-50%, -50%); opacity: 1; }
  26%, 100% { left: 40%; top: 50%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-packet-n1 {
  0%, 24% { left: 50%; top: 54%; transform: translate(-50%, -50%); opacity: 0; }
  28% { transform: translate(-50%, -50%); opacity: 1; }
  34% { left: 36%; top: 66%; transform: translate(-50%, -50%); opacity: 1; }
  40%, 44% { left: 22%; top: 78%; transform: translate(-50%, -50%); opacity: 1; }
  48%, 100% { left: 22%; top: 78%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-packet-n2 {
  0%, 28% { left: 50%; top: 54%; transform: translate(-50%, -50%); opacity: 0; }
  32% { transform: translate(-50%, -50%); opacity: 1; }
  40%, 44% { left: 50%; top: 78%; transform: translate(-50%, -50%); opacity: 1; }
  48%, 100% { left: 50%; top: 78%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-packet-n3 {
  0%, 32% { left: 50%; top: 54%; transform: translate(-50%, -50%); opacity: 0; }
  36% { transform: translate(-50%, -50%); opacity: 1; }
  42% { left: 64%; top: 66%; transform: translate(-50%, -50%); opacity: 1; }
  48%, 52% { left: 78%; top: 78%; transform: translate(-50%, -50%); opacity: 1; }
  56%, 100% { left: 78%; top: 78%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-packet-bypass {
  0%, 52% { left: 22%; top: 78%; transform: translate(-50%, -50%); opacity: 0; }
  56% { transform: translate(-50%, -50%); opacity: 1; }
  64% { left: 50%; top: 58%; transform: translate(-50%, -50%); opacity: 1; }
  72%, 76% { left: 78%; top: 78%; transform: translate(-50%, -50%); opacity: 1; }
  80%, 100% { left: 78%; top: 78%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-packet-fleet {
  0%, 74% { left: 58%; top: 40%; transform: translate(-50%, -50%); opacity: 0; }
  78% { transform: translate(-50%, -50%); opacity: 1; }
  88%, 92% { left: 84%; top: 20%; transform: translate(-50%, -50%); opacity: 1; }
  96%, 100% { left: 84%; top: 20%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-router-path-lan {
  0%, 8% { stroke: rgba(255, 255, 255, 0.28); }
  12%, 22% { stroke: rgba(41, 151, 255, 0.65); }
  26%, 100% { stroke: rgba(255, 255, 255, 0.28); }
}

@keyframes nr-router-path-nodes {
  0%, 26% { stroke: rgba(41, 151, 255, 0.3); }
  32%, 52% { stroke: rgba(41, 151, 255, 0.65); }
  58%, 100% { stroke: rgba(41, 151, 255, 0.3); }
}

@keyframes nr-router-path-bypass {
  0%, 52% { opacity: 0; }
  56%, 78% { opacity: 1; stroke: rgba(191, 90, 242, 0.75); }
  82%, 100% { opacity: 0; }
}

@keyframes nr-router-path-fleet {
  0%, 74% { opacity: 0; }
  78%, 94% { opacity: 1; stroke: rgba(52, 211, 153, 0.75); }
  98%, 100% { opacity: 0; }
}

@keyframes nr-router-hub-pulse {
  0%, 16% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); border-color: rgba(191, 90, 242, 0.55); }
  20%, 28% { box-shadow: 0 0 22px rgba(191, 90, 242, 0.35); border-color: rgba(191, 90, 242, 0.85); }
  32%, 100% { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35); border-color: rgba(191, 90, 242, 0.55); }
}

@keyframes nr-router-led {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

@keyframes nr-router-dns {
  0%, 20% { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  26%, 48% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  54%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
}

@keyframes nr-router-node2 {
  0%, 48% { opacity: 1; filter: none; border-color: rgba(52, 211, 153, 0.4); }
  54%, 78% { opacity: 0.45; filter: grayscale(0.85); border-color: rgba(255, 255, 255, 0.12); }
  84%, 100% { opacity: 1; filter: none; border-color: rgba(52, 211, 153, 0.4); }
}

@keyframes nr-router-offline {
  0%, 50% { opacity: 0; }
  54%, 78% { opacity: 1; }
  82%, 100% { opacity: 0; }
}

@keyframes nr-router-status-a {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

@keyframes nr-router-status-b {
  0%, 22% { opacity: 0; }
  26%, 46% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes nr-router-status-c {
  0%, 50% { opacity: 0; }
  54%, 74% { opacity: 1; }
  78%, 100% { opacity: 0; }
}

@keyframes nr-router-status-d {
  0%, 74% { opacity: 0; }
  78%, 94% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* ── Hotspot · connectivity schematic ── */
.nr-connect-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse 50% 45% at 25% 45%, rgba(41, 151, 255, 0.1), transparent 70%),
    radial-gradient(ellipse 45% 40% at 78% 50%, rgba(124, 58, 237, 0.12), transparent 65%),
    #0a0a0a;
}

.nr-connect-anim__stage {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 640 / 220;
  height: auto;
}

.nr-connect-anim__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nr-connect-anim__path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-dasharray: 5 5;
}

.nr-connect-anim__path--wan {
  animation: nr-connect-path-wan 9s ease-in-out infinite;
}

.nr-connect-anim__path--cable {
  stroke-width: 3;
  stroke: rgba(41, 151, 255, 0.35);
  stroke-dasharray: none;
  animation: nr-connect-path-cable 9s ease-in-out infinite;
}

.nr-connect-anim__path--rack1,
.nr-connect-anim__path--rack2,
.nr-connect-anim__path--rack3 {
  stroke: rgba(52, 211, 153, 0.3);
  opacity: 0;
  animation: nr-connect-path-rack 9s ease-in-out infinite;
}

.nr-connect-anim__path--rack2 { animation-delay: 0.12s; }
.nr-connect-anim__path--rack3 { animation-delay: 0.24s; }

.nr-connect-anim__packet {
  position: absolute;
  left: 14%;
  top: 28%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  opacity: 0;
}

.nr-connect-anim__packet--wan {
  animation: nr-connect-packet-wan 9s ease-in-out infinite;
}

.nr-connect-anim__packet--cable {
  width: 11px;
  height: 11px;
  background: #2997ff;
  box-shadow: 0 0 12px rgba(41, 151, 255, 0.95);
  animation: nr-connect-packet-cable 9s ease-in-out infinite;
}

.nr-connect-anim__chip {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--nr-text-secondary);
}

.nr-connect-anim__chip--internet {
  left: 14%;
  top: 28%;
  border-color: rgba(255, 255, 255, 0.2);
}

.nr-connect-anim__chip--office {
  left: 30%;
  top: 52%;
  border-color: rgba(41, 151, 255, 0.35);
  color: #5ac8fa;
}

.nr-connect-anim__rack {
  position: absolute;
  left: 74%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 88px;
  padding: 10px 8px 8px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  animation: nr-connect-rack 9s ease-in-out infinite;
}

.nr-connect-anim__rack-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: nr-connect-rack-led 9s ease-in-out infinite;
}

.nr-connect-anim__rack-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--nr-text);
  text-align: center;
  line-height: 1.2;
}

.nr-connect-anim__rack-nodes {
  display: flex;
  gap: 4px;
}

.nr-connect-anim__rack-node {
  min-width: 20px;
  padding: 3px 4px;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  color: var(--nr-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.4;
  animation: nr-connect-rack-node 9s ease-in-out infinite;
}

.nr-connect-anim__rack-node:nth-child(2) { animation-delay: 0.15s; }
.nr-connect-anim__rack-node:nth-child(3) { animation-delay: 0.3s; }

.nr-connect-anim__badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nr-connect-anim__badge {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 3px 8px;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.35);
  opacity: 0;
  animation: nr-connect-badge 9s ease-in-out infinite;
}

.nr-connect-anim__badge:nth-child(1) { left: 52%; top: 84%; animation-delay: 0s; }
.nr-connect-anim__badge:nth-child(2) { left: 68%; top: 84%; animation-delay: 0.2s; }
.nr-connect-anim__badge:nth-child(3) { left: 84%; top: 84%; animation-delay: 0.4s; }

.nr-connect-anim__status {
  position: relative;
  height: 22px;
  margin-top: 16px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-connect-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
}

.nr-connect-anim__status-line--a { animation: nr-connect-status-a 9s ease-in-out infinite; }
.nr-connect-anim__status-line--b { animation: nr-connect-status-b 9s ease-in-out infinite; color: #5ac8fa; }
.nr-connect-anim__status-line--c { animation: nr-connect-status-c 9s ease-in-out infinite; color: #bf5af2; }
.nr-connect-anim__status-line--d { animation: nr-connect-status-d 9s ease-in-out infinite; color: #34d399; }

@keyframes nr-connect-packet-wan {
  0%, 4% { left: 14%; top: 28%; transform: translate(-50%, -50%); opacity: 0; }
  8% { transform: translate(-50%, -50%); opacity: 0.7; }
  16% { left: 22%; top: 40%; transform: translate(-50%, -50%); opacity: 0.7; }
  24%, 28% { left: 30%; top: 52%; transform: translate(-50%, -50%); opacity: 0.7; }
  32%, 100% { left: 30%; top: 52%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-connect-packet-cable {
  0%, 28% { left: 38%; top: 52%; transform: translate(-50%, -50%); opacity: 0; }
  32% { transform: translate(-50%, -50%); opacity: 1; }
  48%, 52% { left: 65%; top: 52%; transform: translate(-50%, -50%); opacity: 1; }
  56%, 100% { left: 65%; top: 52%; transform: translate(-50%, -50%); opacity: 0; }
}

@keyframes nr-connect-path-wan {
  0%, 8% { stroke: rgba(255, 255, 255, 0.2); }
  12%, 28% { stroke: rgba(255, 255, 255, 0.45); }
  32%, 100% { stroke: rgba(255, 255, 255, 0.2); }
}

@keyframes nr-connect-path-cable {
  0%, 28% { stroke: rgba(41, 151, 255, 0.35); }
  32%, 54% { stroke: rgba(41, 151, 255, 0.85); stroke-width: 3.5; }
  58%, 100% { stroke: rgba(41, 151, 255, 0.35); stroke-width: 3; }
}

@keyframes nr-connect-path-rack {
  0%, 50% { opacity: 0; }
  56%, 78% { opacity: 1; stroke: rgba(52, 211, 153, 0.65); }
  84%, 100% { opacity: 0; }
}

@keyframes nr-connect-rack {
  0%, 48% {
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
  54%, 72% {
    border-color: rgba(124, 58, 237, 0.85);
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.3);
  }
  78%, 100% {
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  }
}

@keyframes nr-connect-rack-led {
  0%, 50% { background: rgba(255, 255, 255, 0.25); box-shadow: none; }
  54%, 100% { background: #34d399; box-shadow: 0 0 10px rgba(52, 211, 153, 0.9); }
}

@keyframes nr-connect-rack-node {
  0%, 52% { opacity: 0.4; border-color: rgba(255, 255, 255, 0.1); }
  58%, 80% { opacity: 1; border-color: rgba(52, 211, 153, 0.55); }
  86%, 100% { opacity: 0.4; border-color: rgba(255, 255, 255, 0.1); }
}

@keyframes nr-connect-badge {
  0%, 58% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
  64%, 88% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  94%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
}

@keyframes nr-connect-status-a {
  0%, 20% { opacity: 1; }
  24%, 100% { opacity: 0; }
}

@keyframes nr-connect-status-b {
  0%, 24% { opacity: 0; }
  28%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

@keyframes nr-connect-status-c {
  0%, 48% { opacity: 0; }
  52%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}

@keyframes nr-connect-status-d {
  0%, 72% { opacity: 0; }
  76%, 94% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* ── Hotspot · noise comparison ── */
.nr-quiet-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 24px;
  background:
    radial-gradient(ellipse 50% 45% at 25% 55%, rgba(52, 211, 153, 0.1), transparent 70%),
    radial-gradient(ellipse 45% 40% at 78% 55%, rgba(255, 100, 100, 0.08), transparent 65%),
    #0a0a0a;
}

.nr-quiet-anim__stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.nr-quiet-anim__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.nr-quiet-anim__panel--neura {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.08);
}

.nr-quiet-anim__panel--server {
  border-color: rgba(255, 100, 100, 0.3);
  opacity: 0.85;
}

.nr-quiet-anim__label {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--nr-text);
  line-height: 1.2;
}

.nr-quiet-anim__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 36px;
  width: 100%;
}

.nr-quiet-anim__bars span {
  width: 4px;
  height: 6px;
  border-radius: 2px;
  background: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.45);
  animation: nr-quiet-bar-neura 1.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.09s);
}

.nr-quiet-anim__bars--loud span {
  background: #ff6b6b;
  box-shadow: 0 0 8px rgba(255, 107, 107, 0.5);
  animation: nr-quiet-bar-server 0.55s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.05s);
}

.nr-quiet-anim__meter {
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nr-quiet-anim__meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
}

.nr-quiet-anim__meter-fill--neura {
  width: 28%;
  background: linear-gradient(90deg, #34d399, #5eead4);
  animation: nr-quiet-meter-neura 9s ease-in-out infinite;
}

.nr-quiet-anim__meter-fill--server {
  width: 88%;
  background: linear-gradient(90deg, #ff6b6b, #ff8a8a);
  animation: nr-quiet-meter-server 9s ease-in-out infinite;
}

.nr-quiet-anim__db {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #34d399;
  line-height: 1;
}

.nr-quiet-anim__db--loud {
  color: #ff8a8a;
}

.nr-quiet-anim__context {
  margin: 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-quiet-anim__vs {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
  opacity: 0.6;
}

.nr-quiet-anim__status {
  position: relative;
  height: 22px;
  margin-top: 16px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-quiet-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
}

.nr-quiet-anim__status-line--a { animation: nr-quiet-status-a 9s ease-in-out infinite; }
.nr-quiet-anim__status-line--b { animation: nr-quiet-status-b 9s ease-in-out infinite; color: #34d399; }
.nr-quiet-anim__status-line--c { animation: nr-quiet-status-c 9s ease-in-out infinite; color: #ff8a8a; }
.nr-quiet-anim__status-line--d { animation: nr-quiet-status-d 9s ease-in-out infinite; color: #5ac8fa; }

@keyframes nr-quiet-bar-neura {
  0%, 100% { height: 5px; opacity: 0.55; }
  50% { height: 14px; opacity: 1; }
}

@keyframes nr-quiet-bar-server {
  0%, 100% { height: 16px; opacity: 0.85; }
  20% { height: 34px; opacity: 1; }
  40% { height: 22px; }
  60% { height: 36px; opacity: 1; }
  80% { height: 18px; }
}

@keyframes nr-quiet-meter-neura {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.08); opacity: 0.9; }
}

@keyframes nr-quiet-meter-server {
  0%, 100% { transform: scaleX(1); }
  25% { transform: scaleX(1.05); }
  50% { transform: scaleX(0.98); }
  75% { transform: scaleX(1.06); }
}

@keyframes nr-quiet-status-a {
  0%, 20% { opacity: 1; }
  24%, 100% { opacity: 0; }
}

@keyframes nr-quiet-status-b {
  0%, 24% { opacity: 0; }
  28%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

@keyframes nr-quiet-status-c {
  0%, 48% { opacity: 0; }
  52%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}

@keyframes nr-quiet-status-d {
  0%, 72% { opacity: 0; }
  76%, 94% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

/* ── Highlight · memory counter animation ── */
.nr-memory-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 32px;
  background:
    radial-gradient(ellipse 65% 55% at 50% 35%, rgba(41, 151, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 20% 85%, rgba(124, 58, 237, 0.1), transparent 60%),
    #0a0a0a;
}

.nr-memory-anim__stage {
  position: relative;
  width: min(100%, 480px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.nr-memory-anim__nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
}

.nr-memory-anim__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(41, 151, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nr-memory-anim__node-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nr-text-secondary);
}

.nr-memory-anim__node-bar {
  position: relative;
  width: 100%;
  height: 72px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-memory-anim__node-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #5ac8fa 0%, #2997ff 55%, #6366f1 100%);
  box-shadow: 0 0 16px rgba(41, 151, 255, 0.45);
  animation: nr-memory-node-fill 8s ease-in-out infinite;
}

.nr-memory-anim__node-fill--2 {
  animation-delay: 0.35s;
}

.nr-memory-anim__node-fill--3 {
  animation-delay: 0.7s;
}

.nr-memory-anim__node-gb {
  font-size: 12px;
  font-weight: 700;
  color: #5ac8fa;
  opacity: 0;
  animation: nr-memory-node-label 8s ease-in-out infinite;
}

.nr-memory-anim__node:nth-child(2) .nr-memory-anim__node-gb {
  animation-delay: 0.35s;
}

.nr-memory-anim__node:nth-child(3) .nr-memory-anim__node-gb {
  animation-delay: 0.7s;
}

.nr-memory-anim__merge {
  position: absolute;
  top: 108px;
  left: 16%;
  right: 16%;
  height: 36px;
  pointer-events: none;
}

.nr-memory-anim__merge-line {
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.9), rgba(41, 151, 255, 0.2));
  opacity: 0;
  animation: nr-memory-merge-line 8s ease-in-out infinite;
}

.nr-memory-anim__merge-line--1 { left: 16.66%; transform: translateX(-50%); }
.nr-memory-anim__merge-line--2 { left: 50%; transform: translateX(-50%); animation-delay: 0.15s; }
.nr-memory-anim__merge-line--3 { left: 83.33%; transform: translateX(-50%); animation-delay: 0.3s; }

.nr-memory-anim__total {
  text-align: center;
  margin-top: 4px;
}

.nr-memory-anim__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0;
  line-height: 1;
}

.nr-memory-anim__value {
  font-size: clamp(2.75rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  text-shadow: 0 0 32px rgba(41, 151, 255, 0.35);
}

.nr-memory-anim__unit {
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: var(--nr-text-secondary);
  opacity: 0;
  animation: nr-memory-unit 8s ease-in-out infinite;
}

.nr-memory-anim__total-label {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-muted);
  opacity: 0;
  animation: nr-memory-total-label 8s ease-in-out infinite;
}

.nr-memory-anim__pool {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-memory-anim__pool-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2997ff, #6366f1, #bf5af2);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  animation: nr-memory-pool-fill 8s ease-in-out infinite;
}

.nr-memory-anim__pool-glow {
  position: absolute;
  inset: -4px 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.35), transparent);
  animation: nr-memory-pool-glow 8s ease-in-out infinite;
  pointer-events: none;
}

/* 8s cycle: nodi → merge → 96 GB → hold → reset */
@keyframes nr-memory-node-fill {
  0%, 4% { height: 0%; }
  18%, 62% { height: 100%; }
  78%, 100% { height: 0%; }
}

@keyframes nr-memory-node-label {
  0%, 12% { opacity: 0; transform: translateY(4px); }
  20%, 62% { opacity: 1; transform: translateY(0); }
  78%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes nr-memory-merge-line {
  0%, 22% { height: 0; opacity: 0; }
  30%, 58% { height: 28px; opacity: 1; }
  66%, 100% { height: 0; opacity: 0; }
}

@keyframes nr-memory-unit {
  0%, 28% { opacity: 0; }
  36%, 68% { opacity: 1; }
  82%, 100% { opacity: 0; }
}

@keyframes nr-memory-total-label {
  0%, 32% { opacity: 0; transform: translateY(6px); }
  40%, 68% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes nr-memory-pool-fill {
  0%, 28% { width: 0%; }
  56%, 68% { width: 100%; }
  82%, 100% { width: 0%; }
}

@keyframes nr-memory-pool-glow {
  0%, 54% { opacity: 0; }
  58%, 68% { opacity: 1; }
  74%, 100% { opacity: 0; }
}

/* ── Highlight · storage replication animation ── */
.nr-storage-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin: 0;
  padding: 28px 24px 32px;
  background:
    radial-gradient(ellipse 60% 55% at 30% 45%, rgba(52, 211, 153, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 45% at 75% 70%, rgba(124, 58, 237, 0.1), transparent 65%),
    #0a0a0a;
}

.nr-storage-anim__stage {
  position: relative;
  width: min(100%, 520px);
  height: 210px;
}

.nr-storage-anim__source {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nr-storage-anim__stack {
  position: relative;
  width: 74px;
  height: 92px;
}

.nr-storage-anim__doc {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 54px;
  height: 68px;
  margin-left: -27px;
  border-radius: 7px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.nr-storage-anim__doc::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 10px;
  right: 10px;
  height: 3px;
  border-radius: 2px;
  background: rgba(41, 151, 255, 0.55);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.12), 0 16px 0 rgba(255, 255, 255, 0.08);
}

.nr-storage-anim__doc--back {
  transform: rotate(-8deg) translate(-6px, 4px);
  opacity: 0.55;
}

.nr-storage-anim__doc--mid {
  transform: rotate(4deg) translate(4px, -2px);
  opacity: 0.75;
}

.nr-storage-anim__doc--front {
  transform: rotate(-2deg);
  animation: nr-storage-stack-pulse 9s ease-in-out infinite;
}

.nr-storage-anim__source-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-storage-anim__fly {
  position: absolute;
  width: 40px;
  height: 50px;
  margin: -25px 0 0 -20px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(90, 200, 250, 0.35) 0%, rgba(41, 151, 255, 0.2) 100%);
  border: 1px solid rgba(41, 151, 255, 0.45);
  box-shadow: 0 0 14px rgba(41, 151, 255, 0.35);
  opacity: 0;
  pointer-events: none;
}

.nr-storage-anim__fly::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.2);
}

.nr-storage-anim__fly--1 { animation: nr-storage-fly-1 9s ease-in-out infinite; }
.nr-storage-anim__fly--2 { animation: nr-storage-fly-2 9s ease-in-out infinite; }
.nr-storage-anim__fly--3 { animation: nr-storage-fly-3 9s ease-in-out infinite; }

.nr-storage-anim__nodes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 62%;
}

.nr-storage-anim__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(52, 211, 153, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.nr-storage-anim__node-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--nr-text-secondary);
  letter-spacing: 0.02em;
}

.nr-storage-anim__node-slot {
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nr-storage-anim__node-doc {
  width: 30px;
  height: 38px;
  border-radius: 5px;
  background: linear-gradient(160deg, rgba(41, 151, 255, 0.35), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(41, 151, 255, 0.5);
  box-shadow: 0 0 12px rgba(41, 151, 255, 0.35);
  opacity: 0;
  transform: scale(0.6);
  animation: nr-storage-node-doc 9s ease-in-out infinite;
}

.nr-storage-anim__node-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #34d399;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  opacity: 0;
  transform: translateY(4px);
  animation: nr-storage-node-badge 9s ease-in-out infinite;
}

.nr-storage-anim__node-badge--2 { animation-delay: 0.35s; }
.nr-storage-anim__node-badge--3 { animation-delay: 0.7s; }

.nr-storage-anim__status {
  position: relative;
  height: 22px;
  margin-top: 18px;
  width: min(100%, 420px);
  text-align: center;
}

.nr-storage-anim__status-line {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
}

.nr-storage-anim__status-line--a { animation: nr-storage-status-a 9s ease-in-out infinite; }
.nr-storage-anim__status-line--b { animation: nr-storage-status-b 9s ease-in-out infinite; color: #5ac8fa; }
.nr-storage-anim__status-line--c { animation: nr-storage-status-c 9s ease-in-out infinite; color: #bf5af2; }
.nr-storage-anim__status-line--d { animation: nr-storage-status-d 9s ease-in-out infinite; color: #34d399; }

/* 9s: stack → replica ×3 → ridondanza → reset */
@keyframes nr-storage-stack-pulse {
  0%, 16% { transform: rotate(-2deg) translateY(0); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); }
  20%, 24% { transform: rotate(-2deg) translateY(-4px); box-shadow: 0 12px 28px rgba(41, 151, 255, 0.25); }
  28%, 100% { transform: rotate(-2deg) translateY(0); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35); }
}

@keyframes nr-storage-fly-1 {
  0%, 22% { left: 18%; top: 46%; opacity: 0; transform: scale(0.7) rotate(-8deg); }
  26% { left: 18%; top: 46%; opacity: 1; transform: scale(1) rotate(-4deg); }
  42% { left: 52%; top: 42%; opacity: 1; transform: scale(0.85) rotate(0deg); }
  46%, 100% { left: 52%; top: 42%; opacity: 0; transform: scale(0.7) rotate(0deg); }
}

@keyframes nr-storage-fly-2 {
  0%, 26% { left: 18%; top: 46%; opacity: 0; transform: scale(0.7) rotate(-8deg); }
  30% { left: 18%; top: 46%; opacity: 1; transform: scale(1) rotate(-4deg); }
  46% { left: 66%; top: 42%; opacity: 1; transform: scale(0.85) rotate(0deg); }
  50%, 100% { left: 66%; top: 42%; opacity: 0; transform: scale(0.7) rotate(0deg); }
}

@keyframes nr-storage-fly-3 {
  0%, 30% { left: 18%; top: 46%; opacity: 0; transform: scale(0.7) rotate(-8deg); }
  34% { left: 18%; top: 46%; opacity: 1; transform: scale(1) rotate(-4deg); }
  50% { left: 80%; top: 42%; opacity: 1; transform: scale(0.85) rotate(0deg); }
  54%, 100% { left: 80%; top: 42%; opacity: 0; transform: scale(0.7) rotate(0deg); }
}

@keyframes nr-storage-node-doc {
  0%, 38% { opacity: 0; transform: scale(0.6); }
  44%, 72% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(0.6); }
}

.nr-storage-anim__node-doc--2 {
  animation-name: nr-storage-node-doc-2;
  animation-delay: 0s;
}

.nr-storage-anim__node-doc--3 {
  animation-name: nr-storage-node-doc-3;
  animation-delay: 0s;
}

@keyframes nr-storage-node-doc-2 {
  0%, 42% { opacity: 0; transform: scale(0.6); }
  48%, 72% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(0.6); }
}

@keyframes nr-storage-node-doc-3 {
  0%, 46% { opacity: 0; transform: scale(0.6); }
  52%, 72% { opacity: 1; transform: scale(1); }
  82%, 100% { opacity: 0; transform: scale(0.6); }
}

@keyframes nr-storage-node-badge {
  0%, 48% { opacity: 0; transform: translateY(4px); }
  54%, 72% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes nr-storage-status-a {
  0%, 18% { opacity: 1; }
  22%, 100% { opacity: 0; }
}

@keyframes nr-storage-status-b {
  0%, 22% { opacity: 0; }
  26%, 38% { opacity: 1; }
  42%, 100% { opacity: 0; }
}

@keyframes nr-storage-status-c {
  0%, 40% { opacity: 0; }
  44%, 58% { opacity: 1; }
  62%, 100% { opacity: 0; }
}

@keyframes nr-storage-status-d {
  0%, 58% { opacity: 0; }
  62%, 78% { opacity: 1; }
  82%, 100% { opacity: 0; }
}

/* ── Highlight · OpenWebUI chat typing ── */
.nr-chat-anim {
  margin: 0;
  min-height: 360px;
  height: 100%;
}

.nr-chat-anim__screen {
  position: relative;
  min-height: 360px;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.nr-chat-anim__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 18%;
  opacity: 0.42;
  filter: saturate(0.85) blur(1px);
  transform: scale(1.03);
}

.nr-chat-anim__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.15) 0%, rgba(10, 10, 10, 0.55) 45%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(99, 102, 241, 0.12), transparent 70%);
  pointer-events: none;
}

.nr-chat-anim__panel {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(92%, 560px);
  padding: 0 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nr-chat-anim__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nr-chat-anim__app {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-chat-anim__badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #34d399;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.28);
}

.nr-chat-anim__thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nr-chat-anim__bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.nr-chat-anim__bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nr-chat-anim__bubble p {
  margin: 0;
}

.nr-chat-anim__bubble--user {
  align-self: flex-end;
  background: rgba(41, 151, 255, 0.18);
  border: 1px solid rgba(41, 151, 255, 0.35);
  color: #e8f4ff;
  border-bottom-right-radius: 4px;
}

.nr-chat-anim__bubble--ai {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--nr-text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nr-chat-anim__typing {
  white-space: pre-wrap;
}

.nr-chat-anim__cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: #bf5af2;
  opacity: 0;
}

.nr-chat-anim__cursor.is-active {
  opacity: 1;
  animation: nr-chat-cursor-blink 0.9s step-end infinite;
}

@keyframes nr-chat-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.nr-highlight-card__copy {
  padding: 28px 32px 36px;
  text-align: center;
}

.nr-highlight-card__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.nr-highlight-card__desc {
  font-size: 17px;
  color: var(--nr-text-secondary);
  margin: 0;
  line-height: 1.4;
}

.nr-highlights__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 8px;
}

.nr-highlights__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.nr-highlights__dot.is-active {
  background: rgba(255, 255, 255, 0.8);
}

/* ── Close look — stacked detail panels ── */
.nr-close-look {
  padding-bottom: 24px;
}

.nr-close-look__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 40px;
  padding: 10px 0 14px;
  position: sticky;
  top: calc(var(--nr-nav-h) + var(--nr-subnav-h) + 8px);
  z-index: 6;
  background: linear-gradient(to bottom, var(--nr-bg) 55%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nr-close-look__nav-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--nr-text-secondary);
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--nr-ease), border-color 0.25s var(--nr-ease), color 0.25s var(--nr-ease);
}

.nr-close-look__nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--nr-text);
}

.nr-close-look__nav-btn.is-active {
  background: rgba(41, 151, 255, 0.14);
  border-color: rgba(41, 151, 255, 0.45);
  color: #fff;
}

.nr-close-look__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nr-close-look__panel {
  scroll-margin-top: calc(var(--nr-nav-h) + var(--nr-subnav-h) + 72px);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.52;
  transform: translateY(8px);
  transition:
    opacity 0.45s var(--nr-ease),
    transform 0.45s var(--nr-ease),
    border-color 0.45s var(--nr-ease),
    box-shadow 0.45s var(--nr-ease);
}

.nr-close-look__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.nr-close-look__panel-grid {
  display: grid;
  gap: 0;
}

@media (min-width: 992px) {
  .nr-close-look__panel-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    min-height: 440px;
  }

  .nr-close-look__panel--reverse .nr-close-look__panel-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .nr-close-look__panel--reverse .nr-close-look__visual {
    order: 2;
  }

  .nr-close-look__panel--reverse .nr-close-look__copy {
    order: 1;
  }
}

.nr-close-look__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 36px 32px;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, rgba(124, 58, 237, 0.1), transparent 72%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(41, 151, 255, 0.08), transparent 65%),
    #050505;
}

.nr-close-look__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 28px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 992px) {
  .nr-close-look__copy {
    padding: 48px 52px;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nr-close-look__panel--reverse .nr-close-look__copy {
    border-left: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.nr-close-look__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--nr-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.nr-close-look__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 16px;
}

.nr-close-look__body {
  font-size: 18px;
  color: var(--nr-text-secondary);
  line-height: 1.5;
  margin: 0;
  max-width: 36ch;
}

.nr-close-look__lead {
  font-size: 17px;
  color: var(--nr-text-secondary);
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 42ch;
}

.nr-close-look__lead strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-close-look__points {
  margin: 0;
  padding-left: 1.15em;
  font-size: 15px;
  color: var(--nr-text-muted);
  line-height: 1.55;
  max-width: 44ch;
}

.nr-close-look__points li + li {
  margin-top: 10px;
}

.nr-close-look__points strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-close-look__visual .nr-storage-anim,
.nr-close-look__visual .nr-mesh-anim,
.nr-close-look__visual .nr-router-anim,
.nr-close-look__visual .nr-connect-anim,
.nr-close-look__visual .nr-quiet-anim {
  width: 100%;
  max-width: 680px;
  min-height: 0;
  margin: 0;
  padding: 28px 24px 32px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

/* Panel · larger animation stages */
.nr-storage-anim--panel .nr-storage-anim__stage {
  height: 210px;
  width: 100%;
}

.nr-storage-anim--panel .nr-storage-anim__stack {
  width: 74px;
  height: 92px;
}

.nr-storage-anim--panel .nr-storage-anim__doc {
  width: 54px;
  height: 68px;
  margin-left: -27px;
}

.nr-storage-anim--panel .nr-storage-anim__source-label {
  font-size: 11px;
}

.nr-storage-anim--panel .nr-storage-anim__fly {
  width: 40px;
  height: 50px;
  margin: -25px 0 0 -20px;
}

.nr-storage-anim--panel .nr-storage-anim__nodes {
  gap: 12px;
  width: 62%;
}

.nr-storage-anim--panel .nr-storage-anim__node {
  padding: 10px 8px 12px;
}

.nr-storage-anim--panel .nr-storage-anim__node-slot {
  height: 56px;
}

.nr-storage-anim--panel .nr-storage-anim__status {
  margin-top: 16px;
  height: 22px;
}

.nr-storage-anim--panel .nr-storage-anim__status-line {
  font-size: 13px;
}

.nr-mesh-anim--panel .nr-mesh-anim__stage {
  height: 280px;
  max-width: none;
  width: 100%;
}

.nr-mesh-anim--panel .nr-mesh-anim__router {
  width: 108px;
  padding: 10px 12px;
}

.nr-mesh-anim--panel .nr-mesh-anim__node {
  width: 76px;
  padding: 10px 8px;
}

.nr-mesh-anim--panel .nr-mesh-anim__name {
  font-size: 11px;
}

.nr-mesh-anim--panel .nr-mesh-anim__status {
  margin-top: 16px;
  height: 22px;
}

.nr-mesh-anim--panel .nr-mesh-anim__status-line {
  font-size: 13px;
}

.nr-router-anim--panel .nr-router-anim__stage {
  max-width: none;
  aspect-ratio: 640 / 240;
  height: auto;
}

.nr-router-anim--panel .nr-router-anim__hub {
  width: 96px;
  padding: 10px 10px;
}

.nr-router-anim--panel .nr-router-anim__hub-name {
  font-size: 10px;
}

.nr-router-anim--panel .nr-router-anim__dns-item {
  font-size: 7px;
  padding: 3px 9px;
}

.nr-router-anim--section .nr-router-anim__dns-item {
  font-size: 8px;
  padding: 4px 10px;
}

.nr-router-anim--panel .nr-router-anim__status-line,
.nr-connect-anim--panel .nr-connect-anim__status-line {
  font-size: 13px;
}

.nr-connect-anim--panel .nr-connect-anim__stage {
  max-width: none;
  aspect-ratio: 640 / 240;
  height: auto;
}

.nr-connect-anim--panel .nr-connect-anim__rack {
  width: 88px;
}

.nr-quiet-anim--panel .nr-quiet-anim__stage {
  max-width: none;
  gap: 16px;
}

.nr-quiet-anim--panel .nr-quiet-anim__panel {
  padding: 16px 14px;
}

.nr-quiet-anim--panel .nr-quiet-anim__label {
  font-size: 10px;
}

.nr-quiet-anim--panel .nr-quiet-anim__bars {
  height: 48px;
}

.nr-quiet-anim--panel .nr-quiet-anim__bars span {
  width: 5px;
}

.nr-quiet-anim--panel .nr-quiet-anim__db {
  font-size: 18px;
}

.nr-quiet-anim--panel .nr-quiet-anim__status {
  margin-top: 16px;
  height: 22px;
}

.nr-quiet-anim--panel .nr-quiet-anim__status-line {
  font-size: 13px;
}

/* ── Stats row ── */
.nr-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .nr-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nr-stat {
  text-align: center;
}

.nr-stat__value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--nr-text);
}

.nr-stat__label {
  font-size: 14px;
  color: var(--nr-text-muted);
  margin-top: 4px;
}

/* ── Three columns (M5-style) ── */
.nr-trio {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .nr-trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.nr-trio-card {
  text-align: center;
  padding: 32px 20px;
}

.nr-trio-card__name {
  font-size: 21px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.nr-trio-card__stat {
  font-size: 17px;
  font-weight: 600;
  color: var(--nr-accent);
  margin-bottom: 12px;
}

.nr-trio-card__body {
  font-size: 14px;
  color: var(--nr-text-secondary);
  line-height: 1.5;
}

.nr-trio-card--peer {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-trio-card__badge {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-accent-purple);
  background: rgba(191, 90, 242, 0.12);
  border: 1px solid rgba(191, 90, 242, 0.25);
}

.nr-trio-card--peer .nr-trio-card__name {
  margin-top: 12px;
  font-size: 1.125rem;
}

/* ── AI feature rows ── */
.nr-feature-row {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .nr-feature-row {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .nr-feature-row--reverse .nr-feature-row__copy {
    order: 2;
  }

  .nr-feature-row--reverse .nr-feature-row__media {
    order: 1;
  }
}

.nr-feature-row__copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.nr-feature-row__copy p {
  font-size: 17px;
  color: var(--nr-text-secondary);
  line-height: 1.47;
  margin: 0;
}

/* ── NEURA Core stack ── */
.nr-core-stack {
  display: grid;
  gap: 20px;
  margin: 56px 0;
}

@media (min-width: 768px) {
  .nr-core-stack {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.nr-core-layer {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-core-layer__step {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--nr-accent);
  margin: 0 0 12px;
}

.nr-core-layer__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--nr-text);
}

.nr-core-layer__body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--nr-text-secondary);
  margin: 0;
}

.nr-core-privacy {
  margin-top: 80px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-core-privacy__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 12px;
}

.nr-core-privacy__body {
  max-width: 640px;
  margin: 0 auto;
}

/* ── Privacy · on-prem vs cloud blocked ── */
.nr-privacy-anim {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 24px 20px 20px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 60% at 28% 50%, rgba(52, 211, 153, 0.1), transparent 70%),
    radial-gradient(ellipse 50% 50% at 78% 50%, rgba(255, 80, 80, 0.06), transparent 65%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-privacy-anim__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 200;
  max-height: 220px;
}

.nr-privacy-anim__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.nr-privacy-anim__path--try {
  fill: none;
  stroke: rgba(255, 120, 120, 0.45);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  animation: nr-privacy-path 8s ease-in-out infinite;
}

.nr-privacy-anim__packet {
  position: absolute;
  top: 50%;
  left: 38%;
  width: 10px;
  height: 12px;
  margin: -6px 0 0 -5px;
  border-radius: 2px;
  background: rgba(255, 200, 100, 0.9);
  box-shadow: 0 0 10px rgba(255, 180, 80, 0.5);
  animation: nr-privacy-packet 8s ease-in-out infinite;
}

.nr-privacy-anim__barrier {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 72%;
  margin: -36% 0 0 -1.5px;
  border-radius: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 90, 90, 0.85), transparent);
  box-shadow: 0 0 16px rgba(255, 70, 70, 0.45);
  animation: nr-privacy-barrier 8s ease-in-out infinite;
}

.nr-privacy-anim__panel {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 40%;
  padding: 14px 10px 12px;
  border-radius: 14px;
  text-align: center;
}

.nr-privacy-anim__panel--local {
  left: 4%;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 8px 28px rgba(52, 211, 153, 0.12);
}

.nr-privacy-anim__panel--cloud {
  right: 4%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 100, 100, 0.28);
  opacity: 0.72;
  filter: grayscale(0.35);
}

.nr-privacy-anim__lock {
  display: block;
  width: 14px;
  height: 16px;
  margin-bottom: 2px;
  border: 2px solid #34d399;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
  animation: nr-privacy-lock 2.4s ease-in-out infinite;
}

.nr-privacy-anim__lock::before {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  margin: -10px auto 0;
  border: 2px solid #34d399;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.nr-privacy-anim__title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nr-text);
}

.nr-privacy-anim__subtitle {
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nr-text-muted);
}

.nr-privacy-anim__panel--local .nr-privacy-anim__subtitle {
  color: #6ee7b7;
}

.nr-privacy-anim__items {
  display: flex;
  gap: 5px;
  margin: 6px 0 4px;
}

.nr-privacy-anim__item {
  width: 14px;
  height: 18px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: nr-privacy-doc-pulse 2.8s ease-in-out infinite;
}

.nr-privacy-anim__item:nth-child(2) { animation-delay: 0.3s; }
.nr-privacy-anim__item:nth-child(3) { animation-delay: 0.6s; }

.nr-privacy-anim__item--chat {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  border-color: rgba(52, 211, 153, 0.4);
}

.nr-privacy-anim__cloud-shape {
  position: relative;
  width: 28px;
  height: 12px;
  margin: 6px 0 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0.5;
}

.nr-privacy-anim__cloud-shape::before,
.nr-privacy-anim__cloud-shape::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.nr-privacy-anim__cloud-shape::before {
  left: 2px;
}

.nr-privacy-anim__cloud-shape::after {
  right: 2px;
  width: 18px;
  height: 18px;
  bottom: 2px;
}

.nr-privacy-anim__badge {
  margin-top: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nr-privacy-anim__badge--ok {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.nr-privacy-anim__badge--blocked {
  color: #fca5a5;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.35);
}

.nr-privacy-anim__strike {
  position: absolute;
  inset: 12% 8%;
  pointer-events: none;
}

.nr-privacy-anim__strike::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 90, 90, 0.75);
  transform: rotate(-12deg);
  box-shadow: 0 0 8px rgba(255, 70, 70, 0.4);
}

.nr-privacy-anim__status {
  position: relative;
  width: 100%;
  height: 20px;
  margin-top: 14px;
}

.nr-privacy-anim__status-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--nr-text-secondary);
  opacity: 0;
  text-align: center;
}

.nr-privacy-anim__status-line--a { animation: nr-privacy-status-a 8s ease-in-out infinite; color: #6ee7b7; }
.nr-privacy-anim__status-line--b { animation: nr-privacy-status-b 8s ease-in-out infinite; color: #fca5a5; }
.nr-privacy-anim__status-line--c { animation: nr-privacy-status-c 8s ease-in-out infinite; }
.nr-privacy-anim__status-line--d { animation: nr-privacy-status-d 8s ease-in-out infinite; color: #5ac8fa; }

@keyframes nr-privacy-path {
  0%, 35% { opacity: 0.2; }
  45%, 62% { opacity: 1; }
  72%, 100% { opacity: 0.2; }
}

@keyframes nr-privacy-packet {
  0%, 38% { left: 38%; opacity: 0; transform: scale(0.8); }
  42% { opacity: 1; transform: scale(1); }
  52% { left: 49%; opacity: 1; }
  56% { left: 50%; opacity: 0; transform: scale(0.4); }
  100% { left: 50%; opacity: 0; }
}

@keyframes nr-privacy-barrier {
  0%, 48% { opacity: 0.35; }
  52%, 68% { opacity: 1; }
  72%, 100% { opacity: 0.35; }
}

@keyframes nr-privacy-lock {
  0%, 100% { box-shadow: 0 0 10px rgba(52, 211, 153, 0.45); }
  50% { box-shadow: 0 0 18px rgba(52, 211, 153, 0.85); }
}

@keyframes nr-privacy-doc-pulse {
  0%, 100% { opacity: 0.65; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@keyframes nr-privacy-status-a {
  0%, 22% { opacity: 1; }
  26%, 100% { opacity: 0; }
}

@keyframes nr-privacy-status-b {
  0%, 24% { opacity: 0; }
  28%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

@keyframes nr-privacy-status-c {
  0%, 48% { opacity: 0; }
  52%, 72% { opacity: 1; }
  76%, 100% { opacity: 0; }
}

@keyframes nr-privacy-status-d {
  0%, 72% { opacity: 0; }
  76%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

/* ── Core · AI-driven nervous system ── */
.nr-core-ai-wrap {
  width: 100%;
  padding: 0 clamp(12px, 2.5vw, 40px);
  margin-bottom: 56px;
}

.nr-core-ai {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: clamp(20px, 2vw, 28px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

@media (min-width: 992px) {
  .nr-core-ai {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-rows: auto auto;
    align-items: center;
  }

  .nr-core-ai__visual {
    grid-row: 1 / 3;
  }

  .nr-core-ai__pillars {
    grid-column: 1 / -1;
  }
}

.nr-core-ai__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.nr-core-ai__glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.22), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(41, 151, 255, 0.14), transparent 50%);
  pointer-events: none;
  animation: nr-core-ai-glow 10s ease-in-out infinite alternate;
}

@keyframes nr-core-ai-glow {
  from { transform: scale(1); opacity: 0.9; }
  to { transform: scale(1.06); opacity: 1; }
}

.nr-core-ai__svg {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  pointer-events: none;
}

.nr-core-ai__link {
  fill: none;
  stroke: rgba(41, 151, 255, 0.35);
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
}

.nr-core-ai__pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #7c3aed;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.8);
}

.nr-core-ai__pulse--a { left: 50%; animation: nr-core-ai-pulse-up 4s linear infinite; }
.nr-core-ai__pulse--b { top: 50%; animation: nr-core-ai-pulse-right 4s linear infinite 1s; }
.nr-core-ai__pulse--c { top: 50%; animation: nr-core-ai-pulse-left 4s linear infinite 2s; }
.nr-core-ai__pulse--d { left: 50%; animation: nr-core-ai-pulse-down 4s linear infinite 3s; }

@keyframes nr-core-ai-pulse-up {
  0%, 100% { top: 50%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 14%; opacity: 1; }
}

@keyframes nr-core-ai-pulse-right {
  0%, 100% { left: 50%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { left: 86%; opacity: 1; }
}

@keyframes nr-core-ai-pulse-left {
  0%, 100% { left: 50%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { left: 14%; opacity: 1; }
}

@keyframes nr-core-ai-pulse-down {
  0%, 100% { top: 50%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 86%; opacity: 1; }
}

.nr-core-ai__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 108px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.45);
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2);
  text-align: center;
}

.nr-core-ai__hub-led {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.85);
  animation: nr-core-ai-led-pulse 2s ease-in-out infinite;
}

@keyframes nr-core-ai-led-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.nr-core-ai__hub-name {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.nr-core-ai__hub-tag {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-accent);
}

.nr-core-ai__node {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.nr-core-ai__node-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nr-text);
  white-space: nowrap;
}

.nr-core-ai__node--team { left: 50%; top: 8%; transform: translateX(-50%); }
.nr-core-ai__node--docs { right: 8%; top: 50%; transform: translateY(-50%); }
.nr-core-ai__node--policy { left: 50%; bottom: 8%; transform: translateX(-50%); }
.nr-core-ai__node--auto { left: 8%; top: 50%; transform: translateY(-50%); }

.nr-core-ai__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nr-core-ai__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-accent);
}

.nr-core-ai__lead {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--nr-text-secondary);
  max-width: 52ch;
}

.nr-core-ai__lead strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-core-ai__contrast {
  display: grid;
  gap: 12px;
}

@media (min-width: 560px) {
  .nr-core-ai__contrast {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.nr-core-ai__contrast-col {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nr-core-ai__contrast-col--not {
  background: rgba(255, 255, 255, 0.03);
}

.nr-core-ai__contrast-col--is {
  background: rgba(41, 151, 255, 0.08);
  border-color: rgba(41, 151, 255, 0.25);
}

.nr-core-ai__contrast-title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-core-ai__contrast-col--is .nr-core-ai__contrast-title {
  color: var(--nr-accent);
}

.nr-core-ai__contrast-col ul {
  margin: 0;
  padding-left: 1.1em;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nr-text-secondary);
}

.nr-core-ai__contrast-col li + li {
  margin-top: 6px;
}

.nr-core-ai__pillars {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .nr-core-ai__pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  .nr-core-ai__pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nr-core-ai__pillar {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-core-ai__pillar-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--nr-text);
}

.nr-core-ai__pillar-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nr-text-muted);
}

.nr-inline-link {
  color: var(--nr-accent);
  text-decoration: none;
  white-space: nowrap;
}

.nr-inline-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── NEURA AI / Brain section ── */
.nr-brain-intro {
  max-width: 720px;
  margin: 0 auto;
}

.nr-brain-block {
  display: grid;
  gap: 40px 56px;
  align-items: center;
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--nr-border);
}

.nr-brain-block:first-of-type {
  border-top: none;
  padding-top: 8px;
}

@media (min-width: 960px) {
  .nr-brain-block {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  }

  .nr-brain-block--reverse {
    grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  }

  .nr-brain-block--reverse .nr-brain-block__copy {
    order: 2;
  }

  .nr-brain-block--reverse figure {
    order: 1;
  }

  .nr-brain-block--acl {
    grid-template-columns: 1fr;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
}

.nr-brain-block__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-accent-purple);
}

.nr-brain-block__title {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nr-text);
}

.nr-brain-block__lead {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nr-text-secondary);
}

.nr-brain-block__lead strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-brain-block__points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nr-brain-block__points li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--nr-text-secondary);
}

.nr-brain-block__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nr-accent);
}

.nr-brain-block__points strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-brain-block__points--inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.nr-brain-block__points--inline li {
  margin: 0;
  padding-left: 14px;
}

.nr-brain-block__copy--center .nr-brain-block__lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Brain memory stack */
.nr-brain-memory {
  margin: 0;
}

.nr-brain-memory__stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nr-brain-memory__layer {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--nr-border);
  background: rgba(255, 255, 255, 0.03);
  animation: nr-brain-layer-in 9s ease-in-out infinite;
}

.nr-brain-memory__layer--session {
  animation-delay: 0s;
  border-color: rgba(255, 255, 255, 0.1);
}

.nr-brain-memory__layer--personal {
  animation-delay: 3s;
  border-color: rgba(41, 151, 255, 0.25);
  background: rgba(41, 151, 255, 0.06);
}

.nr-brain-memory__layer--company {
  animation-delay: 6s;
  border-color: rgba(191, 90, 242, 0.3);
  background: rgba(191, 90, 242, 0.06);
}

@keyframes nr-brain-layer-in {
  0%, 28% { opacity: 0.55; transform: scale(0.98); }
  33%, 61% { opacity: 1; transform: scale(1); box-shadow: 0 8px 32px rgba(41, 151, 255, 0.12); }
  66%, 100% { opacity: 0.55; transform: scale(0.98); box-shadow: none; }
}

.nr-brain-memory__layer--personal {
  animation-name: nr-brain-layer-personal;
}

@keyframes nr-brain-layer-personal {
  0%, 28% { opacity: 0.55; transform: scale(0.98); }
  33%, 61% { opacity: 1; transform: scale(1); box-shadow: 0 8px 32px rgba(41, 151, 255, 0.15); }
  66%, 100% { opacity: 0.55; transform: scale(0.98); box-shadow: none; }
}

.nr-brain-memory__layer--company {
  animation-name: nr-brain-layer-company;
}

@keyframes nr-brain-layer-company {
  0%, 61% { opacity: 0.55; transform: scale(0.98); }
  66%, 94% { opacity: 1; transform: scale(1); box-shadow: 0 8px 32px rgba(191, 90, 242, 0.15); }
  100% { opacity: 0.55; transform: scale(0.98); box-shadow: none; }
}

.nr-brain-memory__tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-accent);
}

.nr-brain-memory__layer--company .nr-brain-memory__tag {
  color: var(--nr-accent-purple);
}

.nr-brain-memory__label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nr-text);
}

.nr-brain-memory__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nr-brain-memory__chips span {
  padding: 4px 10px;
  font-size: 11px;
  color: var(--nr-text-muted);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 980px;
}

.nr-brain-memory__queue {
  display: flex;
  gap: 8px;
}

.nr-brain-memory__pending,
.nr-brain-memory__approved {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 8px;
}

.nr-brain-memory__pending {
  color: #fcd34d;
  background: rgba(252, 211, 77, 0.12);
  animation: nr-brain-pending 9s ease-in-out infinite;
}

.nr-brain-memory__approved {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.12);
  opacity: 0;
  animation: nr-brain-approved 9s ease-in-out infinite;
}

@keyframes nr-brain-pending {
  0%, 65% { opacity: 1; }
  72%, 100% { opacity: 0.35; }
}

@keyframes nr-brain-approved {
  0%, 68% { opacity: 0; transform: scale(0.95); }
  75%, 94% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}

.nr-brain-memory__flow {
  margin-top: 14px;
  text-align: center;
}

.nr-brain-memory__flow-line {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

/* Connect anim */
.nr-connect-anim {
  margin: 0;
}

.nr-connect-anim__stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.nr-connect-anim__hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(41, 151, 255, 0.2), rgba(191, 90, 242, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(41, 151, 255, 0.2);
}

.nr-connect-anim__hub-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-text);
}

.nr-connect-anim__links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nr-connect-anim__link {
  stroke: rgba(41, 151, 255, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  animation: nr-connect-dash 3s linear infinite;
}

@keyframes nr-connect-dash {
  to { stroke-dashoffset: -16; }
}

.nr-connect-anim__node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--nr-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nr-border);
  border-radius: 10px;
  text-align: center;
}

.nr-connect-anim__node em {
  font-size: 9px;
  font-weight: 400;
  font-style: normal;
  color: var(--nr-text-muted);
}

.nr-connect-anim__node--nc { left: 50%; top: 4%; transform: translateX(-50%); }
.nr-connect-anim__node--odoo { right: 2%; top: 32%; }
.nr-connect-anim__node--op { right: 2%; bottom: 28%; }
.nr-connect-anim__node--n8n { left: 2%; top: 50%; transform: translateY(-50%); }

.nr-connect-anim__pulse {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 12px rgba(110, 231, 183, 0.8);
  z-index: 2;
  animation: nr-connect-pulse 4s ease-in-out infinite;
}

.nr-connect-anim__pulse--a {
  left: 50%;
  top: 28%;
  animation-name: nr-connect-pulse-nc;
}

.nr-connect-anim__pulse--b {
  right: 28%;
  top: 42%;
  animation-delay: 2s;
}

@keyframes nr-connect-pulse-nc {
  0%, 100% { opacity: 0; transform: translate(-50%, 0) scale(0.5); }
  20%, 50% { opacity: 1; transform: translate(-50%, 80px) scale(1); }
}

@keyframes nr-connect-pulse {
  0%, 100% { opacity: 0; }
  30%, 60% { opacity: 1; }
}

.nr-connect-anim__event {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  padding: 6px 12px;
  font-size: 10px;
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.1);
  border-radius: 980px;
  white-space: nowrap;
  animation: nr-connect-event 8s ease-in-out infinite;
}

@keyframes nr-connect-event {
  0%, 40% { opacity: 0; }
  48%, 75% { opacity: 1; }
  100% { opacity: 0; }
}

/* Insight anim */
.nr-insight-anim {
  margin: 0;
}

.nr-insight-anim__stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--nr-border);
  background: rgba(255, 255, 255, 0.03);
}

.nr-insight-anim__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nr-insight-anim__sources span {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--nr-text-secondary);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 980px;
}

.nr-insight-anim__engine {
  align-self: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nr-text);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.25), rgba(124, 58, 237, 0.25));
  border-radius: 980px;
  animation: nr-insight-engine 6s ease-in-out infinite;
}

@keyframes nr-insight-engine {
  0%, 100% { box-shadow: 0 0 0 rgba(41, 151, 255, 0); }
  50% { box-shadow: 0 0 24px rgba(41, 151, 255, 0.25); }
}

.nr-insight-anim__outputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.nr-insight-anim__out {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 12px;
  border: 1px solid var(--nr-border);
  background: rgba(255, 255, 255, 0.02);
  animation: nr-insight-out 8s ease-in-out infinite;
}

.nr-insight-anim__out:nth-child(2) { animation-delay: 1.5s; }
.nr-insight-anim__out:nth-child(3) { animation-delay: 3s; }

@keyframes nr-insight-out {
  0%, 20% { opacity: 0.4; transform: translateY(4px); }
  30%, 70% { opacity: 1; transform: translateY(0); border-color: rgba(41, 151, 255, 0.35); }
  100% { opacity: 0.4; transform: translateY(4px); }
}

.nr-insight-anim__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.nr-insight-anim__bars::before,
.nr-insight-anim__bars::after {
  content: '';
  width: 6px;
  background: var(--nr-accent);
  border-radius: 2px;
  animation: nr-insight-bar 2s ease-in-out infinite alternate;
}

.nr-insight-anim__bars::before { height: 18px; }
.nr-insight-anim__bars::after { height: 28px; animation-delay: 0.3s; }

@keyframes nr-insight-bar {
  from { transform: scaleY(0.7); }
  to { transform: scaleY(1); }
}

.nr-insight-anim__slide {
  width: 24px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nr-insight-anim__out em {
  font-size: 10px;
  font-style: normal;
  color: var(--nr-text-muted);
}

/* Agent anim */
.nr-agent-anim {
  margin: 0;
}

.nr-agent-anim__stage {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding: 24px 16px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nr-agent-anim__core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 88px;
  height: 88px;
  justify-content: center;
  border-radius: 50%;
  background: rgba(191, 90, 242, 0.15);
  border: 1px solid rgba(191, 90, 242, 0.35);
  font-size: 14px;
  font-weight: 700;
  color: var(--nr-text);
  box-shadow: 0 0 32px rgba(191, 90, 242, 0.15);
  animation: nr-insight-engine 6s ease-in-out infinite;
}

.nr-agent-anim__core em {
  font-size: 9px;
  font-weight: 400;
  font-style: normal;
  color: var(--nr-text-muted);
}

.nr-agent-anim__ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 280px;
}

.nr-agent-anim__node {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--nr-text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--nr-border);
  border-radius: 980px;
  white-space: nowrap;
  animation: nr-agent-node 8s ease-in-out infinite;
}

.nr-agent-anim__node:nth-child(2) { animation-delay: 0.4s; }
.nr-agent-anim__node:nth-child(3) { animation-delay: 0.8s; }
.nr-agent-anim__node:nth-child(4) { animation-delay: 1.2s; }
.nr-agent-anim__node:nth-child(5) { animation-delay: 1.6s; }
.nr-agent-anim__node:nth-child(6) { animation-delay: 2s; }

@keyframes nr-agent-node {
  0%, 100% { border-color: var(--nr-border); }
  50% { border-color: rgba(191, 90, 242, 0.45); color: var(--nr-text); }
}

.nr-agent-anim__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-size: 11px;
  color: var(--nr-text-muted);
}

/* ACL anim */
.nr-acl-anim {
  margin: 0 auto 32px;
  max-width: 520px;
}

.nr-acl-anim__stage {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--nr-border);
  background: rgba(255, 255, 255, 0.03);
}

.nr-acl-anim__user p,
.nr-acl-anim__reply p {
  margin: 0;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.45;
  border-radius: 12px;
}

.nr-acl-anim__user p {
  color: var(--nr-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nr-border);
}

.nr-acl-anim__brain {
  align-self: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--nr-text);
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.2));
  border-radius: 980px;
}

.nr-acl-anim__gate {
  align-self: center;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 980px;
  animation: nr-acl-gate 10s ease-in-out infinite;
}

.nr-acl-anim__gate--closed {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

@keyframes nr-acl-gate {
  0%, 45% { opacity: 1; }
  50%, 95% { opacity: 0.35; }
  100% { opacity: 1; }
}

.nr-acl-anim__data {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nr-acl-anim__data span {
  padding: 6px 10px;
  font-size: 10px;
  color: var(--nr-text-muted);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.nr-acl-anim__data--locked span {
  opacity: 0.5;
  text-decoration: line-through;
}

.nr-acl-anim__reply-deny {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.2);
  animation: nr-acl-deny 10s ease-in-out infinite;
}

.nr-acl-anim__reply-ok {
  color: #6ee7b7;
  background: rgba(110, 231, 183, 0.08);
  border: 1px solid rgba(110, 231, 183, 0.2);
  opacity: 0;
  position: absolute;
  left: 20px;
  right: 20px;
  animation: nr-acl-ok 10s ease-in-out infinite;
}

.nr-acl-anim__reply {
  position: relative;
  min-height: 48px;
}

@keyframes nr-acl-deny {
  0%, 48% { opacity: 1; }
  52%, 100% { opacity: 0; }
}

@keyframes nr-acl-ok {
  0%, 52% { opacity: 0; }
  56%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

.nr-brain-closer {
  margin-top: 24px;
  padding-top: 48px;
  border-top: 1px solid var(--nr-border);
  text-align: center;
}

.nr-brain-closer__text {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--nr-text-secondary);
}

.nr-brain-closer__text strong {
  color: var(--nr-text);
}

/* ── Plug & Play ── */
.nr-plug-play__intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nr-plug-play__intro strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-plug-play {
  display: grid;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 992px) {
  .nr-plug-play {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: clamp(40px, 5vw, 64px);
  }
}

.nr-plug-play__figure {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.nr-plug-play__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.nr-plug-play__callout {
  position: absolute;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.nr-plug-play__callout--power {
  left: 14%;
  bottom: 11%;
}

.nr-plug-play__callout--lan {
  right: 26%;
  bottom: 11%;
}

.nr-plug-play__callout--expand {
  right: 8%;
  bottom: 11%;
}

.nr-plug-play__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nr-plug-play__step {
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-plug-play__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 0 12px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(41, 151, 255, 0.85));
}

.nr-plug-play__step-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nr-text);
}

.nr-plug-play__step-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--nr-text-secondary);
}

.nr-plug-play__step-body strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-plug-play__footer {
  margin-top: clamp(32px, 4vw, 48px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 17px;
  color: var(--nr-text-muted);
}

/* ── App showcase (feature rows) ── */
.nr-app-intro {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.nr-app-intro__lead {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nr-app-intro__lead strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-app-intro__opensource {
  margin: 20px auto 0;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--nr-text-secondary);
  text-align: center;
}

.nr-app-intro__opensource strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-app-intro__points {
  margin: 24px auto 0;
  padding-left: 1.15em;
  max-width: 560px;
  text-align: left;
  font-size: 15px;
  line-height: 1.55;
  color: var(--nr-text-muted);
}

.nr-app-intro__points li + li {
  margin-top: 10px;
}

.nr-app-showcase {
  max-width: min(1680px, 94vw);
}

.nr-app-showcase__row {
  padding-bottom: 96px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 992px) {
  .nr-app-showcase .nr-feature-row {
    grid-template-columns: minmax(260px, 36%) minmax(0, 64%);
    gap: clamp(40px, 4vw, 64px);
    align-items: center;
  }

  /* Reverse: colonna larga a sinistra così l'immagine ha la stessa dimensione */
  .nr-app-showcase .nr-feature-row--reverse {
    grid-template-columns: minmax(0, 64%) minmax(260px, 36%);
  }

  .nr-app-showcase .nr-feature-row__media {
    min-width: 0;
  }
}

@media (min-width: 1200px) {
  .nr-app-showcase .nr-feature-row {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  }

  .nr-app-showcase .nr-feature-row--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  }
}

.nr-app-showcase__row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.nr-app-showcase__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-accent);
  margin-bottom: 12px;
}

.nr-app-showcase__lead {
  font-size: 17px;
  color: var(--nr-text-secondary);
  line-height: 1.47;
  margin: 0 0 16px;
}

.nr-app-showcase__points {
  margin: 0;
  padding-left: 1.15em;
  font-size: 15px;
  color: var(--nr-text-muted);
  line-height: 1.55;
}

.nr-app-showcase__points li + li {
  margin-top: 8px;
}

.nr-app-showcase__footer {
  margin-top: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nr-app-showcase__figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  background: #111;
}

.nr-app-showcase__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Apps grid + tabs ── */
.nr-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.nr-tabs::-webkit-scrollbar {
  display: none;
}

.nr-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nr-text-muted);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.nr-tab:hover {
  color: var(--nr-text);
}

.nr-tab.is-active {
  color: var(--nr-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--nr-border);
}

.nr-apps-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .nr-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .nr-apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nr-app-card {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nr-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s var(--nr-ease), box-shadow 0.2s var(--nr-ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nr-app-card.is-visible {
  display: block;
}

.nr-app-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.12);
}

.nr-app-card__media .nr-placeholder {
  min-height: 200px;
  border-radius: 0;
  border: none;
}

.nr-app-card__body {
  padding: 20px 24px 24px;
}

.nr-app-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--nr-accent-purple);
  margin-bottom: 8px;
}

.nr-app-card__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 6px;
}

.nr-app-card__desc {
  font-size: 14px;
  color: var(--nr-text-secondary);
  line-height: 1.45;
  margin: 0;
}
.nr-router-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .nr-router-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── NEURA Router section ── */
.nr-router-section {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 56px);
}

.nr-router-section__intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.nr-router-section__lead {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.55;
}

.nr-router-section__lead strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-router-section__main {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}

@media (min-width: 992px) {
  .nr-router-section__main {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 5vw, 64px);
  }
}

.nr-router-section__points {
  margin: 0;
  padding-left: 1.15em;
  font-size: 16px;
  line-height: 1.55;
  color: var(--nr-text-secondary);
}

.nr-router-section__points li + li {
  margin-top: 12px;
}

.nr-router-section__points strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-router-anim--section {
  width: 100%;
  min-height: 0;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px) clamp(32px, 4vw, 44px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}

.nr-router-anim--section .nr-router-anim__stage {
  max-width: none;
  aspect-ratio: 640 / 260;
}

.nr-router-anim--section .nr-router-anim__hub {
  width: 112px;
  padding: 12px 12px;
}

.nr-router-anim--section .nr-router-anim__hub-name {
  font-size: 11px;
}

.nr-router-anim--section .nr-router-anim__chip {
  font-size: 10px;
  padding: 5px 10px;
}

.nr-router-anim--section .nr-router-anim__node {
  min-width: 36px;
  padding: 7px 8px;
  font-size: 10px;
}

.nr-router-anim--section .nr-router-anim__dns-item {
  font-size: 9px;
  padding: 4px 8px;
}

.nr-router-anim--section .nr-router-anim__status {
  margin-top: 20px;
  height: 24px;
}

.nr-router-anim--section .nr-router-anim__status-line {
  font-size: 14px;
}

.nr-router-section__pillars {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .nr-router-section__pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1100px) {
  .nr-router-section__pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nr-pillars {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .nr-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nr-pillar {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  border: 1px solid var(--nr-border);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.nr-pillar__icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.nr-pillar__step {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--nr-accent);
}

.nr-pillar__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}

.nr-pillar__desc {
  font-size: 14px;
  color: var(--nr-text-secondary);
  margin: 0;
  line-height: 1.45;
}

/* ── NEURA Fleet dashboard mockup ── */
.nr-fleet-intro {
  max-width: 640px;
  margin: 16px auto 0;
}

.nr-fleet-anim {
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 0;
}

.nr-fleet-anim__window {
  border-radius: 18px;
  overflow: hidden;
  background: #0c0c0e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.nr-fleet-anim__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-fleet-anim__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--nr-text);
}

.nr-fleet-anim__brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
  animation: nr-fleet-pulse 2s ease-in-out infinite;
}

.nr-fleet-anim__pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.nr-fleet-anim__main {
  display: grid;
  gap: 16px;
  padding: 18px;
}

@media (min-width: 768px) {
  .nr-fleet-anim__main {
    grid-template-columns: 1fr 1.1fr;
    gap: 20px;
    min-height: 240px;
  }
}

.nr-fleet-anim__map {
  position: relative;
  min-height: 200px;
  border-radius: 14px;
  background:
    linear-gradient(rgba(41, 151, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 151, 255, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(41, 151, 255, 0.08), transparent 70%),
    rgba(255, 255, 255, 0.02);
  background-size: 24px 24px, 24px 24px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.nr-fleet-anim__map-label {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-fleet-anim__site {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
}

.nr-fleet-anim__site::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
}

.nr-fleet-anim__site--a { left: 28%; top: 38%; }
.nr-fleet-anim__site--b { left: 62%; top: 28%; }
.nr-fleet-anim__site--c { left: 48%; top: 62%; }

.nr-fleet-anim__site.is-active {
  background: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.85);
}

.nr-fleet-anim__site.is-active::after {
  opacity: 1;
  animation: nr-fleet-site-ring 2.4s ease-out infinite;
}

.nr-fleet-anim__panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nr-fleet-anim__cluster {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nr-fleet-anim__semaphore {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.9);
  animation: nr-fleet-pulse 2s ease-in-out infinite;
}

.nr-fleet-anim__cluster-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--nr-text);
}

.nr-fleet-anim__cluster-sub {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--nr-text-muted);
}

.nr-fleet-anim__nodes {
  display: flex;
  gap: 8px;
}

.nr-fleet-anim__node {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--nr-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nr-fleet-anim__node i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  font-style: normal;
  background: rgba(255, 255, 255, 0.2);
}

.nr-fleet-anim__node.is-ok {
  border-color: rgba(52, 211, 153, 0.35);
}

.nr-fleet-anim__node.is-ok i {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.75);
}

.nr-fleet-anim__checks {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nr-fleet-anim__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--nr-text-secondary);
}

.nr-fleet-anim__check-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.45);
  position: relative;
}

.nr-fleet-anim__check-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 2px;
  width: 4px;
  height: 7px;
  border: solid #34d399;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.nr-fleet-anim__ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.nr-fleet-anim__ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 10px 0;
  animation: nr-fleet-ticker 28s linear infinite;
}

.nr-fleet-anim__ticker-track span {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #6ee7b7;
  white-space: nowrap;
}

.nr-fleet-anim__ticker-track span:nth-child(3n + 2) {
  color: #5ac8fa;
}

.nr-fleet-anim__ticker-track span:nth-child(3n) {
  color: var(--nr-text-secondary);
}

@keyframes nr-fleet-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

@keyframes nr-fleet-site-ring {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes nr-fleet-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Specs ── */
.nr-specs-intro {
  max-width: 640px;
  margin: 0 auto;
}

.nr-specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px 56px;
  align-items: start;
  max-width: min(94vw, 1040px);
  margin: 0 auto;
}

.nr-specs-block__title {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-text-secondary);
}

.nr-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.nr-specs-table tr {
  border-bottom: 1px solid var(--nr-border);
}

.nr-specs-table th,
.nr-specs-table td {
  padding: 16px 0;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.nr-specs-table th {
  width: 42%;
  font-weight: 400;
  color: var(--nr-text-muted);
  padding-right: 24px;
}

.nr-specs-table td {
  color: var(--nr-text);
  font-weight: 500;
}

.nr-specs-options {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nr-specs-option {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--nr-border);
  border-radius: 16px;
}

.nr-specs-option__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--nr-accent);
}

.nr-specs-option__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--nr-text-secondary);
}

.nr-specs-option__text strong {
  color: var(--nr-text);
  font-weight: 600;
}

.nr-specs-custom__note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--nr-text-muted);
}

.nr-specs-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  max-width: min(94vw, 1040px);
  margin: 56px auto 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(41, 151, 255, 0.08), rgba(191, 90, 242, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.nr-specs-cloud__copy {
  flex: 1 1 320px;
  text-align: left;
}

.nr-specs-cloud__title {
  margin: 8px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--nr-text);
}

.nr-specs-cloud__lead {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--nr-text-secondary);
}

.nr-specs-cloud__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.nr-specs-cloud__link {
  font-size: 14px;
  color: var(--nr-accent);
  text-decoration: none;
}

.nr-specs-cloud__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .nr-specs-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nr-specs-cloud {
    padding: 24px 20px;
  }
}

/* ── Deployment: Rack vs Cloud ── */
.nr-deploy-intro {
  max-width: 640px;
  margin: 0 auto;
}

.nr-deploy-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: min(94vw, 1040px);
  margin: 0 auto;
}

.nr-deploy-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--nr-border);
  border-radius: 20px;
}

.nr-deploy-card--rack {
  border-color: rgba(41, 151, 255, 0.35);
  background: linear-gradient(160deg, rgba(41, 151, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.nr-deploy-card--cloud {
  background: linear-gradient(160deg, rgba(191, 90, 242, 0.06), rgba(255, 255, 255, 0.02));
}

.nr-deploy-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nr-accent);
  background: rgba(41, 151, 255, 0.12);
  border-radius: 980px;
}

.nr-deploy-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--nr-text);
}

.nr-deploy-card__lead {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--nr-text-secondary);
}

.nr-deploy-card__list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.nr-deploy-card__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nr-text-secondary);
}

.nr-deploy-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nr-accent);
}

.nr-deploy-card--cloud .nr-deploy-card__list li::before {
  background: var(--nr-accent-purple);
}

.nr-deploy-card__cta {
  width: 100%;
  text-align: center;
}

.nr-deploy-footnote {
  max-width: min(94vw, 720px);
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--nr-text-muted);
}

.nr-deploy-footnote a {
  color: var(--nr-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .nr-deploy-compare {
    grid-template-columns: 1fr;
  }

  .nr-deploy-card__badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 12px;
  }
}

/* ── Colori (Apple MacBook Pro picker) ── */
.nr-colors {
  padding-bottom: 100px;
}

.nr-colors .nr-container--wide {
  max-width: min(94vw, 1240px);
}

.nr-colors__layout {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-bottom: 8px;
}

@media (min-width: 900px) {
  .nr-colors__layout {
    grid-template-columns: minmax(0, 1.28fr) minmax(240px, 0.62fr);
    gap: 44px 56px;
  }
}

.nr-colors__stage {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nr-colors__carousel {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: min(100%, 620px);
  aspect-ratio: 1;
  background: transparent;
}

@media (min-width: 900px) {
  .nr-colors__carousel {
    max-width: none;
    margin: 0;
  }
}

.nr-colors__carousel::before {
  content: '';
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.nr-colors__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: rotate(-0.3deg);
  transition: opacity 0.7s var(--nr-ease);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.nr-colors__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.nr-colors__panel {
  display: none;
}

.nr-colors__picker {
  text-align: center;
  margin: 0;
  padding: 0 8px;
}

@media (min-width: 900px) {
  .nr-colors__picker {
    text-align: left;
    padding: 0 0 0 8px;
  }
}

.nr-colors__picker-eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nr-text-muted);
}

.nr-colors__active-name {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  color: var(--nr-text);
  line-height: 1.1;
}

.nr-colors__swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 900px) {
  .nr-colors__swatches {
    justify-content: flex-start;
    gap: 18px;
  }
}

.nr-colors__swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: var(--swatch-color, #333);
  transition: transform 0.2s var(--nr-ease), box-shadow 0.2s var(--nr-ease);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nr-colors__swatch:hover {
  transform: scale(1.08);
}

.nr-colors__swatch.is-active {
  box-shadow:
    0 0 0 2px #0a0a0a,
    0 0 0 3px #f5f5f7;
  transform: scale(1.05);
}

.nr-colors__swatch-multi {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#5b2d8a 0deg 120deg, #e85d04 120deg 240deg, #c41e3a 240deg 360deg);
}

.nr-colors__hint {
  font-size: 13px;
  color: var(--nr-text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

@media (min-width: 900px) {
  .nr-colors__hint {
    margin: 0;
  }
}

/* ── Lead form (#contatti) ── */
.nr-lead-form-wrap {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: left;
}

.nr-lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nr-border);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.nr-lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.nr-lead-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nr-lead-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--nr-text-secondary);
}

.nr-lead-form__optional {
  font-weight: 400;
  color: var(--nr-text-muted);
}

.nr-lead-form__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--nr-text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition: border-color 0.2s var(--nr-ease), box-shadow 0.2s var(--nr-ease);
}

.nr-lead-form__input::placeholder {
  color: var(--nr-text-muted);
}

.nr-lead-form__input:focus {
  outline: none;
  border-color: rgba(41, 151, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.15);
}

.nr-lead-form__textarea {
  min-height: 112px;
  resize: vertical;
  line-height: 1.45;
}

.nr-lead-form__consents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 4px;
}

.nr-lead-form__check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.45;
  color: var(--nr-text-secondary);
  cursor: pointer;
}

.nr-lead-form__check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--nr-accent);
}

.nr-lead-form__check a {
  color: var(--nr-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nr-lead-form__check a:hover {
  color: #5eb4ff;
}

.nr-lead-form__submit {
  width: 100%;
  margin-top: 4px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nr-lead-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.nr-lead-form__status {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: var(--nr-text-secondary);
}

.nr-lead-form__status.is-success {
  color: #86efac;
}

.nr-lead-form__status.is-error {
  color: #fca5a5;
}

@media (max-width: 640px) {
  .nr-lead-form__grid {
    grid-template-columns: 1fr;
  }

  .nr-lead-form {
    padding: 22px 18px 28px;
  }
}

/* ── CTA finale ── */
.nr-cta-final {
  text-align: center;
  padding: 100px 22px 120px;
}

.nr-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  font-size: 12px;
  color: var(--nr-text-muted);
}

/* ── Footer minimal ── */
.nr-footer {
  position: relative;
  z-index: 10;
  padding: 24px 22px 48px;
  border-top: 1px solid var(--nr-border);
  text-align: center;
  font-size: 12px;
  color: var(--nr-text-muted);
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(10px);
}

.nr-footer a {
  color: var(--nr-accent);
  text-decoration: none;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .nr-hero-animate > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .nr-app-card:hover {
    transform: none;
  }

  .nr-core-ai__glow,
  .nr-core-ai__hub-led,
  .nr-core-ai__pulse {
    animation: none;
  }

  .nr-failover-anim__node--2,
  .nr-failover-anim__led,
  .nr-failover-anim__node--2 .nr-failover-anim__led,
  .nr-failover-anim__offline-tag,
  .nr-failover-anim__path--12,
  .nr-failover-anim__path--23,
  .nr-failover-anim__path--bypass,
  .nr-failover-anim__packet,
  .nr-failover-anim__status-line {
    animation: none;
  }

  .nr-failover-anim__path--bypass {
    opacity: 0;
  }

  .nr-failover-anim__status-line--a {
    opacity: 1;
  }

  .nr-memory-anim__node-fill,
  .nr-memory-anim__node-gb,
  .nr-memory-anim__merge-line,
  .nr-memory-anim__unit,
  .nr-memory-anim__total-label,
  .nr-memory-anim__pool-fill,
  .nr-memory-anim__pool-glow {
    animation: none;
  }

  .nr-memory-anim__node-fill {
    height: 100%;
  }

  .nr-memory-anim__node-gb,
  .nr-memory-anim__unit,
  .nr-memory-anim__total-label {
    opacity: 1;
    transform: none;
  }

  .nr-memory-anim__pool-fill {
    width: 100%;
  }

  .nr-storage-anim__doc--front,
  .nr-storage-anim__fly,
  .nr-storage-anim__node-doc,
  .nr-storage-anim__node-badge,
  .nr-storage-anim__status-line {
    animation: none;
  }

  .nr-storage-anim__node-doc {
    opacity: 1;
    transform: scale(1);
  }

  .nr-storage-anim__node-badge {
    opacity: 1;
    transform: none;
  }

  .nr-storage-anim__status-line--d {
    opacity: 1;
  }

  .nr-mesh-anim__router,
  .nr-mesh-anim__node,
  .nr-mesh-anim__led--router,
  .nr-mesh-anim__path,
  .nr-mesh-anim__packet,
  .nr-mesh-anim__status-line {
    animation: none;
  }

  .nr-mesh-anim__path--sync {
    opacity: 1;
    stroke: rgba(52, 211, 153, 0.45);
  }

  .nr-mesh-anim__status-line--d {
    opacity: 1;
  }

  .nr-router-anim__hub,
  .nr-router-anim__node--2,
  .nr-router-anim__offline,
  .nr-router-anim__led,
  .nr-router-anim__path,
  .nr-router-anim__packet,
  .nr-router-anim__dns-item,
  .nr-router-anim__status-line {
    animation: none;
  }

  .nr-router-anim__path--fleet {
    opacity: 1;
    stroke: rgba(52, 211, 153, 0.45);
  }

  .nr-router-anim__dns-item {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .nr-router-anim__status-line--d {
    opacity: 1;
  }

  .nr-connect-anim__rack,
  .nr-connect-anim__rack-led,
  .nr-connect-anim__rack-node,
  .nr-connect-anim__path,
  .nr-connect-anim__packet,
  .nr-connect-anim__badge,
  .nr-connect-anim__status-line {
    animation: none;
  }

  .nr-connect-anim__path--cable {
    stroke: rgba(41, 151, 255, 0.65);
  }

  .nr-connect-anim__path--rack1,
  .nr-connect-anim__path--rack2,
  .nr-connect-anim__path--rack3 {
    opacity: 1;
    stroke: rgba(52, 211, 153, 0.45);
  }

  .nr-connect-anim__rack-led {
    background: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.9);
  }

  .nr-connect-anim__rack-node {
    opacity: 1;
    border-color: rgba(52, 211, 153, 0.55);
  }

  .nr-connect-anim__badge {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .nr-connect-anim__status-line--d {
    opacity: 1;
  }

  .nr-privacy-anim__path,
  .nr-privacy-anim__packet,
  .nr-privacy-anim__barrier,
  .nr-privacy-anim__lock,
  .nr-privacy-anim__item,
  .nr-privacy-anim__status-line {
    animation: none;
  }

  .nr-privacy-anim__status-line--a {
    opacity: 1;
  }

  .nr-privacy-anim__barrier {
    opacity: 1;
  }

  .nr-fleet-anim__brand-dot,
  .nr-fleet-anim__semaphore,
  .nr-fleet-anim__site.is-active::after,
  .nr-fleet-anim__ticker-track {
    animation: none;
  }

  .nr-fleet-anim__ticker-track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    padding: 10px 14px;
    gap: 8px 16px;
  }

  .nr-quiet-anim__bars span,
  .nr-quiet-anim__meter-fill,
  .nr-quiet-anim__status-line {
    animation: none;
  }

  .nr-quiet-anim__bars span {
    height: 10px;
    opacity: 1;
  }

  .nr-quiet-anim__bars--loud span {
    height: 28px;
  }

  .nr-quiet-anim__status-line--d {
    opacity: 1;
  }

  .nr-chat-anim__cursor {
    animation: none;
    opacity: 0;
  }

  .nr-chat-anim__bubble {
    opacity: 1;
    transform: none;
  }

  .nr-colors__slide {
    transition: none;
  }

  .nr-colors__slide:not(.is-active) {
    display: none;
  }

  .nr-brain-memory__layer,
  .nr-brain-memory__pending,
  .nr-brain-memory__approved,
  .nr-connect-anim__link,
  .nr-connect-anim__pulse,
  .nr-connect-anim__event,
  .nr-insight-anim__engine,
  .nr-insight-anim__out,
  .nr-insight-anim__bars::before,
  .nr-insight-anim__bars::after,
  .nr-agent-anim__core,
  .nr-agent-anim__node,
  .nr-acl-anim__gate,
  .nr-acl-anim__reply-deny,
  .nr-acl-anim__reply-ok {
    animation: none;
  }

  .nr-brain-memory__layer,
  .nr-brain-memory__layer--personal,
  .nr-brain-memory__layer--company {
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .nr-brain-memory__approved {
    opacity: 1;
  }

  .nr-brain-memory__pending {
    opacity: 0.5;
  }

  .nr-insight-anim__out {
    opacity: 1;
    transform: none;
  }

  .nr-acl-anim__reply-ok {
    opacity: 0;
    position: static;
  }

  .nr-acl-anim__reply-deny {
    opacity: 1;
  }
}
