/* Crisp CSS-only workflow icons for the Features page. */

.workflow-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  color: var(--brand-strong);
}

.workflow-icon::before,
.workflow-icon::after {
  position: absolute;
  box-sizing: border-box;
  content: "";
}

.icon-upload {
  background: linear-gradient(currentColor, currentColor) center 5px / 2px 12px no-repeat;
}

.icon-upload::before {
  right: 3px;
  bottom: 2px;
  left: 3px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}

.icon-upload::after {
  top: 3px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-ai::before {
  top: -5px;
  left: 2px;
  color: currentColor;
  content: "\2726";
  font-size: 25px;
  line-height: 1;
}

.icon-ai::after {
  right: 1px;
  bottom: 1px;
  color: currentColor;
  content: "\2726";
  font-size: 10px;
  line-height: 1;
}

.icon-coverage {
  background:
    radial-gradient(circle at 50% 26%, currentColor 0 3px, transparent 3.5px),
    radial-gradient(circle at 21% 39%, currentColor 0 2.3px, transparent 2.8px),
    radial-gradient(circle at 79% 39%, currentColor 0 2.3px, transparent 2.8px);
}

.icon-coverage::before {
  bottom: 2px;
  left: 5px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 5px 5px;
}

.icon-coverage::after {
  right: 0;
  bottom: 1px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--white);
}

.icon-proposal::before {
  top: 1px;
  left: 3px;
  width: 17px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-proposal::after {
  right: 0;
  bottom: 0;
  display: flex;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--brand-strong);
  border: 2px solid var(--white);
  border-radius: 50%;
  content: "\2713";
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.icon-level::before {
  bottom: 3px;
  left: 3px;
  width: 5px;
  height: 11px;
  background: currentColor;
  border-radius: 2px 2px 0 0;
  box-shadow: 7px -5px 0 currentColor, 14px 2px 0 currentColor;
}

.icon-level::after {
  top: -3px;
  right: -1px;
  color: currentColor;
  content: "\2713";
  font-size: 11px;
  font-weight: 900;
}

.icon-revision::before {
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
}

.icon-revision::after {
  top: 2px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  transform: rotate(-18deg);
}
