@import "./css/fonts.css";
     
:root {
  --bg-ink: #021417;
  --bg-panel: #111516;
  --text-main: #eef3f2;
  --text-muted: #9eb0ae;
  --line-soft: rgba(255, 255, 255, 0.07);
  --risk-bg: #004e44;
  --risk-card-bg: rgba(0, 36, 33, 0.42);
  --accent-mint: #6fcfbd;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
    scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #021114;
  color: var(--text-main);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 44px;
  background:
    radial-gradient(90% 100% at 92% 52%, rgba(36, 146, 123, 0.58) 0%, rgba(12, 65, 57, 0.34) 33%, rgba(4, 20, 23, 0) 67%),
    radial-gradient(70% 75% at 38% 14%, rgba(8, 82, 72, 0.34) 0%, rgba(3, 24, 28, 0.16) 45%, rgba(2, 15, 19, 0) 77%),
    linear-gradient(116deg, #011419 0%, #04211f 45%, #010f12 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: 0%;
  top: 4%;
  width: clamp(400px, 32vw, 760px);
  height: clamp(400px, 32vw, 760px);
  border-radius: 26px;
  transform: rotate(42deg);
  background:
    linear-gradient(
      138deg,
      rgba(54, 178, 151, 0.78) 0%,
      rgba(44, 150, 129, 0.75) 36%,
      rgba(44, 150, 129, 0.75) 44%,
      rgba(44, 150, 129, 0.75) 52%,
      rgba(47, 158, 134, 0.78) 63%,
      rgba(41, 138, 118, 0.73) 100%
    );
  filter: blur(10px);
  opacity: 0.38;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 14%;
  bottom: -22%;
  width: 56vw;
  height: 32vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 88, 78, 0.2) 0%, rgba(4, 19, 24, 0) 70%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__top {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  justify-content: space-between;
}

.hero__copy {
    width: 50%;
/*  max-width: 470px;*/
  padding-top: 10px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-family: "Inter-medium";
  letter-spacing: 0.01em;
  color: #242628;
  background: linear-gradient(180deg, #fbfbfb 0%, #d8d8d8 100%);
}

.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(38px, 5.1vw, 60px);
  letter-spacing: -0.03em;
  font-family: "Inter-bold", sans-serif;
}

.hero p {
  margin: 0;

  font-size: 16px;
  line-height: 1.55;
  max-width: 430px;
}

.wallet-shell {
  position: relative;
    width: 40%;
/*
  width: 100%;
  max-width: 390px;
*/
}

.wallet-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -112px;
  transform: translateX(-50%);
  width: 165%;
  height: 170px;
  background: radial-gradient(
    ellipse at center,
    rgba(95, 215, 187, 0.42) 0%,
    rgba(76, 186, 162, 0.27) 38%,
    rgba(30, 84, 74, 0.13) 57%,
    rgba(14, 37, 37, 0) 79%
  );
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

.wallet-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, #1A1A1A 0%, #1A1A1A 100%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.4);
/*  margin-left: 50px;*/
}


.wallet-card h2 {
  margin: 0 0 14px;
  font-size: 16px;
  font-family: "Inter-semibold";
  color: #ececec;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.wallet-form {
  display: grid;
  gap: 8px;
}

.field-label {
  font-size: 11px;
  color: #b7b7b7;
}

.field {
  display: flex;
  align-items: center;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
/*  background: rgba(255, 255, 255, 0.02);*/
}

.wallet-form .field:has(+ .field-label){
    margin-bottom: 15px;
}
.wallet-form .field:not(:has(+ .field-label)) {
    background: rgba(255, 255, 255, 0.02);
}
.wallet-form .btn{
    font-family: "Inter-medium";
}

.field input,
.field select {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
  outline: none;
/*        z-index: -1;*/
}

.field input::placeholder {
  color: #707575;
}

.field--select {
  position: relative;
}

.field--select::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 8px;
  height: 8px;
  border-right: 1.7px solid #5b6161;
  border-bottom: 1.7px solid #5b6161;
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.field select {
  appearance: none;
}

.select {
  position: relative;
  width: 100%;
}

.select__trigger {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background: transparent;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: .2s;
}

.select__trigger:hover {
  border-color: rgba(255,255,255,.5);
}

.select.open .select__trigger {
  border-color: rgba(255,255,255,.7);
}

.select__arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.6);
  border-bottom: 2px solid rgba(255,255,255,.6);
  transform: rotate(45deg);
  transition: .2s;
}

.select.open .select__arrow {
  transform: rotate(-135deg);
}

.select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #3a3a3a;
  border-radius: 12px;
  display: none;
  font-size: 14px;
  z-index: 9999;
}

.select.open .select__dropdown {
  display: block;
}

.select__option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: .15s;
}

.select__option:hover {
  background: #5B5B5B;
}

.coin-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.coin-icon--usdt {
  background-image: url("./assets/icons/usdt.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.coin-icon--trx {
  background-image: url("./assets/icons/tron.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn {
  height: 42px;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Inter-medium";
  cursor: pointer;
  transition: background-color 0.22s ease, color 0.22s ease;
}

.btn--primary {
  margin-top: 14px;
  color: #8d9393;
  background: rgba(255, 255, 255, 0.06);
}

.btn--primary:hover {
  background: rgba(255, 255, 255, 0.11);
}

.divider {
  position: relative;
  text-align: center;
  color: #656a6a;
  font-size: 11px;
  margin: 3px 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.btn--secondary {
  color: #7e8484;
  background: rgba(255, 255, 255, 0.05);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

body:has(.wc-modal.is-open) {
                overflow: hidden;
              }
            .wc-modal {
              position: fixed;
              inset: 0;
              z-index: 9999;
              display: none;
            }
            .wc-modal.is-open {
              display: block;
            }
            .wc-modal-backdrop {
              position: absolute;
              inset: 0;
              background: rgba(0,0,0,.55);
            }

            .wc-modal-dialog {
              position: relative;
              width: min(360px, calc(100% - 32px));
              margin: 0 auto;
              top: 50%;
              transform: translateY(-50%);
              border-radius: 18px;
              background: #1a1a1a;
              box-shadow: 0 20px 60px rgba(0,0,0,.6);
            }
            .wc-modal-panel {
              padding: 36px 40px;
            }

            .wc-modal-panel-loading {
              display: grid;
              place-items: center;
              min-height: 260px;
            }
            .wc-loader{
              width: 110px;
              height: 110px;
              display: grid;
              place-items: center;
            }
            .wc-loader-diamond{
              width: 78px;
              height: 78px;
              background: #232323;
              border-radius: 12px;
              transform: rotate(45deg);
              display: grid;
              place-items: center;
              box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
            }
            .wc-loader-bars{
              transform: rotate(-45deg);
              display: flex;
              align-items: center;
              gap: 6px;
              height: 24px;
            }
            .wc-loader-bars .b{
              width: 6px;
              height: 6px;
              background: rgba(120,255,140,.95);
              border-radius: 999px;
              opacity: .45;
              transform-origin: bottom center;
            }
            .b1, .b5 { animation: wcSmall 1.05s ease-in-out infinite; }
            .b2, .b4 { animation: wcMid   1.05s ease-in-out infinite; }
            .b3 { animation: wcBig   1.05s ease-in-out infinite; }
            .b1 { animation-delay: 0s; }
            .b2 { animation-delay: .08s; }
            .b3 { animation-delay: .16s; }
            .b4 { animation-delay: .24s; }
            .b5 { animation-delay: .32s; }
            @keyframes wcSmall{
              0%, 100% { height: 6px;  border-radius: 999px; opacity: .45; }
              50%      { height: 12px; border-radius: 6px;   opacity: 1; }
            }
            @keyframes wcMid{
              0%, 100% { height: 6px;  border-radius: 999px; opacity: .45; }
              50%      { height: 16px; border-radius: 6px;   opacity: 1; }
            }
            @keyframes wcBig{
              0%, 100% { height: 6px;  border-radius: 999px; opacity: .45; }
              50%      { height: 22px; border-radius: 6px;   opacity: 1; }
            }

            .wc-modal-panel[hidden] {
              display: none !important;
            }

            .wc-modal-panel-error{
              text-align: center;
              padding-top: 44px;
              color: #828282;
            }
            .wc-error-icon{
              margin-bottom: 44px;
              position: relative;
            }
            .wc-error-title{
              font-family: "Inter-medium";
              font-size: 20px;
              margin-bottom: 10px;
            }
            .wc-error-text{
              font-size: 12px;
              margin-bottom: 16px;
            }
            .wc-error-actions{
              margin-top: 6px;
              display: grid;
              gap: 10px;
            }
            .wc-error-row{
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 10px;
            }
            .wc-btn{
              height: 40px;
              border-radius: 12px;
              border: none;
              background: #212121;
              color: #828282;
              cursor: pointer;
              transition: .2s;
            }
            .wc-btn:hover{
              background: rgba(255, 255, 255, 0.11);
            }
            .wc-btn-wide{
              width: 100%;
            }
            .wc-btn:disabled{
              opacity: .45;
              cursor: not-allowed;
              color: #828282 !important;
            }

.risk-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  margin-top: 82px;
  padding: 50px 70px;
  border-radius: 0 0 0 12px;
    background-color: #014336;
}

.risk-block__heading {
  width: min(37%, 360px);
}

.risk-block__heading img {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  opacity: 0.95;
}

.risk-block__heading h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
    font-family: "Inter-bold";
}

.risk-block__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.risk-card {
  border-radius: 12px;
  border: 1px solid #9a9a9a8f;
  padding: 16px 20px 12px;
  min-height: 160px;
}

.risk-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 44px;
  background-color: #4CA393;
}

.risk-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.25;
    font-family: "Inter-semibold";
}

.risk-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #aac7c1;
}

.aml-checker {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(55% 65% at 73% 52%, rgba(29, 121, 104, 0.2) 0%, rgba(2, 45, 43, 0.14) 46%, rgba(2, 27, 27, 0) 76%),
    linear-gradient(180deg, #002b28 0%, #002320 100%);
}

.aml-checker__container {
  display: grid;
  gap: 74px;
}

.aml-checker__intro {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.aml-checker__intro h2 {
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.03em;
    font-family: "Inter-bold";
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.aml-checker__intro p {
  margin: 20px 0;
  font-size: 22px;
  line-height: 1.32;
  color: #bccdca;
}

.aml-checker__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px auto 26px;
  padding: 0;
  max-width: 920px;
}

.aml-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #181e1f;
  font-size: 12px;
  line-height: 1;
  color: #e7ebea;
  white-space: nowrap;
}

.aml-tag img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.aml-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.aml-tag--scam {
  order: 10;
}

.aml-tag--mixers {
  order: 20;
}

.aml-tag--dark {
  order: 30;
}

.aml-tag--stolen {
  order: 40;
}

.aml-tag--terrorism {
  order: 50;
}

.aml-tag--gambling {
  order: 60;
}

.aml-tag--illegal {
  order: 70;
}

.aml-tag--sanctions {
  order: 80;
}

.aml-tag--kyc {
  order: 90;
}

.aml-break--desktop {
  order: 45;
}

.aml-break--mobile-1,
.aml-break--mobile-2,
.aml-break--mobile-3 {
  display: none;
}

.start-btn {
  width: 132px;
  height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: #eceeed;
  color: #1a2221;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.22s ease;
    text-decoration: unset;
    align-items: center;
    display: flex;
    margin: 0 auto;
    justify-content: center
}

.start-btn:hover {
  opacity: 0.86;
}

.instant-risk {
  display: grid;
  grid-template-columns: minmax(260px, 500px) minmax(360px, 1fr);
  grid-template-areas:
    "copy gauge"
    "cta gauge";
  align-items: center;
  column-gap: 54px;
  row-gap: 22px;
}

.instant-risk__copy {
  grid-area: copy;
  max-width: 500px;
}

.instant-risk__copy h3 {
  margin: 0 0 18px;
  font-size: clamp(40px, 4.2vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.03em;
    font-family: "Inter-bold";
}

.instant-risk__copy p {
  margin: 0;
  color: #bbcbc9;
  font-size: 16px;
  line-height: 1.34;
  max-width: 430px;
}

.instant-risk__cta {
  grid-area: cta;
  justify-self: start;
  margin: unset;
}

.gauge-card {
  position: relative;
  grid-area: gauge;
  overflow: hidden;
  min-height: 162px;
  border-radius: 3px;
  padding: 18px 22px 14px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  background: linear-gradient(108deg, rgba(54, 73, 70, 0.58) 0%, rgba(20, 63, 57, 0.3) 54%, rgba(8, 38, 36, 0.06) 100%);
}

.gauge-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  pointer-events: none;
}

.gauge-card__label {
  position: relative;
  z-index: 1;
  max-width: 104px;
  font-size: clamp(42px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: #f04d63;
  font-family: "Inter-bold";
  margin-bottom: 80px;
}

.gauge {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 250px;
  max-width: 409px;
}

.gauge__img {
  display: block;
  width: 100%;
  height: auto;
}

.verify-history {
  padding: 74px 0 92px;
  background: linear-gradient(180deg, #002d2a 0%, #002421 100%);
}

.verify-history__card {
  margin: 0 auto;
  padding: 42px 36px 40px;
  border-radius: 14px;
  background: #1f6557;
  text-align: center;
}

.verify-history__card h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
    font-family: "Inter-bold";
}

.verify-history__card p {
  margin: 14px 0 0;
  font-size: 20px;
  color: #c6dbd6;
}

.checks-card {
  margin: 26px auto 30px;
  max-width: 760px;
  padding: 18px 20px 14px;
  border-radius: 11px;
  background: #030506;
  text-align: left;
}

.checks-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checks-card__top h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.checks-card__see-all {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #99a0a5;
  font-size: 11px;
  text-decoration: none;
}

.checks-card__see-all span {
  font-size: 16px;
  line-height: 0;
}

.checks-table {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #383d43;
}

.checks-table::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 0;
  width: 240px;
  height: 2px;
  background: rgba(139, 144, 147, 0.56);
}

.checks-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px 120px 24px;
  align-items: center;
  gap: 14px;
  padding: 9px 10px;
  background: #151719;
}

.checks-row + .checks-row {
  border-top: 1px solid rgba(166, 174, 179, 0.48);
}

.checks-row--head {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #7b8288;
  background: #181a1f;
  font-size: 9px;
  line-height: 1;
  border-top: 0;
}

.checks-row--head span:last-child {
  display: block;
}

.checks-request {
  min-width: 0;
}

.checks-request span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #d3d8dc;
  font-size: 10px;
  line-height: 1.25;
}

.checks-request small {
  display: block;
  margin-top: 2px;
  color: #70777d;
  font-size: 9px;
  line-height: 1.2;
}

.checks-network {
  color: #c6cbcf;
  font-size: 10px;
}

.checks-result {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d4d9de;
  font-size: 10px;
  white-space: nowrap;
}

.checks-result img {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.checks-result--high {
  color: #f15863;
}

.checks-result--medium {
  color: #efb24c;
}

.checks-result--low {
  color: #4ed686;
}

.checks-download {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.checks-download img {
  width: 16px;
  height: 16px;
}

.verify-history__cta {
  min-width: 138px;
}

.pricing {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 24px 0 132px;
  background:
    linear-gradient(180deg, rgba(0, 74, 64, 0.64) 0%, rgba(0, 56, 48, 0.68) 100%),
    radial-gradient(124% 98% at 50% 48%, rgba(0, 178, 150, 0.42) 0%, rgba(0, 149, 126, 0.29) 36%, rgba(0, 94, 80, 0.16) 60%, rgba(0, 0, 0, 0) 78%),
    url("assets/images/bacground.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: multiply, screen, normal;

}

.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 18, 16, 0.16) 0%, rgba(0, 18, 16, 0) 22%, rgba(0, 18, 16, 0) 78%, rgba(0, 18, 16, 0.16) 100%);
  pointer-events: none;
}

.pricing::after {
  content: none;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing__title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(40px, 4.6vw, 60px);
  font-family: "Inter-bold";
}

.pricing__title img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.pricing__panel {
  max-width: 860px;
  margin: 18px auto 0;
  padding: 22px;

}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  border-radius: 10px;
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
}

.price-card__plan {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #cfd2d5;
  font-size: 12px;
  font-family: "Inter-semibold";
}

.price-card__plan img {
  width: 14px;
  height: 14px;
}

.price-card h3 {
  margin: 10px 0 6px;
  font-size: 14px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  font-family: "Inter-semibold";
}

.price-card span {
  display: block;
  color: #70757a;
  font-size: 9px;
}

.price-card button {
  margin-top: 12px;
  width: 100%;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #777e84;
  background: transparent;
  color: #f4f6f8;
  font-size: 11px;
  font-family: "Inter-medium";
  cursor: pointer;
}

.price-card button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.price-card .is-active{
    border: 1px solid #FF3D3D;
    color: #ff3d3d66;
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 0 0 34px;
  background:
    radial-gradient(66% 72% at 52% 60%, rgba(0, 112, 94, 0.2) 0%, rgba(0, 54, 47, 0.13) 44%, rgba(0, 31, 28, 0) 74%),
    linear-gradient(180deg, #001d1b 0%, #011311 100%);
}

.faq__title {
  margin: 10px 0 60px;
  font-size: 48px;
    font-family: "Inter-bold";
}

.faq__list {
  margin-top: 34px;
}

.faq-item {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(96, 230, 194, 0.08) 0%, rgba(96, 230, 194, 0) 40%);
  opacity: 0;
  transition: opacity 0.34s ease;
  pointer-events: none;
}

.faq-item.is-open::before {
  opacity: 1;
}

.faq-item__title {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: none;
  color: #edf2f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.25;
  padding: 18px 14px;
  cursor: pointer;
    font-family: "Inter-semibold";
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  opacity: 0.95;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #edf2f1;
  transform: translate(-50%, -50%);
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.1);
  opacity: 0;
}

.faq-panel {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease;
}

.faq-panel__inner {
  padding: 0 14px 18px;
  color: #d6dfdd;
  font-size: 13px;
  line-height: 1.45;
  max-width: 100%;
}

.faq-foot {
  margin-top: 94px;
  text-align: center;
}

.faq-foot__links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.faq-foot__links a {
  color: #aeb8b7;
  font-size: 11px;
  line-height: 1;
}

.faq-foot__links a + a {
  position: relative;
}

.faq-foot__links a + a::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%);
}

.faq-foot p {
  margin: 14px 0 0;
  color: #96a09f;
  font-size: 11px;
}

.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0.7;
  animation: pulse 4.8s ease-in-out infinite;
}

.star--1 {
  left: 2.4%;
  top: 15%;
  width: 14px;
  height: 14px;
  opacity: 0.35;
  animation-delay: 0.1s;
}

.star--2 {
  left: 5%;
  top: 46%;
  width: 12px;
  height: 12px;
  opacity: 0.4;
  animation-delay: 1s;
}

.star--3 {
  left: 30%;
  top: 7.6%;
  animation-delay: 2.1s;
}

.star--4 {
  left: 48%;
  top: 56%;
  width: 18px;
  height: 18px;
  opacity: 0.48;
  animation-delay: 0.7s;
}

.star--5 {
  left: 34%;
  top: 52%;
  width: 10px;
  height: 10px;
  opacity: 0.4;
  animation-delay: 2.5s;
}

.star--6 {
  left: 40%;
  top: 22%;
  width: 14px;
  height: 14px;
  opacity: 0.3;
  animation-delay: 1.8s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.32;
  }
  50% {
    transform: scale(1);
    opacity: 0.75;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding-bottom: 30px;
  }

  .hero::before {
    right: -20%;
    top: -7%;
    width: 72vw;
    height: 72vw;
    filter: blur(10px);
  }

  .hero h1 {
    font-size: clamp(34px, 6.6vw, 46px);
  }

  .hero__top {
    flex-direction: row;
  }

  .wallet-shell {
    max-width: 100%;
  }

  .wallet-shell::before {
    top: -84px;
    width: 130%;
    height: 126px;
  }

  .risk-block {
    margin-top: 44px;
    flex-direction: column;
  }

  .risk-block__heading {
    width: 100%;
    max-width: 600px;
  }

  .risk-block__cards {
    width: 100%;
  }

  .aml-checker {
    padding: 72px 0 80px;
  }

  .aml-checker__container {
    gap: 58px;
  }

  .aml-checker__intro p {
    font-size: 20px;
  }

  .instant-risk {
    grid-template-columns: minmax(240px, 1fr) minmax(320px, 420px);
    column-gap: 28px;
    row-gap: 18px;
  }

  .instant-risk__copy h3 {
    margin-bottom: 14px;
  }

  .instant-risk__copy p {
    font-size: 16px;
    max-width: 370px;
  }

  .gauge-card {
    min-height: 152px;
    padding: 14px 14px 12px;
  }

  .gauge-card__label {
    max-width: 86px;
  }

  .gauge {
    min-width: 230px;
  }

  .verify-history {
    padding: 62px 0 78px;
  }

  .verify-history__card {
    padding: 34px 22px 34px;
  }

  .verify-history__card p {
    font-size: 18px;
  }

  .checks-card {
    max-width: 100%;
    padding: 14px;
  }

  .checks-card__top h3 {
    font-size: 20px;
  }

  .checks-row {
    grid-template-columns: minmax(0, 1fr) 44px 102px 22px;
    gap: 10px;
    padding: 8px;
  }

  .checks-table::after {
    width: 180px;
  }

  .pricing {
    min-height: 420px;
    padding: 18px 0 86px;
  }

  .pricing__panel {
    max-width: 760px;
    padding: 18px;
  }

  .pricing-cards {
    gap: 10px;
  }

  .price-card {
    padding: 9px;
  }

  .price-card h3 {
    font-size: 13px;
  }
}

@media (max-width: 740px) {
    .hero__copy {
        width: 100%
    }
    .wallet-shell {
        width: 100%;
    }
    
    .hero__top {
        flex-direction: column;
    }
    
    
  .container {
    padding: 0 32px;
  }
  
  .hero__tag{
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .wallet-card {
    margin-left: 0px;
  }


  .verify-history {
    display: none;
  }

  .pricing {
    padding: 8px 4px 10px;
    background: transparent;
      border-radius: 12px;
  background-color: #014336;
  }

  .pricing::before,
  .pricing::after {
    display: none;
  }

  .pricing .container {
    padding: 0;
  }

  .pricing__panel {
    margin: 0;
    max-width: none;
    border-radius: 18px;
    padding: 24px 34px 34px;
  }

  .pricing__title {
    margin-bottom: 18px;
    font-size: 30px;
    gap: 0;
    padding-top: 30px;
  }

  .pricing__title img {
    display: none;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    border-radius: 14px;
    padding: 14px 12px 12px;
  }

  .price-card h3 {
    font-size: 20px;
  }

  .price-card span {
    font-size: 14px;
  }

  .price-card button {
    margin-top: 12px;
    height: 34px;
    font-size: 11px;
  }

  .faq {
    padding: 56px 0 32px;
  }

  .faq__container {
    max-width: 100%;
  }

  .faq__title {
    text-align: center;
    font-size: 30px;
  }

  .faq__list {
    margin-top: 34px;
  }

  .faq-trigger {
    font-size: 15px;
    gap: 12px;
    padding: 14px 10px;
  }

  .faq-icon {
    display: none;
  }

  .faq-icon::before,
  .faq-icon::after {
    width: 12px;
  }

  .faq-panel__inner {
    padding: 0 10px 14px;
    font-size: 14px;
    line-height: 1.42;
  }

  .faq-foot {
    margin-top: 78px;
  }

  .faq-foot__links {
    gap: 16px;
  }

  .faq-foot__links a {
    font-size: 11px;
  }

  .faq-foot__links a + a::before {
    left: -9px;
    height: 12px;
  }

  .faq-foot p {
    margin-top: 14px;
    font-size: 11px;
  }

  .hero::before {
    right: 0%;
    top: 32%;
    width: 84vw;
    height: 84vw;
    filter: blur(8px);
  }

  .hero h1 {
    margin-top: 12px;
    font-size: 34px;
    text-align: center;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.45;
      max-width: unset;
  }
    
    .hero__top p{
        text-align: center;
    }

  .risk-block {
    margin-top: 80px;
    padding: 36px;
    gap: 14px;
  }

  .risk-block__heading img {
    margin-bottom: 10px;
  }

  .risk-block__heading h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
  }

  .risk-block__cards {
    grid-template-columns: 1fr;
  }

  .risk-card {
    min-height: 0;
  }
    
    .risk-card {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      gap: 8px 12px;
    }

    .risk-card__icon {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 10px;
    }

    .risk-card h3 {
      grid-column: 2;
      grid-row: 1;
    }

    .risk-card p {
      grid-column: 1 / -1;
      margin: 0;
    }

  .star--3,
  .star--6 {
    display: none;
  }

  .aml-checker {
    padding: 58px 0 62px;
  }

  .aml-checker__container {
    gap: 50px;
  }

  .aml-checker__intro {
    max-width: 100%;
  }

  .aml-checker__intro h2 {
    font-size: clamp(30px, 6vw, 56px);
  }

  .aml-checker__intro p {
    font-size: 15px;
    line-height: 1.35;
    margin-top: 12px;
  }

  .aml-checker__tags {
    gap: 5px;
    margin: 24px auto 24px;
  }

  .aml-tag {
    min-height: 30px;
    padding: 0 11px;
    font-size: 11px;
  }

  .aml-tag--scam {
    order: 10;
  }

  .aml-tag--mixers {
    order: 20;
  }

  .aml-tag--terrorism {
    order: 30;
  }

  .aml-tag--gambling {
    order: 40;
  }

  .aml-tag--illegal {
    order: 50;
  }

  .aml-tag--dark {
    order: 60;
  }

  .aml-tag--stolen {
    order: 70;
  }

  .aml-tag--sanctions {
    order: 80;
  }

  .aml-tag--kyc {
    order: 90;
  }

  .aml-break--desktop {
    display: none;
  }

  .aml-break--mobile-1,
  .aml-break--mobile-2,
  .aml-break--mobile-3 {
    display: block;
  }

  .aml-break--mobile-1 {
    order: 25;
  }

  .aml-break--mobile-2 {
    order: 55;
  }

  .aml-break--mobile-3 {
    order: 75;
  }

  .start-btn {
    min-width: 132px;
    height: 40px;
  }

  .instant-risk {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "gauge"
      "cta";
    row-gap: 24px;
  }

  .instant-risk__copy {
    max-width: 100%;
    text-align: center;
  }

  .instant-risk__copy h3 {
    font-size: clamp(30px, 6vw, 64px);
    margin-bottom: 14px;
  }

  .instant-risk__copy p {
    margin: 0 auto;
    font-size: 15px;
    max-width: 320px;
  }

  .instant-risk__cta {
    justify-self: center;
  }

  .gauge-card {
    min-height: 154px;
    padding: 14px 14px 12px;
    gap: 10px;
  }

  .gauge-card__label {
    max-width: 74px;
    font-size: clamp(33px, 4vw, 50px);
    margin-bottom: 35px;
  }

  .gauge {
    min-width: 188px;
  }
}

@media (min-width: 741px) {
  .pricing {
    display: flex;
    align-items: center;
  }

  .pricing .container {
    width: 100%;
  }

  .pricing__title {
    margin-bottom: 32px;
    font-size: 47px;
  }

  .pricing__panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 56px 56px;
    border-radius: 14px;
    background-color: #014336;
  }

  .pricing-cards {
    gap: 22px;
  }

  .price-card {
    border-radius: 12px;
    padding: 14px 12px 12px;
  }

  .price-card__plan {
    font-size: 13px;
  }

  .price-card h3 {
    margin: 12px 0 7px;
    font-size: 16px;
    line-height: 1.2;
  }

  .price-card span {
    font-size: 10px;
  }

  .price-card button {
    margin-top: 14px;
    height: 32px;
    font-size: 12px;
  }
}

.wc-modal-panel-error .wc-error-text {
  margin-bottom: 44px;
}

.checks-request,
.checks-network,
.checks-result {
  cursor: default !important;
  pointer-events: none !important;
}

.checks-request:hover,
.checks-network:hover,
.checks-result:hover {
  background: transparent !important;
  color: inherit !important;
  text-decoration: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Отключаем "See All" */
.checks-card_seal-all {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Отключаем иконки скачивания */
.checks-download {
  cursor: default !important;
  pointer-events: none !important;
}

.checks-download:hover {
  background: transparent !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Полностью отключаем "See all" */
.checks-card_seal {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

.checks-card_seal:hover {
  background: transparent !important;
  color: inherit !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Отключаем See All */
.checks-card_see-all {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
  color: inherit !important;
}

.checks-card_see-all:hover {
  background: transparent !important;
  color: inherit !important;
  opacity: 1 !important;
  transform: none !important;
}
