@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Manrope:wght@400;600;700&display=swap');

/* Shuttle  -  mint route map */
.ms-shuttle {
  --ms-bg: #ecfdf5;
  --ms-text: #0f1f1a;
  --ms-muted: #4d6b5f;
  --ms-accent: #2dd4bf;
  --ms-accent-text: #0f1f1a;
  --ms-surface: #fff;
  --ms-border: #99f6e4;
  --ms-nav-bg: rgba(236, 253, 245, 0.96);
  --ms-display: "Syne", sans-serif;
  --ms-body: "Manrope", sans-serif;
  --ms-hotspot-ring: rgba(45, 212, 191, 0.55);
  --ms-hotspot-radius: 1rem;
  --ms-route: #14b8a6;
}

.sh-hero {
  text-align: center;
  padding: 3rem 1.25rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.sh-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.15), transparent 70%);
  animation: sh-pulse-ring 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sh-pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.sh-hero h1 {
  font-family: var(--ms-display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0;
  position: relative;
  line-height: 1.1;
}

.sh-hero p {
  margin: 0.85rem auto 0;
  color: var(--ms-muted);
  font-size: 1.02rem;
  max-width: 32rem;
  position: relative;
}

.sh-map {
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2.5rem;
}

.sh-route-svg {
  width: 100%;
  color: var(--ms-route);
  margin-bottom: 2rem;
  filter: drop-shadow(0 2px 8px rgba(45, 212, 191, 0.2));
}

.sh-route-svg path {
  animation: sh-dash 20s linear infinite;
}

@keyframes sh-dash {
  to { stroke-dashoffset: -200; }
}

.sh-stops {
  display: grid;
  gap: 1.25rem;
  position: relative;
}

@media (min-width: 640px) {
  .sh-stops { grid-template-columns: repeat(3, 1fr); }
}

.sh-stop {
  padding: 1.25rem 1rem 1rem;
  background: var(--ms-surface);
  border-radius: 1rem;
  border: 2px solid var(--ms-border);
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
  animation: sh-stop-in 0.5s ease both;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes sh-stop-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.sh-stop:hover {
  transform: translateY(-4px);
  border-color: var(--ms-accent);
}

.sh-stop::before {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--ms-accent);
  border: 3px solid var(--ms-surface);
  border-radius: 50%;
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.4);
}

.sh-stop h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-family: var(--ms-display);
  color: var(--ms-route);
}

.sh-stop p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ms-muted);
  line-height: 1.5;
}

.sh-face {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}

.sh-face .ms-hotspot-wrap {
  border-radius: 1rem;
  border: 2px solid var(--ms-border);
  box-shadow: 0 12px 40px rgba(45, 212, 191, 0.12);
}

.sh-ui {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

.sh-ui .ms-ui-shot {
  border-radius: 1rem;
  border: 2px solid var(--ms-border);
}

.ms-shuttle .ms-www {
  max-width: 1040px;
  padding: 0 1.25rem 2rem;
}

.ms-shuttle .ms-www > div {
  padding: 1rem;
  background: var(--ms-surface);
  border-radius: 0.85rem;
  border: 1px solid var(--ms-border);
}

.ms-shuttle .ms-pullquote {
  max-width: 640px;
  margin: 2rem auto;
  border-radius: 1rem;
  background: var(--ms-surface);
  border: 2px solid var(--ms-border);
  text-align: center;
}

.ms-shuttle .ms-face-block {
  justify-content: center;
  margin: 1.5rem auto;
  max-width: 400px;
}

.ms-shuttle .ms-face-block img {
  border: 3px solid var(--ms-accent);
}

.ms-shuttle .ms-signup {
  border-radius: 1rem;
  border-color: var(--ms-border);
}

.ms-shuttle .ms-facts {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

@media (min-width: 640px) {
  .ms-shuttle .ms-facts { grid-template-columns: repeat(2, 1fr); }
}
