.securitize-workflow-wrapper {
  --frame-width: 855px;
  --frame-height: 551px;
  --frame-inset: 30px;
  --frame-bg: #f6f4fa;
  --frame-purple: #4e1fa3;
  --frame-line: rgba(61, 61, 61, 0.6);
  --page-bg: #e8e4f1;
  --text-main: #191A1E;
  --text-muted: rgba(25, 26, 30);

  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;
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
}

.securitize-workflow-wrapper *,
.securitize-workflow-wrapper *::before,
.securitize-workflow-wrapper *::after {
  box-sizing: border-box;
}

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

.securitize-workflow-wrapper .blog-frame__canvas {
  position: relative;
  z-index: 1;
  padding: var(--frame-inset);
}

.securitize-workflow-wrapper .blog-frame__header {
  padding: 29px 44px 17px;
  text-align: center;
}

.securitize-workflow-wrapper .blog-frame__title {
  max-width: 760px;
  margin: 0 auto;
  color: #08070c;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.16;
}

.securitize-workflow-wrapper .blog-frame__title span {
  color: var(--frame-purple);
}

.securitize-workflow-wrapper .securitize-lane {
  position: relative;
  padding: 34px 22px 38px;
}

.securitize-workflow-wrapper .securitize-lane__rail {
  position: absolute;
  left: 86px;
  right: 86px;
  top: 72px;
  width: auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #16a34a 24%, #f97316 49%, #db2777 73%, #6d28d9);
  opacity: 1;
}

.securitize-workflow-wrapper .securitize-lane__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: start;
  max-width: 795px;
  margin: 0 auto;
}

.securitize-workflow-wrapper .securitize-lane__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.securitize-workflow-wrapper .lane-step {
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 128px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.securitize-workflow-wrapper .lane-step:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.securitize-workflow-wrapper .lane-step__icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.securitize-workflow-wrapper .lane-step__icon svg,
.securitize-workflow-wrapper .lane-step__icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.securitize-workflow-wrapper .lane-step__icon svg {
  fill: currentColor;
}

.securitize-workflow-wrapper .lane-step__icon img {
  object-fit: contain;
  transition: filter 0.22s ease;
}

.securitize-workflow-wrapper .lane-step__text {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.18;
  max-width: 128px;
}

.securitize-workflow-wrapper .lane-step:hover,
.securitize-workflow-wrapper .lane-step.is-active {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.securitize-workflow-wrapper .lane-step:hover .lane-step__icon,
.securitize-workflow-wrapper .lane-step.is-active .lane-step__icon {
  background: var(--accent);
  color: #ffffff;
  transform: scale(1.05);
}

.securitize-workflow-wrapper .lane-step:hover .lane-step__icon img,
.securitize-workflow-wrapper .lane-step.is-active .lane-step__icon img {
  filter: brightness(0) invert(1);
}

.securitize-workflow-wrapper .lane-step--blue {
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
}

.securitize-workflow-wrapper .lane-step--green {
  --accent: #16a34a;
  --accent-soft: rgba(22, 163, 74, 0.12);
}

.securitize-workflow-wrapper .lane-step--orange {
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.13);
}

.securitize-workflow-wrapper .lane-step--pink {
  --accent: #db2777;
  --accent-soft: rgba(219, 39, 119, 0.12);
}

.securitize-workflow-wrapper .lane-step--violet {
  --accent: #6d28d9;
  --accent-soft: rgba(109, 40, 217, 0.12);
}

.securitize-workflow-wrapper .lane-detail {
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  min-height: 170px;
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 30px 42px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  transition: border-color 0.22s ease, background 0.22s ease;
}

.securitize-workflow-wrapper .lane-detail__icon {
  width: 96px;
  height: 96px;
  position: static;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: none;
}

.securitize-workflow-wrapper .lane-detail__icon svg,
.securitize-workflow-wrapper .lane-detail__icon img {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 0 !important;
}

.securitize-workflow-wrapper .lane-detail__icon svg {
  fill: currentColor;
}

.securitize-workflow-wrapper .lane-detail__icon img {
  object-fit: contain;
}

.securitize-workflow-wrapper .lane-detail__tag {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 0 !important;
}

.securitize-workflow-wrapper .lane-detail__title {
  max-width: 560px;
  margin: 0 0 10px;
  color: #08070c;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.08;
  -webkit-text-fill-color: initial;
  background: none;
  padding-bottom: 0;
}

.securitize-workflow-wrapper .lane-detail__copy {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 16px !important;
  font-weight: 500;
  line-height: 1.42;
  padding-bottom: 0;
}

.securitize-workflow-wrapper .lane-detail__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.securitize-workflow-wrapper .lane-detail__chips li {
  padding: 8px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.securitize-workflow-wrapper .lane-detail--blue {
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
}

.securitize-workflow-wrapper .lane-detail--green {
  --accent: #16a34a;
  --accent-soft: rgba(22, 163, 74, 0.12);
}

.securitize-workflow-wrapper .lane-detail--orange {
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.13);
}

.securitize-workflow-wrapper .lane-detail--pink {
  --accent: #db2777;
  --accent-soft: rgba(219, 39, 119, 0.12);
}

.securitize-workflow-wrapper .lane-detail--violet {
  --accent: #6d28d9;
  --accent-soft: rgba(109, 40, 217, 0.12);
}

@media (min-width: 768px) {
  .securitize-workflow-wrapper {
    height: var(--frame-height);
  }
}

@media (max-width: 767px) {
  .securitize-workflow-wrapper {
    --frame-inset: 18px;
  }

  .securitize-workflow-wrapper .blog-frame__header {
    padding: 24px 18px 20px;
  }

  .securitize-workflow-wrapper .blog-frame__title {
    font-size: 21px;
  }

  .securitize-workflow-wrapper .securitize-lane {
    padding: 22px 12px 30px;
  }

  .securitize-workflow-wrapper .securitize-lane__rail {
    display: none;
  }

  .securitize-workflow-wrapper .securitize-lane__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    display: grid !important;
  }

  .securitize-workflow-wrapper .securitize-lane__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    display: grid !important;
  }

  .securitize-workflow-wrapper .lane-step {
    grid-template-columns: 54px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 0;
    gap: 14px;
    text-align: left;
  }

  .securitize-workflow-wrapper .lane-step__icon {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 6px var(--accent-soft);
  }

  .securitize-workflow-wrapper .lane-step__icon svg,
  .securitize-workflow-wrapper .lane-step__icon img {
    width: 26px;
    height: 26px;
  }

  .securitize-workflow-wrapper .lane-step__text {
    max-width: none;
  }

  .securitize-workflow-wrapper .lane-detail {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .securitize-workflow-wrapper .lane-detail__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
    border-radius: 22px;
  }

  .securitize-workflow-wrapper .lane-detail__icon svg,
  .securitize-workflow-wrapper .lane-detail__icon img {
    width: 38px;
    height: 38px;
  }

  .securitize-workflow-wrapper .lane-detail__title {
    max-width: none;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .securitize-workflow-wrapper .lane-detail__copy {
    max-width: none;
    font-size: 14px !important;
  }
 .securitize-workflow-wrapper .lane-detail__chips {
    flex-wrap: wrap;
  }
  .securitize-workflow-wrapper .lane-detail__chips li {
    white-space: normal;
    word-break: break-word;
  }

}
@media (max-width: 575px) {
.securitize-workflow-wrapper .lane-detail__title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .securitize-workflow-wrapper .lane-detail__copy {
    font-size: 12px !important;
  }
      .securitize-workflow-wrapper .lane-detail__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0px;
        border-radius: 12px;
    }
        .securitize-workflow-wrapper .lane-step__icon {
        width: 42px;
        height: 42px;
    }
        .securitize-workflow-wrapper .lane-step {
        gap: 8px;
    }
}

/* ==========================================================================
   2. Build Process Infographic Styles (.securitize-build-process-wrapper)
   ========================================================================== */
.securitize-build-process-wrapper {
  --frame-width: 855px;
  --frame-inset: 30px;
  --frame-bg: #f6f4fa;
  --frame-purple: #4e1fa3;
  --frame-line: rgba(61, 61, 61, 0.6);
  --text-main: #191A1E;
  --circle-size: 76px;
  --flow-gap: 20px;
  --row-gap: 32px;
  --connector-color: rgba(110, 105, 125, 0.52);

  width: min(100%, var(--frame-width));
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: var(--frame-bg);
  box-shadow: 0 22px 60px rgba(53, 40, 90, 0.12);
  isolation: isolate;
  margin: 30px auto;
  font-family: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
}

.securitize-build-process-wrapper::before {
  content: "";
  position: absolute;
  inset: var(--frame-inset);
  border: 1.474px solid var(--frame-line);
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

.securitize-build-process-wrapper .blog-frame__canvas {
  position: relative;
  z-index: 1;
  padding: var(--frame-inset);
}

.securitize-build-process-wrapper .flow-section {
  padding: 32px 39px 44px;
}

.securitize-build-process-wrapper .step-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
}

.securitize-build-process-wrapper .flow-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

.securitize-build-process-wrapper .flow-step {
  position: relative;
  border: 0;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font-family: "Exo 2", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.securitize-build-process-wrapper .flow-step__circle {
  width: var(--circle-size);
  height: var(--circle-size);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: var(--step-color);
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.securitize-build-process-wrapper .flow-step__circle svg,
.securitize-build-process-wrapper .flow-step__circle img {
  width: 34px;
  height: 34px;
  display: block;
}

.securitize-build-process-wrapper .flow-step__circle svg {
  fill: currentColor;
}

.securitize-build-process-wrapper .flow-step__circle img {
  object-fit: contain;
  transition: filter 0.2s ease;
}

.securitize-build-process-wrapper .flow-step__label {
  display: block;
  max-width: 132px;
  margin: 0 auto;
  color: var(--text-main);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.22;
  position: relative;
  z-index: 2;
}

.securitize-build-process-wrapper .flow-step__label span {
  display: block;
}

.securitize-build-process-wrapper .flow-step:hover .flow-step__circle,
.securitize-build-process-wrapper .flow-step:focus-visible .flow-step__circle,
.securitize-build-process-wrapper .flow-step.is-active .flow-step__circle {
  transform: translateY(-3px);
  background: var(--step-color);
  color: var(--step-color);
  box-shadow: 0 12px 24px rgba(56, 47, 90, 0.16);
}

.securitize-build-process-wrapper .flow-step:hover .flow-step__circle svg,
.securitize-build-process-wrapper .flow-step:focus-visible .flow-step__circle svg,
.securitize-build-process-wrapper .flow-step.is-active .flow-step__circle svg {
  color: #ffffff;
}

.securitize-build-process-wrapper .flow-step:hover .flow-step__circle img,
.securitize-build-process-wrapper .flow-step:focus-visible .flow-step__circle img,
.securitize-build-process-wrapper .flow-step.is-active .flow-step__circle img {
  filter: brightness(0) invert(1);
}

.securitize-build-process-wrapper .flow-step:focus-visible {
  outline: 0;
}

.securitize-build-process-wrapper .flow-step[data-color="violet"] { --step-color: #a24fd5; }
.securitize-build-process-wrapper .flow-step[data-color="indigo"] { --step-color: #2f28b8; }
.securitize-build-process-wrapper .flow-step[data-color="coral"] { --step-color: #ff3d4f; }
.securitize-build-process-wrapper .flow-step[data-color="amber"] { --step-color: #d87a00; }
.securitize-build-process-wrapper .flow-step[data-color="magenta"] { --step-color: #d91cab; }
.securitize-build-process-wrapper .flow-step[data-color="green"] { --step-color: #0b8f3d; }
.securitize-build-process-wrapper .flow-step[data-color="orange"] { --step-color: #ff8a00; }
.securitize-build-process-wrapper .flow-step[data-color="teal"] { --step-color: #0b87a3; }
.securitize-build-process-wrapper .flow-step[data-color="olive"] { --step-color: #9b9d00; }
.securitize-build-process-wrapper .flow-step[data-color="brown"] { --step-color: #b06c13; }

@media (min-width: 992px) {
  .securitize-build-process-wrapper .flow-row {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--flow-gap);
  }

  .securitize-build-process-wrapper .flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: calc(var(--circle-size) / 2);
    left: calc(50% + (var(--circle-size) / 2));
    width: calc(100% + var(--flow-gap) - var(--circle-size));
    border-top: 2px dashed var(--connector-color);
    z-index: 1;
  }

  .securitize-build-process-wrapper .flow-row:first-child .flow-step:last-child::after {
    content: "";
    position: absolute;
    top: calc(var(--circle-size) / 2);
    left: calc(50% + (var(--circle-size) / 2));
    width: 18px;
    height: calc(100% + var(--row-gap));
    border-top: 2px dashed var(--connector-color);
    border-right: 2px dashed var(--connector-color);
    border-bottom: 2px dashed var(--connector-color);
    border-radius: 0 10px 10px 0;
    z-index: 1;
  }

  .securitize-build-process-wrapper .step-flow {
    gap: var(--row-gap);
  }
}

@media (max-width: 991.98px) {
  .securitize-build-process-wrapper {
    --frame-inset: 18px;
  }

  .securitize-build-process-wrapper .flow-section {
    padding: 22px 12px 30px;
  }

  .securitize-build-process-wrapper .flow-step {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 14px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(110, 105, 125, 0.1);
  }

  .securitize-build-process-wrapper .flow-step__circle {
    margin: 0;
    flex-shrink: 0;
      width: 60px;
  height: 60px;
  }

  .securitize-build-process-wrapper .flow-step__label {
    margin: 0;
    max-width: none;
  }
}