.crypto-benefits-infographic {
  --frame-width: 700px;
  --frame-height: 600px;
  --frame-inset: 24px;
  --frame-bg: linear-gradient(180deg, #fbfaff 0%, #f5f1fb 100%);
  --frame-purple: #4e1fa3;
  --frame-line: rgba(61, 61, 61, 0.54);
  --text-main: #191a1e;
  --text-muted: rgba(25, 26, 30, 0.62);
  --orbit-purple: #5a33c7;
  --orbit-soft: #ebe2fb;
  --orbit-line: #5a33c7;

  width: 100%;
  margin: 18px 0 28px;
  display: flex;
  justify-content: center;
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
}

.crypto-benefits-infographic,
.crypto-benefits-infographic *,
.crypto-benefits-infographic *::before,
.crypto-benefits-infographic *::after {
  box-sizing: border-box;
}

.crypto-benefits-infographic .blog-frame {
  width: min(100%, var(--frame-width));
  min-height: var(--frame-height);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--frame-bg);
  box-shadow: 0 22px 60px rgba(53, 40, 90, 0.12);
  isolation: isolate;
}

.crypto-benefits-infographic .blog-frame::before {
  content: "";
  position: absolute;
  inset: var(--frame-inset);
  border: 1.474px solid var(--frame-line);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.crypto-benefits-infographic .blog-frame__canvas {
  position: relative;
  z-index: 1;
  padding: var(--frame-inset);
}

.crypto-benefits-infographic .blog-frame__header {
  padding: 26px 42px 10px;
  text-align: center;
}

.crypto-benefits-infographic .blog-frame__title {
  max-width: 720px;
  margin: 0 auto;
  color: #08070c !important;
  background: none !important;
  -webkit-text-fill-color: #08070c !important;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.crypto-benefits-infographic .blog-frame__title span {
  color: var(--frame-purple) !important;
  background: none !important;
  -webkit-text-fill-color: var(--frame-purple) !important;
  font-weight: 600;
}

.crypto-benefits-infographic .benefits-orbit {
  padding: 4px 36px 36px;
}

.crypto-benefits-infographic .benefits-orbit__stage {
  position: relative;
  min-height: 430px;
}

.crypto-benefits-infographic .benefits-orbit__arc {
  position: absolute;
  left: 50%;
  top: 110px;
  width: 480px;
  height: 220px;
  transform: translateX(-50%);
  border: 3px solid var(--orbit-line);
  border-bottom: 0;
  border-radius: 560px 560px 0 0;
  pointer-events: none;
  z-index: 0;
}

.crypto-benefits-infographic .benefits-orbit__arc::before,
.crypto-benefits-infographic .benefits-orbit__arc::after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orbit-line);
}

.crypto-benefits-infographic .benefits-orbit__arc::before {
  left: -5px;
}

.crypto-benefits-infographic .benefits-orbit__arc::after {
  right: -5px;
}

.crypto-benefits-infographic .benefits-orbit__center {
  position: absolute;
  left: 50%;
  top: 250px;
  width: 300px;
  min-height: 100px;
  transform: translateX(-50%);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
  z-index: 1;
}

.crypto-benefits-infographic .benefits-orbit__eyebrow {
  margin: 0;
  color: rgba(90, 51, 199, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.crypto-benefits-infographic .benefits-orbit__title {
  max-width: 310px;
  margin: 0;
  color: var(--orbit-purple);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.crypto-benefits-infographic .benefit-node {
  position: absolute;
  z-index: 1;
  display: block;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-main);
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.crypto-benefits-infographic .benefit-node__circle {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #fbfaff;
  box-shadow: inset 0 0 0 10px var(--orbit-soft);
  color: var(--orbit-purple);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.crypto-benefits-infographic .benefit-node__label {
  position: absolute;
  display: block;
  width: 160px;
  color: var(--text-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.crypto-benefits-infographic .benefit-node__circle svg {
  width: 42px;
  height: 42px;
  display: block;
  transition: transform 180ms ease;
}

.crypto-benefits-infographic .benefit-node:hover .benefit-node__circle,
.crypto-benefits-infographic .benefit-node:focus-visible .benefit-node__circle,
.crypto-benefits-infographic .benefit-node.is-active .benefit-node__circle {
  background: var(--orbit-purple);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.2), 0 14px 28px rgba(90, 51, 199, 0.18);
}

.crypto-benefits-infographic .benefit-node:hover .benefit-node__circle svg,
.crypto-benefits-infographic .benefit-node:focus-visible .benefit-node__circle svg,
.crypto-benefits-infographic .benefit-node.is-active .benefit-node__circle svg {
  transform: scale(1.04);
}

.crypto-benefits-infographic .benefit-node:hover .benefit-node__label,
.crypto-benefits-infographic .benefit-node:focus-visible .benefit-node__label,
.crypto-benefits-infographic .benefit-node.is-active .benefit-node__label {
  color: var(--orbit-purple);
}

.crypto-benefits-infographic .benefit-node:focus-visible {
  outline: 3px solid rgba(90, 51, 199, 0.22);
  outline-offset: 6px;
  border-radius: 24px;
}

.crypto-benefits-infographic .benefit-node--one {
  left: 20px;
  top: 290px;
}

.crypto-benefits-infographic .benefit-node--two {
  left: 75px;
  top: 155px;
}

.crypto-benefits-infographic .benefit-node--three {
  left: 195px;
  top: 65px;
}

.crypto-benefits-infographic .benefit-node--four {
  left: 310px;
  top: 65px;
}

.crypto-benefits-infographic .benefit-node--five {
  left: 430px;
  top: 155px;
}

.crypto-benefits-infographic .benefit-node--six {
  left: 500px;
  top: 290px;
}

.crypto-benefits-infographic .benefit-node--one .benefit-node__label,
.crypto-benefits-infographic .benefit-node--six .benefit-node__label {
  left: 50%;
  top: 106px;
  transform: translateX(-50%);
}

.crypto-benefits-infographic .benefit-node--two .benefit-node__label {
  right: 18px;
  top: -36px;
  text-align: right;
}

.crypto-benefits-infographic .benefit-node--three .benefit-node__label,
.crypto-benefits-infographic .benefit-node--four .benefit-node__label {
  left: 50%;
  top: -38px;
  transform: translateX(-50%);
}

.crypto-benefits-infographic .benefit-node--three .benefit-node__label {
  left: calc(50% - 40px);
}

.crypto-benefits-infographic .benefit-node--four .benefit-node__label {
  left: calc(50% + 60px);
}

.crypto-benefits-infographic .benefit-node--five .benefit-node__label {
  left: 18px;
  top: -36px;
  text-align: left;
}

@media (max-width: 767.98px) {
  .crypto-benefits-infographic {
    margin: 16px 0 24px;
  }

  .crypto-benefits-infographic {
    --frame-inset: 18px;
  }

  .crypto-benefits-infographic .blog-frame {
    min-height: auto;
  }

  .crypto-benefits-infographic .blog-frame__header {
    padding: 22px 18px 8px;
  }

  .crypto-benefits-infographic .blog-frame__title {
    font-size: 22px;
  }

  .crypto-benefits-infographic .benefits-orbit {
    padding: 12px 14px 28px;
  }

  .crypto-benefits-infographic .benefits-orbit__stage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-height: 0;
    padding-top: 150px;
  }

  .crypto-benefits-infographic .benefits-orbit__arc {
    display: none;
  }

  .crypto-benefits-infographic .benefits-orbit__center {
    top: 0;
    width: 100%;
    min-height: 120px;
  }

  .crypto-benefits-infographic .benefits-orbit__title {
    font-size: 24px;
  }

  .crypto-benefits-infographic .benefit-node,
  .crypto-benefits-infographic .benefit-node--one,
  .crypto-benefits-infographic .benefit-node--two,
  .crypto-benefits-infographic .benefit-node--three,
  .crypto-benefits-infographic .benefit-node--four,
  .crypto-benefits-infographic .benefit-node--five,
  .crypto-benefits-infographic .benefit-node--six {
    position: static;
    display: grid;
    width: auto;
    height: auto;
    transform: none;
    justify-items: center;
    text-align: center;
    gap: 8px;
  }

  .crypto-benefits-infographic .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--one .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--two .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--three .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--four .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--five .benefit-node__label,
  .crypto-benefits-infographic .benefit-node--six .benefit-node__label {
    position: static;
    width: auto;
    max-width: 160px;
    transform: none;
    text-align: center;
  }

  .crypto-benefits-infographic .benefit-node__circle {
    width: 78px;
    height: 78px;
    box-shadow: inset 0 0 0 8px var(--orbit-soft);
  }

  .crypto-benefits-infographic .benefit-node__circle svg {
    width: 34px;
    height: 34px;
  }
}