
.rust-mesh-animation {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.rust-mesh-animation svg {
  width: 100%;
  height: auto;
  max-height: 70vh;
}

.rust-mesh-animation--mobile {
  display: none;
}

.rust-mesh-svg {
  width: 100%;
  height: auto;
}


.node-label {
  text-transform: uppercase;
}


.hub-text {
  font-family: var(--font-brand, Zepto), system-ui, sans-serif;
}


.mesh-connections path {
  transition: opacity 0.3s ease;
}


.mesh-node {
  transition: transform 0.3s ease;
}


.binary-orbit {
  pointer-events: none;
}


@media (max-width: 768px) {
  .rust-mesh-animation:not(.rust-mesh-animation--mobile) {
    display: none;
  }

  .rust-mesh-animation--mobile {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
}


@media (prefers-reduced-motion: reduce) {
  
  .rust-mesh-animation animateMotion,
  .rust-mesh-animation animate,
  .rust-mesh-animation animateTransform {
    display: none !important;
  }

  
  .mesh-particles {
    display: none;
  }

  
  .binary-orbit animateTransform {
    display: none !important;
  }

  
  .mesh-hub circle {
    opacity: 0.08;
  }

  .mesh-hub circle animate {
    display: none !important;
  }
}


@media print {
  .rust-mesh-animation {
    display: none;
  }
}
