html,
body {
  height: 100%;
  margin: 0;
  background: #ffffff;
  overflow: hidden;
}

body.layout--single .research-framework-embed header,
body.layout--single .research-framework-embed .page__meta,
body.layout--single .research-framework-embed .page__share,
body.layout--single .research-framework-embed .page__related,
body.layout--single .research-framework-embed .pagination,
body.layout--single .research-framework-embed .page__comments {
  display: none;
}

body.layout--single .research-framework-embed .page__inner-wrap {
  padding-top: 0;
  margin-top: 0;
}

body.layout--single .research-framework-embed .page__content {
  margin-top: 0;
}

body.layout--single .research-framework-embed .page__content > *:first-child {
  margin-top: 0;
}

body.layout--single .research-framework-embed .research-framework-page {
  min-height: auto;
  padding: 24px 0;
}

body.layout--single .research-framework-embed .research-framework-shell {
  max-width: none;
  padding: 0 16px;
}

.research-framework-page {
  position: relative;
  height: 100vh;
  min-height: 0;
  padding: 12px 0;
  box-sizing: border-box;
  color: #0a2a66;
}

.rf-background-glow {
  position: fixed;
  width: 900px;
  height: 900px;
  background: transparent;
  top: -300px;
  right: -200px;
  pointer-events: none;
  filter: none;
}

.research-framework-shell {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.rf-header {
  margin-bottom: 60px;
}

.rf-header h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.rf-description {
  font-size: 1.1rem;
  color: rgba(10,42,102,0.72);
  max-width: 760px;
  line-height: 1.7;
}

#research-framework-root {
  position: relative;
  width: 100%;
  height: 100%;
}

.rf-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.rf-connector-path {
  fill: none;
  stroke: rgba(150, 160, 174, 0.84);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 5 9;
  filter: drop-shadow(0 0 4px rgba(146, 156, 170, 0.14));
  animation: rfConnectorFlow 4.8s linear infinite;
  opacity: 0.82;
}

#research-framework-root.is-hovering-node:not(.is-trajectory-focus) .rf-connectors {
  opacity: 0.18;
}

#research-framework-root.is-connector-hidden .rf-connectors {
  opacity: 0;
}

.rf-node {
  --rf-node-scale: 1;
  --rf-node-padding: 20px;
  --rf-title-size: 1.15rem;
  --rf-desc-size: 0.85rem;
  --rf-focus-shift-x: 0px;
  --rf-focus-shift-y: 0px;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 30%,
    rgba(255,255,255,0.95),
    rgba(230,243,255,0.88));

  border: 1px solid rgba(10,42,102,0.10);

  backdrop-filter: blur(20px);

  box-shadow:
    0 16px 40px rgba(10,42,102,0.10);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border 0.4s ease,
    opacity 0.35s ease,
    filter 0.35s ease,
    left 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.rf-node::before,
.rf-node::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.rf-node:hover {
  transform:
    translate(-50%, -50%)
    scale(1.08);

  border: 1px solid rgba(50,181,255,0.6);

  box-shadow:
    0 0 40px rgba(50,181,255,0.25);
}

.rf-node--diffuse {
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-radius: 48% 42% 46% 40% / 42% 38% 50% 44%;
  overflow: visible;
}

.rf-node--diffuse::before,
.rf-node--diffuse::after {
  display: none;
}

.rf-node--diffuse:hover {
  border: none;
  box-shadow: none;
}

#research-framework-root.is-hovering-node .rf-node {
  opacity: 0.28;
  filter: saturate(0.7);
}

#research-framework-root.is-hovering-node .rf-node.is-active,
#research-framework-root.is-hovering-node .rf-node:hover {
  opacity: 1;
  filter: none;
  z-index: 5;
}

.rf-node--trajectory {
  z-index: 3;
}

.rf-node--trajectory::before,
.rf-node--trajectory::after {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  pointer-events: none;
}

.rf-node--trajectory::before {
  inset: 0;
  border: 2px solid rgba(112, 217, 255, 0.36);
  box-shadow:
    0 0 12px rgba(112, 217, 255, 0.28),
    0 0 28px rgba(112, 217, 255, 0.18);
  background: transparent;
  filter: blur(2px);
  animation: rfTrajectoryHaloPulse 5.6s ease-in-out infinite;
}

.rf-node--trajectory::after {
  inset: 0;
  border: 1.5px solid rgba(176, 236, 255, 0.28);
  box-shadow:
    0 0 18px rgba(176, 236, 255, 0.22),
    0 0 36px rgba(126, 220, 255, 0.14);
  background: transparent;
  filter: blur(4px);
  animation: rfTrajectoryHaloDrift 6.8s ease-in-out infinite;
}

.rf-node--field {
  width: 0;
  height: 0;
}

.rf-node--field .rf-node-inner {
  width: 100%;
  min-width: 360px;
  padding: 0;
  overflow: visible;
  position: relative;
}

.rf-node--field .rf-node-title {
  margin-bottom: 4px;
}

.rf-node--field .rf-node-desc {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  max-width: 210px;
  margin: 0;
  font-weight: 650;
  color: rgba(10,42,102,0.62);
  z-index: 3;
  pointer-events: none;
}

.rf-field-cloud {
  position: relative;
  width: 360px;
  height: 306px;
  margin: 18px auto -8px;
  transform: scale(var(--rf-node-scale));
  transform-origin: center top;
}

.rf-field-cloud__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rf-field-cloud__caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(10, 42, 102, 0.7);
  text-align: center;
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
}

.rf-field-cloud__atmosphere polygon {
  transform-box: fill-box;
  transform-origin: center;
  stroke: none;
}

.rf-field-cloud__atmosphere polygon:nth-child(1) {
  fill: rgba(242, 248, 255, 0.18);
  transform: translate(-14px, -6px) rotate(-8deg) scale(1.14, 1.08);
  filter: url(#rf-field-blur-atmosphere);
}

.rf-field-cloud__atmosphere polygon:nth-child(2) {
  fill: rgba(234, 244, 252, 0.14);
  transform: translate(10px, -14px) rotate(11deg) scale(1.12, 1.08);
  filter: url(#rf-field-blur-atmosphere);
}

.rf-field-cloud__atmosphere polygon:nth-child(3) {
  fill: rgba(236, 245, 255, 0.12);
  transform: translate(18px, 10px) rotate(-14deg) scale(1.14, 1.1);
  filter: url(#rf-field-blur-atmosphere);
}

.rf-field-cloud__atmosphere polygon:nth-child(4) {
  fill: rgba(228, 240, 250, 0.1);
  transform: translate(-12px, 16px) rotate(15deg) scale(1.12, 1.12);
  filter: url(#rf-field-blur-atmosphere);
}

.rf-field-cloud__layer polygon {
  transform-box: fill-box;
  transform-origin: center;
  stroke: none;
}

.rf-field-cloud__layer--outer polygon:nth-child(1) {
  fill: rgba(231, 244, 252, 0.42);
  transform: translate(-28px, -12px) rotate(-13deg) scale(1.18, 1.02);
  filter: url(#rf-field-blur-outer);
}

.rf-field-cloud__layer--outer polygon:nth-child(2) {
  fill: rgba(224, 239, 251, 0.34);
  transform: translate(34px, -22px) rotate(15deg) scale(1.12, 1);
  filter: url(#rf-field-blur-outer);
}

.rf-field-cloud__layer--outer polygon:nth-child(3) {
  fill: rgba(216, 235, 248, 0.28);
  transform: translate(38px, 28px) rotate(-20deg) scale(1.16, 1.08);
  filter: url(#rf-field-blur-outer);
}

.rf-field-cloud__layer--outer polygon:nth-child(4) {
  fill: rgba(236, 247, 255, 0.3);
  transform: translate(-34px, 34px) rotate(18deg) scale(1.08, 1.08);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__layer--outer polygon:nth-child(5) {
  fill: rgba(209, 231, 246, 0.24);
  transform: translate(-4px, -38px) rotate(-8deg) scale(1.18, 1.1);
  filter: url(#rf-field-blur-outer);
}

.rf-field-cloud__layer--mid polygon:nth-child(1) {
  fill: rgba(197, 222, 241, 0.34);
  transform: translate(-34px, -4px) rotate(-11deg) scale(1.02);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__layer--mid polygon:nth-child(2) {
  fill: rgba(183, 213, 236, 0.3);
  transform: translate(24px, -18px) rotate(10deg) scale(1.03, 0.98);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__layer--mid polygon:nth-child(3) {
  fill: rgba(188, 217, 238, 0.32);
  transform: translate(34px, 22px) rotate(-16deg) scale(1.02, 1.03);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__layer--mid polygon:nth-child(4) {
  fill: rgba(173, 206, 232, 0.28);
  transform: translate(-18px, 30px) rotate(15deg) scale(0.98, 1.03);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__layer--mid polygon:nth-child(5) {
  fill: rgba(166, 201, 230, 0.26);
  transform: translate(-10px, -40px) rotate(-5deg) scale(1.04, 0.98);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__layer--inner polygon:nth-child(1) {
  fill: rgba(120, 173, 214, 0.2);
  transform: translate(-46px, 6px) rotate(-3deg) scale(0.84, 0.9);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__layer--inner polygon:nth-child(2) {
  fill: rgba(104, 159, 205, 0.18);
  transform: translate(-2px, -46px) rotate(5deg) scale(0.84, 0.9);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__layer--inner polygon:nth-child(3) {
  fill: rgba(138, 186, 223, 0.17);
  transform: translate(46px, -4px) rotate(-9deg) scale(0.83, 0.89);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__layer--inner polygon:nth-child(4) {
  fill: rgba(88, 144, 195, 0.14);
  transform: translate(4px, 46px) rotate(9deg) scale(0.82, 0.87);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__bridges polygon {
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
}

.rf-field-cloud__bridges polygon:nth-child(1) {
  fill: rgba(176, 210, 235, 0.14);
  transform: translate(-2px, -10px) rotate(-8deg) scale(1, 0.92);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__bridges polygon:nth-child(2) {
  fill: rgba(155, 197, 227, 0.11);
  transform: translate(10px, 2px) rotate(13deg) scale(0.96, 1.02);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__bridges polygon:nth-child(3) {
  fill: rgba(162, 203, 231, 0.11);
  transform: translate(-8px, 12px) rotate(-12deg) scale(0.98, 0.96);
  filter: url(#rf-field-blur-inner);
}

.rf-field-cloud__bridges polygon:nth-child(4) {
  fill: rgba(184, 216, 238, 0.1);
  transform: translate(-10px, 6px) rotate(11deg) scale(0.94, 1);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__bridges polygon:nth-child(5) {
  fill: rgba(168, 205, 232, 0.12);
  transform: translate(0px, 0px) rotate(-6deg) scale(1.02, 0.98);
  filter: url(#rf-field-blur-mid);
}

.rf-field-cloud__cores circle,
.rf-field-cloud__luminous-cores circle,
.rf-field-cloud__stars circle {
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
}

.rf-field-cloud__cores circle:nth-child(1) {
  fill: rgba(168, 208, 236, 0.11);
  filter: blur(8px);
  transform: translate(-34px, 2px) scale(0.92, 0.9);
}

.rf-field-cloud__cores circle:nth-child(2) {
  fill: rgba(146, 193, 228, 0.1);
  filter: blur(7px);
  transform: translate(-2px, -34px) scale(0.92, 0.9);
}

.rf-field-cloud__cores circle:nth-child(3) {
  fill: rgba(124, 177, 217, 0.08);
  filter: blur(6px);
  transform: translate(34px, 0px) scale(0.9, 0.88);
}

.rf-field-cloud__cores circle:nth-child(4) {
  fill: rgba(186, 221, 244, 0.08);
  filter: blur(6px);
  transform: translate(2px, 34px) scale(0.9, 0.88);
}

.rf-field-cloud__cores circle:nth-child(5) {
  fill: rgba(206, 231, 247, 0.1);
  filter: blur(4px);
  transform: scale(0.98, 0.92);
}

.rf-field-cloud__cores circle:nth-child(6) {
  fill: rgba(194, 223, 243, 0.09);
  filter: blur(4px);
  transform: scale(0.94, 0.9);
}

.rf-field-cloud__cores circle:nth-child(7) {
  fill: rgba(188, 219, 241, 0.09);
  filter: blur(4px);
  transform: scale(0.96, 0.92);
}

.rf-field-cloud__cores circle:nth-child(8) {
  fill: rgba(160, 203, 232, 0.05);
  filter: blur(4px);
  transform: translate(-14px, -10px) scale(0.96, 0.92);
}

.rf-field-cloud__cores circle:nth-child(9) {
  fill: rgba(140, 190, 225, 0.06);
  filter: blur(5px);
  transform: translate(12px, -6px) scale(0.98, 0.94);
}

.rf-field-cloud__cores circle:nth-child(10) {
  fill: rgba(151, 198, 229, 0.04);
  filter: blur(4px);
  transform: translate(10px, 10px) scale(0.92, 0.98);
}

.rf-field-cloud__cores circle:nth-child(11) {
  fill: rgba(157, 201, 232, 0.05);
  filter: blur(5px);
  transform: scale(1, 0.98);
}

.rf-field-cloud__luminous-cores {
  mix-blend-mode: screen;
  isolation: isolate;
}

.rf-field-cloud__luminous-cores circle:nth-child(1) {
  fill: rgba(255,255,255,0.92);
  filter: blur(20px);
  transform: scale(1.34, 1.14);
}

.rf-field-cloud__luminous-cores circle:nth-child(2) {
  fill: rgba(248,250,255,0.84);
  filter: blur(18px);
  transform: scale(1.24, 1.06);
}

.rf-field-cloud__luminous-cores circle:nth-child(3) {
  fill: rgba(255,255,255,0.96);
  filter: blur(22px);
  transform: scale(1.38, 1.18);
}

.rf-field-cloud__luminous-cores circle:nth-child(4) {
  fill: rgba(250,252,255,0.8);
  filter: blur(17px);
  transform: scale(1.18, 1.18);
}

.rf-field-cloud__luminous-cores circle:nth-child(5) {
  fill: rgba(255,255,255,0.9);
  filter: blur(19px);
  transform: scale(1.26, 1.1);
}

.rf-field-cloud__luminous-cores circle:nth-child(6) {
  fill: rgba(252,253,255,0.8);
  filter: blur(17px);
  transform: scale(1.16, 1.16);
}

.rf-field-cloud__luminous-cores circle:nth-child(7) {
  fill: rgba(255,255,255,0.98);
  filter: blur(24px);
  transform: scale(1.46, 1.24);
}

.rf-field-cloud__luminous-cores circle:nth-child(8) {
  fill: rgba(249,251,255,0.78);
  filter: blur(16px);
  transform: scale(1.14, 1.12);
}

.rf-field-cloud__luminous-cores circle:nth-child(9) {
  fill: rgba(255,255,255,0.82);
  filter: blur(16px);
  transform: scale(1.16, 1.04);
}

.rf-field-cloud__luminous-cores circle:nth-child(10) {
  fill: rgba(251,253,255,0.84);
  filter: blur(16px);
  transform: scale(1.14, 1.06);
}

.rf-field-cloud__luminous-cores circle:nth-child(11) {
  fill: rgba(250,252,255,0.8);
  filter: blur(15px);
  transform: scale(1.1, 1.02);
}

.rf-field-cloud__stars circle {
  fill: rgba(236, 247, 255, 0.92);
  filter: drop-shadow(0 0 5px rgba(149, 205, 241, 0.34));
}

.rf-field-cloud__stars circle:nth-child(3n) {
  fill: rgba(202, 231, 250, 0.9);
  filter: drop-shadow(0 0 6px rgba(123, 192, 236, 0.32));
}

.rf-field-cloud__stars circle:nth-child(4n) {
  fill: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 0 7px rgba(163, 214, 244, 0.42));
}

#research-framework-root.is-trajectory-focus .rf-node {
  opacity: 0.78;
  filter: saturate(0.95) brightness(1.02);
}

#research-framework-root.is-trajectory-focus .rf-node:not(.rf-node--trajectory) {
  opacity: 0.96;
  filter: saturate(1.04) brightness(1.06);
  box-shadow:
    0 18px 42px rgba(10,42,102,0.12);
  pointer-events: none;
}

#research-framework-root.is-trajectory-focus .rf-node--field:not(.rf-node--trajectory) {
  box-shadow: none;
  border: none;
  background: transparent;
}

#research-framework-root.is-trajectory-focus .rf-node.rf-node--trajectory,
#research-framework-root.is-trajectory-focus .rf-node.rf-node--trajectory:hover {
  opacity: 1;
  filter: none;
  z-index: 6;
  box-shadow:
    0 0 48px rgba(50,181,255,0.28);
}

.rf-node-inner {
  text-align: center;
  padding: var(--rf-node-padding);
  animation: rfFloatInner 8s ease-in-out infinite;
  animation-delay: var(--rf-float-delay, 0s);
}

.rf-node-title {
  font-size: var(--rf-title-size);
  font-weight: 700;
  margin-bottom: 8px;
  color: #0a2a66;
}

.rf-node--mobility .rf-node-title,
.rf-node--planning .rf-node-title {
  white-space: nowrap;
  font-size: calc(var(--rf-title-size) * 0.98);
}

.rf-node-bullets {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.rf-node-bullet {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 5px 0;
}

.rf-node-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.98);
  box-shadow:
    0 0 0 3px rgba(122, 210, 255, 0.16),
    0 0 10px rgba(90, 204, 255, 0.34);
  flex: 0 0 auto;
}

.rf-node-bullet-text {
  font-size: var(--rf-desc-size);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(10,42,102,0.76);
}

.rf-node-detail {
  position: absolute;
  left: calc(100% + 18px);
  top: 50%;
  width: 360px;
  transform: translateY(-50%);
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(10,42,102,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: left;
  z-index: 7;
}

.rf-node--suphmm .rf-node-detail,
.rf-node--mobility .rf-node-detail {
  left: auto;
  right: calc(100% + 18px);
}

.rf-node-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rf-node-detail-item + .rf-node-detail-item {
  margin-top: 14px;
}

.rf-node-detail-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.98);
  box-shadow:
    0 0 0 4px rgba(129, 213, 255, 0.14),
    0 0 14px rgba(88, 200, 255, 0.42);
  flex: 0 0 auto;
}

.rf-node-detail-label {
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  color: rgba(34, 115, 196, 0.84);
  text-transform: none;
}

.rf-node-detail-title {
  margin-top: 2px;
  font-size: 0.76rem;
  line-height: 1.35;
  color: rgba(10,42,102,0.78);
}

.rf-node--planning:hover .rf-node-detail,
.rf-node--planning.is-active .rf-node-detail,
.rf-node--mobility:hover .rf-node-detail,
.rf-node--mobility.is-active .rf-node-detail,
.rf-node--translation:hover .rf-node-detail,
.rf-node--translation.is-active .rf-node-detail,
.rf-node--suphmm:hover .rf-node-detail,
.rf-node--suphmm.is-active .rf-node-detail,
.rf-node--pmtree:hover .rf-node-detail,
.rf-node--pmtree.is-active .rf-node-detail {
  opacity: 1;
  transform: translateY(-50%) translateX(4px);
}

.rf-mini-trail {
  position: relative;
  width: 375px;
  height: 120px;
  margin: 4px auto 12px;
  transform: scale(var(--rf-node-scale));
  transform-origin: center top;
}

.rf-mini-trail-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rf-mini-trail-curve path {
  fill: none;
  stroke: rgba(150, 216, 246, 0.88);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 5 7 100;
  stroke-dashoffset: 100;
  animation: rfTrailDrawLoop 6.6s ease-in-out infinite;
}

.rf-mini-trail-segment {
  position: absolute;
  display: none;
}

.rf-mini-point {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #32b5ff;
  border: 4px solid rgba(255,255,255,0.95);
  box-shadow: 0 0 0 6px rgba(50,181,255,0.14);
}

.rf-mini-point::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #32b5ff;
  transform: translateX(-50%);
}

.rf-mini-trail .point-1 {
  left: 12px;
  top: 66px;
  animation-name: rfTrailPoint1Loop;
}

.rf-mini-trail .point-2 {
  left: 90px;
  top: 28px;
  animation-name: rfTrailPoint2Loop;
}

.rf-mini-trail .point-3 {
  left: 168px;
  top: 58px;
  animation-name: rfTrailPoint3Loop;
}

.rf-mini-trail .point-4 {
  left: 252px;
  top: 72px;
  animation-name: rfTrailPoint4Loop;
}

.rf-mini-trail .point-5 {
  left: 336px;
  top: 40px;
  animation-name: rfTrailPoint5Loop;
}

.rf-mini-trail .rf-mini-point,
.rf-mini-tree .rf-mini-point {
  opacity: 0;
  transform: scale(0.7);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.rf-mini-trail .rf-mini-point {
  animation-duration: 6.6s;
}

.rf-mini-tree {
  position: relative;
  width: 220px;
  height: 150px;
  margin: 28px auto -4px;
  transform: scale(var(--rf-node-scale));
  transform-origin: center top;
}

.rf-mini-tree-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rf-mini-tree-lines path {
  fill: none;
  stroke: rgba(50,181,255,0.68);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  animation-duration: 7.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.tree-point::after {
  border-top-color: inherit;
}

.rf-mini-tree .tree-point-1 {
  background: #0b1f4d;
  color: #0b1f4d;
}

.rf-mini-tree .tree-point-2,
.rf-mini-tree .tree-point-3 {
  background: #2f78c4;
  color: #2f78c4;
}

.rf-mini-tree .tree-point-4,
.rf-mini-tree .tree-point-5,
.rf-mini-tree .tree-point-6,
.rf-mini-tree .tree-point-7 {
  background: #bfe8ff;
  color: #bfe8ff;
}

.rf-mini-tree .tree-point-1 {
  left: 102px;
  top: 10px;
  animation-name: rfTreePoint1Loop;
}

.rf-mini-tree .tree-point-2 {
  left: 58px;
  top: 62px;
  animation-name: rfTreePoint2Loop;
}

.rf-mini-tree .tree-point-3 {
  left: 146px;
  top: 62px;
  animation-name: rfTreePoint3Loop;
}

.rf-mini-tree .tree-point-4 {
  left: 24px;
  top: 116px;
  animation-name: rfTreePoint4Loop;
}

.rf-mini-tree .tree-point-5 {
  left: 78px;
  top: 116px;
  animation-name: rfTreePoint5Loop;
}

.rf-mini-tree .tree-point-6 {
  left: 126px;
  top: 116px;
  animation-name: rfTreePoint6Loop;
}

.rf-mini-tree .tree-point-7 {
  left: 180px;
  top: 116px;
  animation-name: rfTreePoint7Loop;
}

.rf-mini-tree .rf-mini-point {
  animation-duration: 7.2s;
}

.rf-mini-tree-lines path:nth-child(1) {
  animation-name: rfTreeLine1Loop;
}

.rf-mini-tree-lines path:nth-child(2),
.rf-mini-tree-lines path:nth-child(3) {
  animation-name: rfTreeLine2Loop;
}

.rf-mini-tree-lines path:nth-child(4),
.rf-mini-tree-lines path:nth-child(5),
.rf-mini-tree-lines path:nth-child(6),
.rf-mini-tree-lines path:nth-child(7) {
  animation-name: rfTreeLine3Loop;
}

.rf-mini-suphmm {
  position: relative;
  width: 250px;
  height: 152px;
  margin: 2px auto 10px;
  transform: scale(var(--rf-node-scale));
  transform-origin: center top;
}

.rf-suphmm-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rf-suphmm-road {
  fill: none;
  stroke: rgba(142, 207, 236, 0.28);
  stroke-width: 5.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(166, 227, 255, 0.1));
}

.rf-suphmm-road-2 {
  stroke-width: 4.5;
  stroke: rgba(165, 220, 244, 0.24);
}

.rf-suphmm-road-3 {
  stroke-width: 4;
  stroke: rgba(184, 229, 247, 0.22);
}

.rf-suphmm-step {
  --rf-suphmm-loop-duration: 8s;
}

.rf-suphmm-search-radius {
  fill: rgba(113, 228, 255, 0.1);
  stroke: rgba(110, 223, 255, 0.88);
  stroke-width: 1.45;
  filter: drop-shadow(0 0 9px rgba(105, 220, 255, 0.24));
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: rfSuphmmSearchRadius var(--rf-suphmm-loop-duration) ease-out infinite;
  animation-delay: var(--rf-suphmm-delay);
}

.rf-suphmm-candidate-branch,
.rf-suphmm-transition-alt,
.rf-suphmm-transition-selected,
.rf-suphmm-route,
.rf-suphmm-best-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rf-suphmm-candidate-branch {
  stroke-width: 2.6;
  opacity: 0;
  animation-duration: var(--rf-suphmm-loop-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--rf-suphmm-delay);
}

.rf-suphmm-candidate-branch.selected {
  stroke: rgba(90, 206, 255, 0.92);
  filter: drop-shadow(0 0 8px rgba(93, 209, 255, 0.28));
  animation-name: rfSuphmmSelectedBranch;
}

.rf-suphmm-candidate-branch.rejected {
  stroke: rgba(188, 230, 248, 0.88);
  stroke-dasharray: 3 5;
  filter: drop-shadow(0 0 5px rgba(166, 227, 255, 0.12));
  animation-name: rfSuphmmRejectedBranch;
}

.rf-suphmm-transition {
  --rf-suphmm-loop-duration: 8s;
}

.rf-suphmm-transition-alt,
.rf-suphmm-transition-selected,
.rf-suphmm-route {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation-duration: var(--rf-suphmm-loop-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--rf-suphmm-delay);
}

.rf-suphmm-transition-alt {
  stroke: rgba(188, 230, 248, 0.85);
  stroke-width: 2.1;
  stroke-dasharray: 6 7 100;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(178, 230, 248, 0.1));
  animation-name: rfSuphmmRejectedTransition;
}

.rf-suphmm-transition-selected {
  stroke: rgba(86, 209, 255, 0.94);
  stroke-width: 3.6;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(94, 212, 255, 0.24));
  animation-name: rfSuphmmSelectedTransition;
}

.rf-suphmm-route {
  stroke: rgba(18, 86, 171, 0.92);
  stroke-width: 5.7;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(92, 199, 255, 0.18));
  animation-name: rfSuphmmRoutePersist;
}

.rf-suphmm-gps-point {
  fill: rgba(104, 190, 234, 0.94);
  stroke: rgba(255,255,255,0.9);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 8px rgba(90, 196, 241, 0.28));
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--rf-suphmm-delay);
  animation-name: rfSuphmmGpsFocus;
}

.rf-suphmm-best-path {
  stroke: rgba(31, 108, 194, 0.82);
  stroke-width: 6.4;
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(109, 213, 255, 0.28));
  animation: rfSuphmmBestPath 8s ease-in-out infinite;
}

.rf-suphmm-detail {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 200px;
  transform: translateX(-50%);
  font-size: 0.66rem;
  line-height: 1.35;
  color: rgba(10,42,102,0.56);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.rf-node--suphmm:hover .rf-suphmm-detail,
.rf-node--suphmm.is-active .rf-suphmm-detail {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

.rf-node--suphmm:hover .rf-suphmm-search-radius,
.rf-node--suphmm.is-active .rf-suphmm-search-radius {
  stroke: rgba(101, 222, 255, 0.92);
  filter: drop-shadow(0 0 12px rgba(108, 222, 255, 0.34));
}

.rf-node--suphmm:hover .rf-suphmm-transition-selected,
.rf-node--suphmm.is-active .rf-suphmm-transition-selected,
.rf-node--suphmm:hover .rf-suphmm-route,
.rf-node--suphmm.is-active .rf-suphmm-route,
.rf-node--suphmm:hover .rf-suphmm-best-path,
.rf-node--suphmm.is-active .rf-suphmm-best-path {
  filter: drop-shadow(0 0 12px rgba(89, 210, 255, 0.34));
}

@media (prefers-reduced-motion: reduce) {
  .rf-suphmm-search-radius,
  .rf-suphmm-candidate-branch,
  .rf-suphmm-transition-alt,
  .rf-suphmm-transition-selected,
  .rf-suphmm-route,
  .rf-suphmm-gps-point,
  .rf-suphmm-best-path {
    animation: none !important;
  }

  .rf-suphmm-search-radius,
  .rf-suphmm-candidate-branch.rejected,
  .rf-suphmm-transition-alt,
  .rf-suphmm-transition-selected {
    opacity: 0;
  }

  .rf-suphmm-candidate-branch.selected,
  .rf-suphmm-route,
  .rf-suphmm-best-path,
  .rf-suphmm-gps-point {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

.rf-node--suphmm .rf-node-title {
  margin-bottom: 10px;
}

.rf-node--suphmm .rf-node-desc {
  font-size: calc(var(--rf-desc-size) * 1.18);
  font-weight: 700;
  line-height: 1.35;
  max-width: 180px;
  margin: 0 auto;
  color: rgba(10,42,102,0.76);
}

.rf-node--translation .rf-node-desc {
  font-weight: 700;
}

.rf-mini-translation {
  position: relative;
  width: 250px;
  height: 150px;
  margin: 2px auto 10px;
  transform: scale(var(--rf-node-scale));
  transform-origin: center top;
}

.rf-translation-graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rf-translation-bg-network,
.rf-translation-taz,
.rf-translation-connector,
.rf-translation-network-path,
.rf-translation-final-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rf-translation-bg-network {
  stroke: rgba(173, 224, 245, 0.2);
  stroke-width: 3.2;
}

.rf-translation-taz {
  fill: rgba(201, 237, 252, 0.22);
  stroke: rgba(92, 196, 239, 0.72);
  stroke-width: 1.5;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(118, 214, 247, 0.12));
  animation: rfTranslationTazReveal 7.2s ease-in-out infinite;
}

.rf-translation-taz.destination {
  animation-delay: 0.25s;
}

.rf-translation-centroid {
  fill: rgba(255,255,255,0.98);
  stroke: rgba(87, 197, 240, 0.88);
  stroke-width: 1.2;
  opacity: 0.78;
  filter: drop-shadow(0 0 6px rgba(101, 214, 255, 0.16));
}

.rf-translation-centroid.origin {
  animation: rfTranslationOriginCentroid 7.2s ease-in-out infinite;
}

.rf-translation-centroid.destination {
  animation: rfTranslationDestinationCentroid 7.2s ease-in-out infinite;
}

.rf-translation-label {
  fill: rgba(10,42,102,0.52);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: rfTranslationLabelReveal 7.2s ease-in-out infinite;
}

.rf-translation-label.origin {
  fill: rgba(42, 154, 87, 0.96);
}

.rf-translation-label.destination {
  fill: rgba(214, 74, 74, 0.96);
}

.rf-translation-label.destination {
  animation-delay: 0.25s;
}

.rf-translation-connector,
.rf-translation-network-path,
.rf-translation-final-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.rf-translation-connector {
  stroke: rgba(96, 204, 244, 0.84);
  stroke-width: 2.3;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(108, 216, 255, 0.14));
}

.rf-translation-connector-origin {
  animation: rfTranslationOriginConnector 7.2s ease-in-out infinite;
}

.rf-translation-connector-destination {
  animation: rfTranslationDestinationConnector 7.2s ease-in-out infinite;
}

.rf-translation-network-path {
  stroke: rgba(39, 118, 204, 0.9);
  stroke-width: 3.6;
  opacity: 0;
  filter: drop-shadow(0 0 7px rgba(103, 212, 255, 0.18));
  animation: rfTranslationNetworkPath 7.2s ease-in-out infinite;
}

.rf-translation-final-path {
  stroke: rgba(20, 92, 182, 0.96);
  stroke-width: 4.8;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(101, 212, 255, 0.22));
  animation: rfTranslationFinalPath 7.2s ease-in-out infinite;
}

.rf-translation-detail {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 214px;
  transform: translateX(-50%);
  font-size: 0.64rem;
  line-height: 1.34;
  color: rgba(10,42,102,0.56);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.rf-node--translation:hover .rf-translation-detail,
.rf-node--translation.is-active .rf-translation-detail {
  opacity: 1;
  transform: translateX(-50%) translateY(2px);
}

.rf-node--translation:hover .rf-translation-taz,
.rf-node--translation.is-active .rf-translation-taz {
  stroke: rgba(74, 195, 241, 0.92);
}

.rf-node--translation:hover .rf-translation-centroid,
.rf-node--translation.is-active .rf-translation-centroid {
  filter: drop-shadow(0 0 9px rgba(100, 214, 255, 0.3));
}

.rf-node--translation:hover .rf-translation-final-path,
.rf-node--translation.is-active .rf-translation-final-path {
  filter: drop-shadow(0 0 13px rgba(101, 212, 255, 0.34));
}

@media (prefers-reduced-motion: reduce) {
  .rf-translation-taz,
  .rf-translation-centroid,
  .rf-translation-label,
  .rf-translation-connector,
  .rf-translation-network-path,
  .rf-translation-final-path {
    animation: none !important;
  }

  .rf-translation-taz,
  .rf-translation-centroid,
  .rf-translation-label,
  .rf-translation-final-path {
    opacity: 1;
  }

  .rf-translation-connector,
  .rf-translation-network-path {
    opacity: 0;
    stroke-dashoffset: 0;
  }

  .rf-translation-final-path {
    stroke-dashoffset: 0;
  }
}

.rf-node--trajectory .rf-node-title {
  font-size: calc(var(--rf-title-size) * 1.22);
  margin-bottom: 10px;
}

.rf-node--trajectory .rf-node-desc {
  font-size: calc(var(--rf-desc-size) * 1.18);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(10,42,102,0.78);
  margin-top: -22px;
}

.rf-node-desc {
  font-size: var(--rf-desc-size);
  color: rgba(10,42,102,0.68);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .rf-node--trajectory::before,
  .rf-node--trajectory::after {
    animation: none !important;
    opacity: 0.45;
    transform: scale(1);
  }

  .rf-node-inner {
    animation: none;
  }
}

@keyframes rfFloatInner {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rfTrajectoryHaloPulse {

  0%,
  100% {
    opacity: 0.46;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rfTrajectoryHaloDrift {

  0%,
  100% {
    opacity: 0.22;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(1);
  }
}

@keyframes rfConnectorFlow {

  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -56;
  }
}

@keyframes rfTrailDrawLoop {

  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }

  6% {
    opacity: 1;
  }

  82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
}

@keyframes rfTrailPoint1Loop {

  0%,
  7% {
    opacity: 0;
    transform: scale(0.7);
  }

  8%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTrailPoint2Loop {

  0%,
  25% {
    opacity: 0;
    transform: scale(0.7);
  }

  26%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTrailPoint3Loop {

  0%,
  43% {
    opacity: 0;
    transform: scale(0.7);
  }

  44%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTrailPoint4Loop {

  0%,
  61% {
    opacity: 0;
    transform: scale(0.7);
  }

  62%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTrailPoint5Loop {

  0%,
  79% {
    opacity: 0;
    transform: scale(0.7);
  }

  80%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreeLine1Loop {

  0%,
  15% {
    stroke-dashoffset: 100;
    opacity: 0;
  }

  16% {
    opacity: 1;
  }

  30%,
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
}

@keyframes rfTreeLine2Loop {

  0%,
  31% {
    stroke-dashoffset: 100;
    opacity: 0;
  }

  32% {
    opacity: 1;
  }

  48%,
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
}

@keyframes rfTreeLine3Loop {

  0%,
  49% {
    stroke-dashoffset: 100;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  68%,
  92% {
    stroke-dashoffset: 0;
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
}

@keyframes rfTreePoint1Loop {

  0%,
  5% {
    opacity: 0;
    transform: scale(0.7);
  }

  6%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint2Loop {

  0%,
  33% {
    opacity: 0;
    transform: scale(0.7);
  }

  34%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint3Loop {

  0%,
  33% {
    opacity: 0;
    transform: scale(0.7);
  }

  34%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint4Loop {

  0%,
  53% {
    opacity: 0;
    transform: scale(0.7);
  }

  54%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint5Loop {

  0%,
  53% {
    opacity: 0;
    transform: scale(0.7);
  }

  54%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint6Loop {

  0%,
  53% {
    opacity: 0;
    transform: scale(0.7);
  }

  54%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfTreePoint7Loop {

  0%,
  53% {
    opacity: 0;
    transform: scale(0.7);
  }

  54%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.7);
  }
}

@keyframes rfSuphmmGpsFocus {

  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  8%,
  18% {
    opacity: 1;
    transform: scale(1.34);
  }

  26% {
    opacity: 0.86;
    transform: scale(1.06);
  }
}

@keyframes rfSuphmmSearchRadius {

  0%,
  6%,
  100% {
    opacity: 0;
    transform: scale(0.6);
  }

  12% {
    opacity: 0.92;
    transform: scale(4.4);
  }

  22% {
    opacity: 0.72;
    transform: scale(8.2);
  }

  34% {
    opacity: 0;
    transform: scale(10.4);
  }
}

@keyframes rfSuphmmRejectedBranch {

  0%,
  11%,
  100% {
    opacity: 0;
  }

  18%,
  32% {
    opacity: 0.92;
  }

  44% {
    opacity: 0.14;
  }

  52% {
    opacity: 0;
  }
}

@keyframes rfSuphmmSelectedBranch {

  0%,
  11%,
  100% {
    opacity: 0;
  }

  18%,
  30% {
    opacity: 0.82;
  }

  38% {
    opacity: 1;
  }

  52% {
    opacity: 0.18;
  }

  60% {
    opacity: 0;
  }
}

@keyframes rfSuphmmRejectedTransition {

  0%,
  22%,
  100% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  30% {
    opacity: 0.82;
    stroke-dashoffset: 72;
  }

  44% {
    opacity: 0.68;
    stroke-dashoffset: 0;
  }

  56% {
    opacity: 0.12;
    stroke-dashoffset: 0;
  }

  64% {
    opacity: 0;
  }
}

@keyframes rfSuphmmSelectedTransition {

  0%,
  24%,
  100% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  34% {
    opacity: 0.92;
    stroke-dashoffset: 78;
  }

  48% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  58% {
    opacity: 0.48;
    stroke-dashoffset: 0;
  }

  66% {
    opacity: 0;
  }
}

@keyframes rfSuphmmRoutePersist {

  0%,
  28% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  38% {
    opacity: 0.88;
    stroke-dashoffset: 58;
  }

  52%,
  96% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes rfSuphmmBestPath {

  0%,
  81% {
    opacity: 0;
  }

  86% {
    opacity: 0.42;
  }

  92% {
    opacity: 0.88;
  }

  97% {
    opacity: 0.62;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rfTranslationTazReveal {

  0%,
  100% {
    opacity: 0;
  }

  8%,
  92% {
    opacity: 1;
  }
}

@keyframes rfTranslationLabelReveal {

  0%,
  100% {
    opacity: 0;
  }

  10%,
  92% {
    opacity: 0.86;
  }
}

@keyframes rfTranslationOriginCentroid {

  0%,
  18%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }

  24%,
  34% {
    opacity: 1;
    transform: scale(1.45);
  }

  42% {
    opacity: 0.96;
    transform: scale(1.08);
  }
}

@keyframes rfTranslationDestinationCentroid {

  0%,
  72%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }

  78%,
  88% {
    opacity: 1;
    transform: scale(1.45);
  }

  94% {
    opacity: 0.96;
    transform: scale(1.08);
  }
}

@keyframes rfTranslationOriginConnector {

  0%,
  26% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  36% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  90% {
    opacity: 0.9;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes rfTranslationNetworkPath {

  0%,
  36% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  56% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  90% {
    opacity: 0.96;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes rfTranslationDestinationConnector {

  0%,
  56% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  70% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  90% {
    opacity: 0.9;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes rfTranslationFinalPath {

  0%,
  64% {
    opacity: 0;
    stroke-dashoffset: 100;
  }

  76% {
    opacity: 0.94;
    stroke-dashoffset: 0;
  }

  92% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}
