.app-back {
  position: fixed;
  z-index: 1000;
  top: 20px;
  left: 20px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line, #e2e5df);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 16px rgba(28, 33, 28, .06);
  color: var(--muted, #5f675e);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.app-back:hover {
  border-color: var(--dgl, #87ae3b);
  color: var(--dgl-deep, #20562b);
}

.app-back:focus-visible {
  outline: 3px solid rgba(135, 174, 59, .35);
  outline-offset: 3px;
}

.pitch-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.pitch-flow--single {
  justify-content: center;
}

.pitch-flow__link {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #1e326e;
  text-decoration: none;
  transition: transform .15s ease;
}

.pitch-flow__arrow {
  display: block;
  color: currentColor;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 800;
  line-height: 1;
  transition: transform .15s ease;
}

.pitch-flow__link--back:hover .pitch-flow__arrow {
  transform: translateX(-2px);
}

.pitch-flow__link--next:hover .pitch-flow__arrow {
  transform: translateX(2px);
}

.pitch-flow__link:focus-visible {
  outline: 3px solid rgba(30, 50, 110, .24);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .app-back {
    top: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pitch-flow__link,
  .pitch-flow__arrow {
    transition: none;
  }
}

@media print {
  .app-back,
  .pitch-flow {
    display: none;
  }
}
