@font-face {
  font-display: swap;
  font-family: 'ClashDisplay';
  font-style: normal;
  font-weight: 600;
  src: url('/dist/assets/fonts/ClashDisplay-Semibold.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'ClashDisplay';
  font-style: normal;
  font-weight: 500;
  src: url('/dist/assets/fonts/ClashDisplay-Medium.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  src: url('/dist/assets/fonts/Archivo-Regular.woff2') format('woff2');
}

.cryptosvc-page {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--page);
  padding-top: 8px;
  padding-bottom: 0;
}

.cryptosvc-page__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cryptosvc-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 14px;
  line-height: 1.5;
}

.cryptosvc-breadcrumb a {
  color: #717182;
  text-decoration: none;
  transition: color 0.2s;
}

.cryptosvc-breadcrumb a:hover {
  color: #0a0a0a;
}

.cryptosvc-breadcrumb__sep {
  color: #717182;
  display: flex;
  align-items: center;
}

.cryptosvc-breadcrumb__current {
  color: #0a0a0a;
}

.cryptosvc-fig-hero {
  position: relative;
  margin: 0 var(--pad) clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  min-height: 600px;
  background: #0f0f0f;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.cryptosvc-fig-hero__shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  max-width: 1320px;
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.cryptosvc-fig-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    url('/dist/assets/img/services/cryptoscam-hero/hero-radial.svg') center / cover no-repeat,
    linear-gradient(90deg, #0f0f0f 0%, #0f0f0f 100%);
}

.cryptosvc-fig-hero__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cryptosvc-fig-hero__deco img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.cryptosvc-fig-hero__deco svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.cryptosvc-fig-hero__deco--grid {
  left: -20%;
  top: -40%;
  width: min(88vw, 1100px);
  transform: rotate(23deg);
}

.cryptosvc-fig-hero__row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items:flex-end;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 128px);
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(600px - clamp(52px, 7vw, 88px));
}

.cryptosvc-fig-hero__left {
  position: relative;
  z-index: 2;
  flex: 1 1 320px;
  max-width: 576px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cryptosvc-fig-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 29.5px;
  padding: 0 14px 0 10px;
  border-radius: 999px;
  background: rgba(131, 255, 143, 0.12);
  border: 1px solid rgba(131, 255, 143, 0.25);
  box-sizing: border-box;
}

.cryptosvc-fig-hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #83ff8f;
  flex-shrink: 0;
}

.cryptosvc-fig-hero__badge-txt {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  color: #83ff8f;
  white-space: nowrap;
}

.cryptosvc-fig-hero__title {
  margin: 24px 0 0;
  padding: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 7vw, 60px);
  line-height: 66px;
  letter-spacing: -0.5px;
  color: #fff;
  max-width: 576px;
}

.cryptosvc-fig-hero__title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .cryptosvc-fig-hero__title {
    line-height: 1.1;
  }

  .cryptosvc-fig-hero__title-line {
    white-space: normal;
  }
}

.cryptosvc-fig-hero__lead {
  margin: 24px 0 0;
  max-width: 545px;
  font-size: 17px;
  line-height: 28.05px;
  color: #a0a0a0;
}

.cryptosvc-fig-hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 576px;
}

.cryptosvc-fig-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 50px;
  border-radius: 36px;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.cryptosvc-fig-hero__btn--primary {
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px 0 24px;
  width: min(278.359px, 100%);
  background: #83ff8f;
  color: #0f0f0f;
}

.cryptosvc-fig-hero__btn--primary:hover {
  opacity: 0.92;
}

.cryptosvc-fig-hero__btn-ico {
  flex-shrink: 0;
  display: block;
}

.cryptosvc-fig-hero__btn--ghost {
  padding: 13px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  min-height: 50px;
}

.cryptosvc-fig-hero__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.cryptosvc-fig-hero__right {
  position: relative;
  flex: 1 1 280px;
  max-width: 576px;
  width: 100%;
  min-height: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 960px) {
  .cryptosvc-fig-hero__right {
    min-height: 404px;
  }
}

.cryptosvc-fig-hero__illus-wrap {
  position: absolute;
  top: 0;
  left: clamp(0px, 4vw, 44px);
  width: min(532px, 100%);
  height: 404px;
}

.cryptosvc-fig-hero__illus {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
}

.cryptosvc-fig-hero__float {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 65px;
  padding: 1px 17px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  width: min(245.75px, calc(100% - 8px));
}

.cryptosvc-fig-hero__float-ico {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(131, 255, 143, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cryptosvc-fig-hero__float-ico img {
  display: block;
}

.cryptosvc-fig-hero__float-txt {
  min-width: 0;
  flex: 1 1 auto;
}

.cryptosvc-fig-hero__float-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cryptosvc-fig-hero__float-sub {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  color: #888;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .cryptosvc-fig-hero__right {
    min-height: 360px;
    margin-top: 8px;
  }

  .cryptosvc-fig-hero__illus-wrap {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    min-height: 260px;
    max-height: none;
  }

  .cryptosvc-fig-hero__illus {
    object-position: center center;
  }

  .cryptosvc-fig-hero__float {
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 8px;
  }
}

#cryptosvc-what {
  scroll-margin-top: 100px;
}

.cryptosvc-what {
  width: 100%;
  box-sizing: border-box;
}

.cryptosvc-what__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: clamp(40px, 8vw, 64px) 0;
  box-sizing: border-box;
}

.cryptosvc-what__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
  width: 100%;
}

.cryptosvc-what__head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 320px;
  max-width: 488px;
}

.cryptosvc-what__eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-what__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 42px);
  line-height: 48.3px;
  color: #0f0f0f;
  max-width: 488px;
}

@media (max-width: 520px) {
  .cryptosvc-what__title {
    line-height: 1.15;
  }
}

.cryptosvc-what__intro {
  margin: 0;
  flex: 1 1 280px;
  max-width: 500px;
  font-size: 16px;
  line-height: 27.2px;
  color: #525252;
}

.cryptosvc-what__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

@media (min-width: 720px) {
  .cryptosvc-what__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.cryptosvc-what__card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  min-height: 0;
}

.cryptosvc-what__num {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  color: #ebebeb;
}

.cryptosvc-what__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cryptosvc-what__card-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.13;
  color: #1a1a1a;
}

.cryptosvc-what__card-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.333;
  color: #525252;
}

#cryptosvc-before-further {
  scroll-margin-top: 100px;
}

.cryptosvc-section__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.cryptosvc-section__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #0a0a0a;
}

.cryptosvc-section__lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: #525252;
}

.cryptosvc-cards {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

@media (min-width: 720px) {
  .cryptosvc-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (min-width: 1100px) {
  .cryptosvc-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

.cryptosvc-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 24px;
  padding: 28px 28px 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cryptosvc-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cryptosvc-card__ico svg {
  display: block;
}

.cryptosvc-card__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  color: #0a0a0a;
}

.cryptosvc-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #525252;
}

#cryptosvc-sample-report {
  scroll-margin-top: 100px;
}

.cryptosvc-sreport {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  box-sizing: border-box;
}

.cryptosvc-sreport__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  box-sizing: border-box;
}

.cryptosvc-sreport__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.cryptosvc-sreport__head-titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 813px;
}

.cryptosvc-sreport__eyebrow {
  margin: 0;
  width: 100%;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-sreport__title {
  margin: 0;
  width: 100%;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.15;
  color: #0f0f0f;
}

.cryptosvc-sreport__lead {
  margin: 0;
  max-width: 595px;
  font-size: 16px;
  line-height: 27.2px;
  color: #525252;
}

.cryptosvc-sreport__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(24px, 3vw, 32px);
  width: 100%;
}

.cryptosvc-sreport__preview {
  flex: 1 1 320px;
  max-width: 584px;
  min-width: 0;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.cryptosvc-sreport__preview-head {
  flex-shrink: 0;
  padding: 20px;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cryptosvc-sreport__preview-head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.cryptosvc-sreport__preview-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cryptosvc-sreport__preview-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #83ff8f;
}

.cryptosvc-sreport__preview-label {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #83ff8f;
}

.cryptosvc-sreport__preview-ref {
  flex-shrink: 0;
  font-size: 11px;
  line-height: 16.5px;
  color: #555;
}

.cryptosvc-sreport__preview-head-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.cryptosvc-sreport__preview-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
}

.cryptosvc-sreport__preview-dates {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  color: #888;
}

.cryptosvc-sreport__preview-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #fafafa;
  box-sizing: border-box;
}

.cryptosvc-sreport__preview-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 67px;
  padding: 12px;
  background: #fff;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-sreport__preview-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(33, 150, 83, 0.1);
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 16.5px;
  color: #219653;
}

.cryptosvc-sreport__preview-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 1px;
}

.cryptosvc-sreport__preview-item-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  color: #0f0f0f;
}

.cryptosvc-sreport__preview-item-txt {
  margin: 0;
  font-size: 11px;
  line-height: 16.5px;
  color: #888;
}

.cryptosvc-sreport__preview-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-sreport__preview-foot-ico {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cryptosvc-sreport__preview-foot-line {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  text-align: left;
}

.cryptosvc-sreport__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 320px;
  min-width: 0;
  align-self: stretch;
}

.cryptosvc-sreport__aside-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cryptosvc-sreport__aside-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #0f0f0f;
}

.cryptosvc-sreport__aside-lead {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 23.8px;
  color: #525252;
}

.cryptosvc-sreport__aside-mid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cryptosvc-sreport__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cryptosvc-sreport__bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 79px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-sreport__bullet-ico {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cryptosvc-sreport__bullet-ico img {
  display: block;
}

.cryptosvc-sreport__bullet-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cryptosvc-sreport__bullet-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #0f0f0f;
}

.cryptosvc-sreport__bullet-txt {
  margin: 0;
  font-size: 16px;
  line-height: 19.5px;
  color: #525252;
}

.cryptosvc-sreport__callout {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-sreport__callout-ico {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  align-self: center;
  object-fit: contain;
}

.cryptosvc-sreport__callout-txt {
  margin: 0;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  text-align: left;
}

.cryptosvc-sreport__callout-strong {
  font-weight: 700;
  color: #fff;
}

.cryptosvc-sreport__stories-callout {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  background: #1a1a1a;
  border-radius: 22px;
  color: #fff;
  box-sizing: border-box;
}

.cryptosvc-sreport__stories-left {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.cryptosvc-sreport__stories-icon {
  flex-shrink: 0;
}

.cryptosvc-sreport__stories-icon svg {
  display: block;
  width: 54px;
  height: 54px;
}

.cryptosvc-sreport__stories-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cryptosvc-sreport__stories-subtitle {
  color: #9cff8f;
  font-family: 'ClashDisplay', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.cryptosvc-sreport__stories-text {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 133%;
}

.cryptosvc-sreport__stories-btn {
  flex: 0 0 auto;
  min-width: 0;
}

@media (max-width: 900px) {
  .cryptosvc-sreport__preview {
    max-width: none;
  }

  .cryptosvc-sreport__aside {
    align-self: flex-start;
    padding: 12px;
  }

  .cryptosvc-sreport__stories-callout {
    flex-direction: column;
    align-items: stretch;
  }

  .cryptosvc-sreport__stories-left {
    gap: 16px;
  }

  .cryptosvc-sreport__stories-icon svg {
    width: 54px;
    height: 54px;
  }

  .cryptosvc-sreport__stories-btn {
    min-width: 0;
    width: 100%;
  }
}

.cryptosvc-cta {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 32px;
  padding: clamp(40px, 8vw, 88px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-sizing: border-box;
}

.cryptosvc-cta__decor {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url('/dist/assets/img/about/about-bg.svg');
  background-size: 120% auto;
  background-position: 80% 40%;
  background-repeat: no-repeat;
}

.cryptosvc-cta__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: #1a1a1a;
  max-width: 640px;
}

.cryptosvc-cta__text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: #525252;
}

.cryptosvc-cta__btn {
  position: relative;
  z-index: 1;
  text-decoration: none;
  margin-top: 4px;
}

#cryptosvc-faq {
  scroll-margin-top: 100px;
}

.cryptosvc-faq {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 8vw, 64px) clamp(20px, 5vw, 64px);
  background: #fff;
  box-sizing: border-box;
}

.cryptosvc-faq__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 6vw, 64px);
  box-sizing: border-box;
}

.cryptosvc-faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.cryptosvc-faq__kicker {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #1a1a1a;
}

.cryptosvc-faq__title {
  margin: 0;
  max-width: 520px;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.2;
  color: #1a1a1a;
}

.cryptosvc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.cryptosvc-faq__item {
  margin: 0;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.cryptosvc-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
}

.cryptosvc-faq__q::-webkit-details-marker,
.cryptosvc-faq__q::marker {
  display: none;
}

.cryptosvc-faq__q:focus-visible {
  outline: 2px solid #83ff8f;
  outline-offset: 4px;
  border-radius: 8px;
}

.cryptosvc-faq__q-txt {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.13;
  color: #0f0f0f;
}

.cryptosvc-faq__chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
}

.cryptosvc-faq__chev img {
  display: block;
}

.cryptosvc-faq__item[open] .cryptosvc-faq__chev {
  transform: rotate(180deg);
}

.cryptosvc-faq__a {
  margin: 0;
  padding-top: 32px;
  font-size: 16px;
  line-height: 1.333;
  color: #0f0f0f;
}

.cryptosvc-faq__a p {
  margin: 0 0 12px;
}

.cryptosvc-faq__a p:last-child {
  margin-bottom: 0;
}

.cryptosvc-faq__a strong {
  font-weight: 600;
  color: #0f0f0f;
}

.cryptosvc-faq__a ul {
  margin: 0 0 12px;
  padding-left: 1.25em;
}

.cryptosvc-faq__a li {
  margin-bottom: 6px;
}

.cryptosvc-faq__a li:last-child {
  margin-bottom: 0;
}

#cryptosvc-how {
  scroll-margin-top: 100px;
}

.cryptosvc-how {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
}

.cryptosvc-how__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 64px) 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  box-sizing: border-box;
}

.cryptosvc-how__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px 48px;
  width: 100%;
}

.cryptosvc-how__head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  text-align: center;
  width: 100%;
  max-width: 260px;
}

.cryptosvc-how__eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-how__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 42px);
  line-height: 48.3px;
  color: #1a1a1a;
  width: min-content;
  min-width: 100%;
}

.cryptosvc-how__intro {
  margin: 0;
  flex: 1 1 280px;
  max-width: 500px;
  font-size: 16px;
  line-height: 27.2px;
  color: #525252;
}

.cryptosvc-how__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cryptosvc-how__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

.cryptosvc-how__card--acc {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 1 377px;
  width: 100%;
  max-width: 377px;
  min-height: 490px;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  background: #f8f8f8;
  cursor: pointer;
  transition: flex 0.35s ease, max-width 0.35s ease, background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.cryptosvc-how__card--acc:focus-visible {
  outline: 2px solid #83ff8f;
  outline-offset: 3px;
}

.cryptosvc-how__card--acc.is-expanded {
  flex: 1 1 auto;
  max-width: none;
  min-width: min(100%, 280px);
  background: #1a1a1a;
  padding: 25px;
}

.cryptosvc-how__card--acc:not(.is-expanded) .cryptosvc-how__card-dark-deco {
  display: none;
}

.cryptosvc-how__card-surface {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.cryptosvc-how__card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.cryptosvc-how__card--acc:not(.is-expanded) .cryptosvc-how__card-top {
  min-height: 48px;
}

.cryptosvc-how__ico--acc {
  background: linear-gradient(135deg, rgba(131, 255, 143, 0.133) 0%, rgba(131, 255, 143, 0.267) 100%);
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__ico--acc {
  background: #83ff8f;
}

.cryptosvc-how__card-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 25.5px;
  color: #1a1a1a;
  max-width: 100%;
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__card-title {
  color: #fff;
}

.cryptosvc-how__card-lead {
  margin: 0;
  font-size: 14px;
  line-height: 23.1px;
  color: #fff;
  max-width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.35s ease;
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__card-lead {
  opacity: 1;
  max-height: 120px;
}

.cryptosvc-how__mock-wrap {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 200px;
}

.cryptosvc-how__card--acc:not(.is-expanded) .cryptosvc-how__mock-wrap {
  flex: 1 1 auto;
  min-height: 240px;
}

.cryptosvc-how__card--acc:not(.is-expanded) .cryptosvc-how__mock {
  opacity: 0.4;
  pointer-events: none;
  box-shadow: -16px 16px 4px rgba(255, 255, 255, 0.1);
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__mock {
  opacity: 1;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .cryptosvc-how__card--acc.is-expanded {
    max-width: 510px;
    width: 510px;
    flex: 1 1 510px;
  }
}

.cryptosvc-how__card-dark-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cryptosvc-how__card-dark-deco-lines {
  position: absolute;
  left: -18%;
  top: -35%;
  width: 130%;
  opacity: 0.05;
  transform: rotate(-171deg);
}

.cryptosvc-how__card-dark-deco-line {
  position: absolute;
  left: -20%;
  top: -30%;
  width: 135%;
  opacity: 0.05;
  transform: rotate(99deg);
}

.cryptosvc-how__card-dark-deco img {
  display: block;
  width: 100%;
  height: auto;
}

.cryptosvc-how__ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex-shrink: 0;
}

.cryptosvc-how__ico img {
  display: block;
}

.cryptosvc-how__ico svg {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.cryptosvc-how__mock--form {
  position: absolute;
  height: fit-content;
  bottom: 0;
  width: 600px;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__mock--form {
  left: 0;
  top: 0;
}

.cryptosvc-how__mock-form-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cryptosvc-how__mock-field {
  display: flex;
  flex-direction: column;
  gap: 8.019px;
}

.cryptosvc-how__mock-label {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13.032px;
  line-height: 19.547px;
  color: #525252;
}

.cryptosvc-how__mock-input {
  display: flex;
  align-items: center;
  min-height: 48.117px;
  padding: 12.029px 16.039px;
  background: #fff;
  border: 1.504px solid #e0e0e0;
  border-radius: 14.034px;
  box-sizing: border-box;
}

.cryptosvc-how__mock-input span {
  font-size: 14.034px;
  color: rgba(15, 15, 15, 0.5);
  line-height: 1.2;
  word-break: break-all;
}

.cryptosvc-how__mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8.368px;
}

.cryptosvc-how__mock-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4.01px 17.041px;
  border-radius: 10.024px;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13.032px;
  line-height: 19.547px;
  box-sizing: border-box;
}

.cryptosvc-how__mock-tag--on {
  background: rgba(131, 255, 143, 0.15);
  border: 1.002px solid rgba(131, 255, 143, 0.3);
  color: #219653;
}

.cryptosvc-how__mock-tag--off {
  background: #f8f8f8;
  border: 1.002px solid #f8f8f8;
  color: #1a1a1a;
}

.cryptosvc-how__mock--textarea {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 600px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-sizing: border-box;
  z-index: 1;
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__mock--textarea {
  left: 0;
  top: 0;
  height: max-content;
  background: #fff;
}

.cryptosvc-how__mock-ta-inner {
  padding: 24px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cryptosvc-how__mock-ta-label {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  color: #525252;
}

.cryptosvc-how__mock-ta-box {
  flex: 1;
  min-height: 170px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-how__mock-ta-box span {
  font-size: 14px;
  line-height: 22.4px;
  color: rgba(15, 15, 15, 0.5);
}

.cryptosvc-how__mock-ta-foot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cryptosvc-how__mock-ta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #83ff8f;
  flex-shrink: 0;
}

.cryptosvc-how__mock-ta-count {
  font-size: 12px;
  line-height: 18px;
  color: #666;
}

.cryptosvc-how__mock--upload {
  position: absolute;
  width: 600px;
  height: 346px;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  z-index: 1;
}

.cryptosvc-how__card--acc.is-expanded .cryptosvc-how__mock--upload {
  left: 0;
  top: 0;
  height: 346px;
}

.cryptosvc-how__mock-up-inner {
  padding: 25px 25px 1px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cryptosvc-how__mock-drop {
  position: relative;
  min-height: 152px;
  border: 2px dashed #d0d0d0;
  border-radius: 14px;
  background: rgba(131, 255, 143, 0.03);
  box-sizing: border-box;
}

.cryptosvc-how__mock-drop-ico {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(131, 255, 143, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cryptosvc-how__mock-drop-title {
  position: absolute;
  left: 50%;
  top: 84px;
  transform: translateX(-50%);
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  color: #0f0f0f;
  text-align: center;
  white-space: nowrap;
}

.cryptosvc-how__mock-drop-sub {
  position: absolute;
  left: 50%;
  top: 107.5px;
  transform: translateX(-50%);
  margin: 0;
  font-size: 11px;
  line-height: 16.5px;
  color: #999;
  text-align: center;
  white-space: nowrap;
}

.cryptosvc-how__mock-files {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cryptosvc-how__mock-file {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 1px 13px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-sizing: border-box;
}

.cryptosvc-how__mock-file-emoji {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(131, 255, 143, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.cryptosvc-how__mock-file-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.cryptosvc-how__mock-file-name {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  color: #0f0f0f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cryptosvc-how__mock-file-size {
  margin: 0;
  font-size: 11px;
  line-height: 16.5px;
  color: #999;
}

.cryptosvc-how__mock-file-check {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(131, 255, 143, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cryptosvc-how__mock-file-check img {
  display: block;
}

.cryptosvc-how__band {
  width: 100%;
  background: #1a1a1a;
  border-radius: 19px;
  padding: 16px;
  box-sizing: border-box;
}

.cryptosvc-how__band-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
}

.cryptosvc-how__band-row {
  display: contents;
}

.cryptosvc-how__band-row--2 .cryptosvc-how__pill {
  grid-column: span 3;
}

.cryptosvc-how__band-row--3 .cryptosvc-how__pill {
  grid-column: span 2;
}

.cryptosvc-how__pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  box-sizing: border-box;
}

.cryptosvc-how__band-row--2 .cryptosvc-how__pill:first-child {
  padding-left: 16px;
  padding-right: 24px;
}

.cryptosvc-how__pill--border {
  border: 1.238px solid #1a1a1a;
}

.cryptosvc-how__pill-ico {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  box-sizing: border-box;
}

.cryptosvc-how__pill-ico img {
  display: block;
  width: 24px;
  height: 24px;
}

.cryptosvc-how__pill-ico svg {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cryptosvc-how__pill-txt {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #1a1a1a;
  white-space: normal;
}

.cryptosvc-how__pill-txt--w294 {
  max-width: 294px;
}

.cryptosvc-how__pill-txt--w343 {
  max-width: 343px;
}

.cryptosvc-how__pill-txt--w349 {
  max-width: 349px;
}

@media (max-width: 1023px) {
  .cryptosvc-how__band-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cryptosvc-how__band-row--2 .cryptosvc-how__pill,
  .cryptosvc-how__band-row--3 .cryptosvc-how__pill {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .cryptosvc-how__band-inner {
    grid-template-columns: 1fr;
  }

  .cryptosvc-how__band-row--2 .cryptosvc-how__pill,
  .cryptosvc-how__band-row--3 .cryptosvc-how__pill {
    grid-column: auto;
  }
}

#cryptosvc-further {
  scroll-margin-top: 100px;
}

.cryptosvc-further {
  width: 100%;
  background: #f8f8f8;
  box-sizing: border-box;
}

.cryptosvc-further__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 64px) 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
  box-sizing: border-box;
}

.cryptosvc-further__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 48px;
  width: 100%;
}

.cryptosvc-further__head-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 320px;
  max-width: 579px;
}

.cryptosvc-further__eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-further__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 42px);
  line-height: 48.3px;
  color: #1a1a1a;
}

@media (max-width: 520px) {
  .cryptosvc-further__title {
    line-height: 1.15;
  }
}

.cryptosvc-further__intro {
  margin: 0;
  flex: 1 1 280px;
  max-width: 500px;
  font-size: 16px;
  line-height: 27.2px;
  color: #1a1a1a;
}

.cryptosvc-further__panel {
  width: 100%;
  background: #fff;
  border-radius: 21px;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cryptosvc-further__rows {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px 32px;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
}

.cryptosvc-further__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 568px;
}

.cryptosvc-further__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.cryptosvc-further__tick {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-sizing: border-box;
}

.cryptosvc-further__tick img {
  display: block;
}

.cryptosvc-further__item-txt {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #1a1a1a;
}

.cryptosvc-further__item-txt--w480 {
  max-width: 480px;
}

.cryptosvc-further__item-txt--w475 {
  max-width: 475px;
}

.cryptosvc-further__item-txt--w503 {
  max-width: 503px;
}

.cryptosvc-further__item-txt--w536 {
  max-width: 536px;
}

.cryptosvc-further__note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  padding: 12px 24px 12px 12px;
  background: #1a1a1a;
  border-radius: 14px;
  box-sizing: border-box;
}

.cryptosvc-further__note-ico {
  flex-shrink: 0;
  display: block;
}

.cryptosvc-further__note-txt {
  margin: 0;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  text-align: left;
}

#cryptosvc-limits {
  scroll-margin-top: 100px;
}

.cryptosvc-limits {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.cryptosvc-limits__shell {
  background: #fff;
  border-radius: 48px 48px 0 0;
  padding: 16px;
  box-sizing: border-box;
}

.cryptosvc-limits__card {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 32px;
  overflow: hidden;
  box-sizing: border-box;
}

.cryptosvc-limits__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cryptosvc-limits__deco-lines {
  position: absolute;
  left: -12%;
  top: -18%;
  width: min(710px, 90vw);
  height: auto;
  opacity: 0.05;
  transform: rotate(-173deg);
  transform-origin: center;
}

.cryptosvc-limits__deco-lines img {
  display: block;
  width: 100%;
  height: auto;
}

.cryptosvc-limits__deco-line {
  position: absolute;
  left: -10%;
  top: -12%;
  width: min(793px, 95vw);
  height: auto;
  opacity: 0.05;
  transform: rotate(97deg);
  transform-origin: center;
}

.cryptosvc-limits__deco-line img {
  display: block;
  width: 100%;
  height: auto;
}

.cryptosvc-limits__grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 48px);
  padding: clamp(32px, 6vw, 64px) clamp(24px, 5vw, 64px);
  box-sizing: border-box;
}

.cryptosvc-limits__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 48px);
  flex: 1 1 280px;
  max-width: 451px;
  min-width: 0;
  align-self: stretch;
  position: sticky;
  top: 104px;
}

.cryptosvc-limits__aside-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cryptosvc-limits__aside-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 406px;
}

.cryptosvc-limits__eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #83ff8f;
}

.cryptosvc-limits__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.15;
  color: #fff;
}

.cryptosvc-limits__intro {
  margin: 0;
  font-size: 15px;
  line-height: 25.5px;
  color: #888;
}

.cryptosvc-limits__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 36px;
  background: #83ff8f;
  color: #0f0f0f;
  text-decoration: none;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
}

.cryptosvc-limits__cta:hover {
  filter: brightness(1.04);
}

.cryptosvc-limits__cta-txt {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.cryptosvc-limits__cta-ico {
  display: block;
  flex-shrink: 0;
}

.cryptosvc-limits__acc {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 400px;
  max-width: 701px;
  min-width: 0;
  padding: 0;
}

.cryptosvc-limits__acc-item:not(.is-expanded) .cryptosvc-limits__acc-surface {
  background: #1a1a1a;
  border: 1px solid #83ff8f;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
}

.cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-surface {
  background: #83ff8f;
  border: 1px solid #83ff8f;
  border-radius: 12px;
  padding: 4px;
  box-sizing: border-box;
  overflow: hidden;
}

.cryptosvc-limits__acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: inherit;
  box-sizing: border-box;
}

.cryptosvc-limits__acc-item:not(.is-expanded) .cryptosvc-limits__acc-trigger {
  padding: 0;
}

.cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-trigger {
  background: #1a1a1a;
  border-radius: 10px 10px 0 0;
  padding: 24px;
}

.cryptosvc-limits__acc-title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
  color: #83ff8f;
  text-align: left;
}

.cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-title {
  font-size: 16px;
}

.cryptosvc-limits__acc-chev {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.cryptosvc-limits__acc-chev img {
  display: block;
}

.cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-chev {
  display: none;
}

.cryptosvc-limits__acc-panel {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cryptosvc-limits__acc-item:not(.is-expanded) .cryptosvc-limits__acc-panel {
  display: none;
}

.cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-panel {
  display: block;
  padding: 24px;
  border-radius: 0 0 10px 10px;
}

.cryptosvc-limits__acc-panel-txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.333;
  color: #0f0f0f;
}

@media (max-width: 900px) {
  .cryptosvc-limits__aside {
    position: static;
    max-width: none;
  }

  .cryptosvc-limits__acc {
    max-width: none;
    width: 100%;
  }
}

.cryptosvc-prep {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  box-sizing: border-box;
}

.cryptosvc-prep__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  box-sizing: border-box;
}

.cryptosvc-prep__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 100%;
}

.cryptosvc-prep__head-titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 566px;
}

.cryptosvc-prep__eyebrow {
  margin: 0;
  width: 100%;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-prep__title {
  margin: 0;
  width: 100%;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: #0f0f0f;
}

.cryptosvc-prep__lead {
  margin: 0;
  max-width: 544px;
  font-size: 16px;
  line-height: 27.2px;
  color: #525252;
}

.cryptosvc-prep__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cryptosvc-prep__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

@media (min-width: 640px) {
  .cryptosvc-prep__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .cryptosvc-prep__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cryptosvc-prep__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 300px;
  padding: 20px 20px 20px 20px;
  background: #f8f8f8;
  border-radius: 16px;
  box-sizing: border-box;
}

.cryptosvc-prep__card-num {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: #fff;
  user-select: none;
}

.cryptosvc-prep__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.cryptosvc-prep__card-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #0f0f0f;
}

.cryptosvc-prep__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 23.1px;
  color: #525252;
  max-width: 100%;
}

.cryptosvc-prep__banner {
  position: relative;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(131, 255, 143, 0.18);
  border-radius: 24px;
  padding: 33px;
  overflow: hidden;
  box-sizing: border-box;
}

.cryptosvc-prep__banner-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cryptosvc-prep__banner-deco-lines {
  position: absolute;
  right: -8%;
  top: -35%;
  width: min(671px, 95vw);
  height: auto;
  opacity: 0.05;
  transform: rotate(-28deg);
  transform-origin: center;
}

.cryptosvc-prep__banner-deco-lines img {
  display: block;
  width: 100%;
  height: auto;
}

.cryptosvc-prep__banner-deco-line {
  position: absolute;
  right: -5%;
  top: -20%;
  width: min(749px, 100vw);
  height: auto;
  opacity: 0.05;
  transform: rotate(-118deg);
  transform-origin: center;
}

.cryptosvc-prep__banner-deco-line img {
  display: block;
  width: 100%;
  height: auto;
}

.cryptosvc-prep__banner-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px 48px;
}

.cryptosvc-prep__banner-copy {
  display: flex;
  flex-direction: column;
  gap: 37px;
  flex: 1 1 320px;
  max-width: 640px;
  min-width: 0;
}

.cryptosvc-prep__banner-kicker {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cryptosvc-prep__banner-eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #83ff8f;
}

.cryptosvc-prep__banner-title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  color: #fff;
}

.cryptosvc-prep__banner-text {
  margin: 0;
  font-size: 16px;
  line-height: 27.2px;
  color: #888;
  max-width: 529px;
}

.cryptosvc-prep__banner-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  flex: 0 0 auto;
  width: 100%;
  max-width: 232px;
}

.cryptosvc-prep__banner-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #83ff8f;
  color: #0f0f0f;
  text-decoration: none;
  box-sizing: border-box;
}

.cryptosvc-prep__banner-btn:hover {
  filter: brightness(1.04);
}

.cryptosvc-prep__banner-btn-txt {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.cryptosvc-prep__banner-btn-ico {
  display: block;
  flex-shrink: 0;
}

.cryptosvc-prep__banner-note {
  margin: 0;
  font-size: 13px;
  line-height: 19.5px;
  color: #666;
  text-align: center;
}

@media (max-width: 900px) {
  .cryptosvc-prep__banner-grid {
    align-items: stretch;
  }

  .cryptosvc-prep__banner-aside {
    max-width: none;
  }
}

#cryptosvc-deliverables {
  scroll-margin-top: 100px;
}

.cryptosvc-deliver {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.cryptosvc-deliver__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 64px) 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
  box-sizing: border-box;
}

.cryptosvc-deliver__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}

.cryptosvc-deliver__eyebrow {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 19.5px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #1a1a1a;
}

.cryptosvc-deliver__title {
  margin: 0;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  color: #0f0f0f;
}

.cryptosvc-deliver__lead {
  margin: 8px 0 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 27.2px;
  color: #525252;
}

.cryptosvc-deliver__stack {
  width: 100%;
}

.cryptosvc-deliver__row {
  display: contents;
}

.cryptosvc-deliver__row--bottom > .cryptosvc-deliver__cta {
  width: auto;
  max-width: none;
}

.cryptosvc-deliver__card--pattern {
  isolation: isolate;
}

.cryptosvc-deliver__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.cryptosvc-deliver__deco img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.cryptosvc-deliver__deco--line {
  right: -18%;
  bottom: -28%;
  width: min(130%, 520px);
  transform: rotate(12deg);
}

.cryptosvc-deliver__card--pattern-wide .cryptosvc-deliver__deco--lines {
  right: -12%;
  bottom: -22%;
  width: min(115%, 480px);
  transform: rotate(169deg);
  opacity: 0.4;
}

.cryptosvc-deliver__num {
  position: relative;
  z-index: 1;
  color: #f1f1f1;
}

.cryptosvc-deliver__card-body {
  position: relative;
  z-index: 1;
}

.cryptosvc-deliver__card-title {
  color: #1a1a1a;
}

.cryptosvc-deliver__card-text {
  color: #707070;
}

.cryptosvc-deliver__cta {
  position: relative;
  isolation: isolate;
}

.cryptosvc-deliver__cta-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
}

.cryptosvc-deliver__cta-deco img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.cryptosvc-deliver__cta-deco--lines {
  left: -20%;
  top: -35%;
  width: min(110%, 520px);
  opacity: 0.2;
  transform: rotate(169deg);
}

.cryptosvc-deliver__cta-deco--line {
  right: -25%;
  bottom: -40%;
  width: min(120%, 500px);
  opacity: 0.2;
  transform: rotate(8deg);
}

.cryptosvc-deliver__cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex: 1 1 auto;
  width: 100%;
}

.cryptosvc-deliver__cta-pill {
  margin: 0;
  align-self: flex-start;
  padding: 16px 24px;
  border-radius: 24px;
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: #0f0f0f;
  background: linear-gradient(94.64deg, #83ff8f 3.05%, #c5f07f 99.34%);
  box-sizing: border-box;
}

.cryptosvc-deliver__cta-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

.cryptosvc-deliver__cta-heading {
  color: #fff;
}

.cryptosvc-deliver__cta-lead {
  color: #fff;
  max-width: 100%;
}

.cryptosvc-deliver__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 0;
  padding-top: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cryptosvc-deliver__cta-link-txt {
  font-family: 'ClashDisplay', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.13;
  color: #83ff8f;
}

.cryptosvc-deliver__cta-link-ico {
  display: block;
  width: 97px;
  height: auto;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .cryptosvc-deliver__cta-pill {
    border-radius: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 1199px) {
  .cryptosvc-how__cards {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .cryptosvc-how__card--acc,
  .cryptosvc-how__card--acc.is-expanded {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .cryptosvc-how__card--acc.is-expanded {
    order: -1;
  }

  .cryptosvc-how__mock-wrap {
    min-height: 0;
  }

  .cryptosvc-how__mock--form,
  .cryptosvc-how__mock--textarea,
  .cryptosvc-how__mock--upload {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    top: auto;
    width: 600px;
    max-width: 100%;
    margin-top: 16px;
    height: auto;
    min-height: 200px;
  }

  .cryptosvc-how__mock--upload {
    min-height: 280px;
  }

  .cryptosvc-how__card--acc:not(.is-expanded) .cryptosvc-how__mock {
    opacity: 0.45;
  }
}

@media (max-width: 1023px) {
  .cryptosvc-page__inner,
  .cryptosvc-sreport__inner,
  .cryptosvc-further__inner,
  .cryptosvc-prep__inner,
  .cryptosvc-deliver__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cryptosvc-faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cryptosvc-limits__shell {
    border-radius: 28px 28px 0 0;
    padding: 12px;
  }

  .cryptosvc-limits__grid {
    padding: 28px 16px;
  }

  .cryptosvc-limits__acc-item:not(.is-expanded) .cryptosvc-limits__acc-surface,
  .cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-trigger,
  .cryptosvc-limits__acc-item.is-expanded .cryptosvc-limits__acc-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .cryptosvc-page {
    padding: 0;
  }

  .cryptosvc-fig-hero {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0 0 24px 24px;
    padding-top: 96px;
  }

  .cryptosvc-fig-hero__shell {
    padding: 20px 16px 28px;
  }

  .cryptosvc-fig-hero__actions {
    gap: 10px;
  }

  .cryptosvc-fig-hero__btn {
    width: 100%;
  }

  .cryptosvc-fig-hero__btn--primary {
    width: 100%;
  }

  .cryptosvc-fig-hero__btn--ghost {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cryptosvc-what__inner,
  .cryptosvc-sreport__inner,
  .cryptosvc-faq__inner,
  .cryptosvc-how__inner,
  .cryptosvc-further__inner,
  .cryptosvc-prep__inner,
  .cryptosvc-deliver__inner {
    gap: 36px;
  }

  .cryptosvc-what__card,
  .cryptosvc-faq__item,
  .cryptosvc-prep__banner,
  .cryptosvc-deliver__cta {
    border-radius: 20px;
  }

  .cryptosvc-faq__item {
    padding: 18px 16px;
  }

  .cryptosvc-faq__a {
    padding-top: 20px;
  }

  .cryptosvc-sreport__preview-head,
  .cryptosvc-sreport__preview-body {
    padding: 14px;
  }

  .cryptosvc-sreport__bullet {
    padding: 16px;
  }

  .cryptosvc-prep__banner,
  .cryptosvc-deliver__cta {
    padding: 20px 16px;
  }

  .cryptosvc-deliver__cta-link {
    gap: 12px;
  }

  .cryptosvc-deliver__cta-link-ico {
    width: 72px;
  }
}
