









.flow-nav {
  margin-top: var(--s-7);
  display: flex;
}

.flow-cta {
  
  appearance: none;
  -webkit-appearance: none;
  margin: 0;

  display: inline-flex;
  align-items: center;
  gap: 0.4ch;

  padding: 0.85em 1.25em;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--green) 50%, transparent);
  border-radius: var(--r-1, 2px);

  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  white-space: nowrap;

  cursor: pointer;
  transition:
    border-color .22s ease,
    background   .22s ease,
    box-shadow   .22s ease,
    text-shadow  .22s ease,
    transform    .12s ease;
}


.flow-cta::after {
  content: '';
  display: inline-block;
  width: 0.55ch;
  height: 1.05em;
  margin-left: 0.15ch;
  background: currentColor;
  opacity: 0;
  transition: opacity .2s ease;
}

.flow-cta:hover,
.flow-cta:focus-visible {
  border-color: var(--green);
  background: rgba(57, 255, 20, 0.06);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 20, 0.12),
    0 0 18px rgba(57, 255, 20, 0.12);
}

.flow-cta:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 20, 0.2),
    0 0 0 2px rgba(57, 255, 20, 0.35);
}

.flow-cta:hover::after,
.flow-cta:focus-visible::after {
  opacity: 1;
  animation: flow-caret-blink 1s steps(1) infinite;
}

.flow-cta:active {
  transform: translateY(1px);
}


.flow-cta.is-executing {
  pointer-events: none;
  border-color: var(--green);
  background: rgba(57, 255, 20, 0.1);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.7);
}
.flow-cta.is-executing::after {
  display: none;
}

@keyframes flow-caret-blink {
  50% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-cta,
  .flow-cta::after { transition: none; }
  .flow-cta:hover::after,
  .flow-cta:focus-visible::after { animation: none; opacity: 1; }
}
