/* Our Process — scroll traveler arrow across the 4 steps */

#process .roadmap-wrap {
  position: relative;
  padding-top: 190px;
}

/* Hide static full-bleed stripe; we draw our own rail */
#process .roadmap-wrap::before,
#process .roadmap-wrap::after {
  display: none !important;
}

#process .roadmap-item:first-child::before {
  display: none !important;
}

#process .roadmap-rail {
  position: absolute;
  left: 0;
  right: 0;
  top: 189px;
  height: 0;
  z-index: 2;
  pointer-events: none;
}

#process .roadmap-rail__track,
#process .roadmap-rail__fill {
  position: absolute;
  left: 0;
  top: -1px;
  height: 2px;
  border-radius: 2px;
}

#process .roadmap-rail__track {
  right: 0;
  background: rgba(167, 203, 235, 0.45);
}

#process .roadmap-traveler {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 20px;
  margin-top: -10px;
  margin-left: -4px;
  will-change: transform;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
  opacity: 0;
  z-index: 5;
}

#process .roadmap-traveler.is-ready {
  opacity: 1;
}

/* Yellow trail behind the tip — keep thin so it doesn't read as a second shaft */
#process .roadmap-rail__fill {
  width: 0;
  height: 2px;
  top: -1px;
  background: #ffe27a;
  box-shadow: none;
  border-radius: 2px;
}

#process .roadmap-traveler svg {
  display: block;
  width: 28px;
  height: 20px;
  overflow: visible;
}

/* Shaft removed — trail line replaces it; only the tip remains */
#process .roadmap-traveler__shaft {
  display: none;
}

#process .roadmap-traveler__tip {
  fill: #ffe27a;
}

/* Steps sit above the rail */
#process .roadmap-item {
  z-index: 3;
}

/* Larger hexagons + icons inside */
#process .roadmap-item span.roadmap-icon {
  height: 168px;
  width: 152px;
  line-height: 168px;
  top: -190px;
}

#process .roadmap-item span.roadmap-icon:before {
  font-size: 168px;
  line-height: 168px;
}

#process .roadmap-item span.roadmap-icon i,
#process .roadmap-item span.roadmap-icon i:before {
  font-size: 92px;
}

#process .roadmap-item.is-passed::after {
  box-shadow: 0 0 0 4px rgba(255, 226, 122, 0.35);
}

body.home-navy #process .roadmap-rail__track {
  background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 576px) {
  #process .roadmap-rail {
    display: none !important;
  }

  #process .roadmap-wrap {
    padding-top: 0;
  }

  #process .roadmap-item {
    padding-top: 190px;
  }

  #process .roadmap-item span.roadmap-icon {
    top: 0;
  }

  #process .roadmap-item::after {
    top: 183.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #process .roadmap-traveler {
    display: none !important;
  }

  #process .roadmap-rail__fill {
    width: 100% !important;
  }
}
