:root {
  --ink-navy: #0a1c26;
  --loop-teal: #00b5a7;
  --mint: #c7f5ee;
  --mist: #f1f7f7;
  --slate: #526b76;
  --teal-ink: #007f76;
  --brand-white: #ffffff;
}
.evoke-wordmark {
  display: block;
  width: 196px;
  min-width: 172px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.evoke-symbol {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.evoke-loop {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
  color: var(--ink-navy);
  font-family: Manrope, system-ui, sans-serif;
}
.loop-map {
  position: relative;
  aspect-ratio: 1;
  isolation: isolate;
}
.loop-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.loop-track {
  fill: none;
  stroke: var(--slate);
  stroke-width: 1;
  opacity: 0.55;
}
.loop-current {
  fill: none;
  stroke: var(--loop-teal);
  stroke-width: 2;
  stroke-dasharray: 16 18;
  animation: loop-flow 40s linear infinite;
}
.loop-arrow {
  fill: var(--loop-teal);
}
.loop-heart {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 37%;
  gap: 12px;
}
.loop-heart .evoke-symbol {
  width: 84px;
  height: 68px;
}
.loop-heart strong {
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.035em;
  color: inherit;
}
.loop-heart > span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: inherit;
  opacity: 0.7;
}
.loop-stages {
  margin: 0;
  padding: 0;
  list-style: none;
}
.loop-stage {
  position: absolute;
  width: 29%;
  max-width: 155px;
  min-width: 88px;
}
.loop-stage a {
  position: relative;
  display: block;
  padding: 14px 18px;
  background: var(--brand-white);
  border: 1px solid #c7d9db;
  border-radius: 13px;
  text-decoration: none;
  color: var(--ink-navy);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.loop-stage a:hover,
.loop-stage a:focus-visible {
  border-color: var(--loop-teal);
  box-shadow: 0 8px 24px #0a1c2610;
  transform: translateY(-3px);
  outline: 2px solid var(--loop-teal);
  outline-offset: 4px;
}
.loop-stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal-ink);
  margin-bottom: 7px;
}
.loop-stage strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.loop-stage small {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: var(--slate);
}
.loop-stage .stage-go {
  position: absolute;
  bottom: 17px;
  right: 14px;
  color: var(--teal-ink);
}
.stage-1 {
  top: 1%;
  left: 50%;
  transform: translateX(-50%);
}
.stage-2 {
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}
.stage-3 {
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
}
.stage-4 {
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
}
.loop-caption {
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: inherit;
  margin-top: 14px;
}
.loop-caption strong {
  color: var(--teal-ink);
}
.loop-motion-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: inherit;
  opacity: 0.8;
  font-size: 11px;
  cursor: pointer;
}
.loop-motion-control input {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--loop-teal);
}
.evoke-loop:has(.loop-motion-control input:checked) .loop-current {
  animation-play-state: paused;
}
.loop-compact {
  max-width: 360px;
}
.loop-compact .loop-current {
  animation: none;
}
.loop-compact .loop-stage a {
  padding: 9px 12px;
}
.loop-compact .loop-stage strong {
  font-size: 14px;
}
.loop-compact .loop-stage-top {
  margin-bottom: 3px;
}
.loop-compact .loop-heart .evoke-symbol {
  width: 62px;
  height: 50px;
}
.loop-compact .loop-heart strong {
  font-size: 18px;
}
.loop-compact .loop-heart > span {
  display: none;
}
.loop-compact .stage-go {
  display: none;
}
@keyframes loop-flow {
  to {
    stroke-dashoffset: -680;
  }
}
@media (max-width: 600px) {
  .loop-stage a {
    padding: 10px 12px;
  }
  .loop-stage-top {
    margin-bottom: 3px;
  }
  .loop-stage strong {
    font-size: 14px;
  }
  .loop-stage .stage-go {
    display: none;
  }
  .loop-heart .evoke-symbol {
    width: 64px;
    height: 50px;
  }
  .loop-heart > span {
    display: none;
  }
  .loop-heart {
    gap: 5px;
  }
  .loop-heart strong {
    font-size: 17px;
  }
  .loop-caption {
    font-size: 11px;
  }
  .evoke-wordmark {
    width: 184px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loop-current {
    animation: none;
  }
  .loop-stage a {
    transition: none;
  }
  .loop-motion-control {
    display: none;
  }
}
