.trust {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-block: clamp(120px, 18vh, 198px);
  background: var(--tone-night);
  color: var(--ink);
}

.trust__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(64px, 10vw, 150px);
  align-items: center;
}

.trust__title {
  max-width: 10ch;
  margin: 0;
}

.trust__copy {
  display: grid;
  gap: 22px;
  max-width: 48ch;
  margin-top: 46px;
  color: var(--muted);
}

.trust__copy p {
  margin: 0;
}

.trust__ledger {
  padding-block: 34px;
  border-top: 3px double var(--line-strong);
  border-bottom: 3px double var(--line-strong);
}

.trust__seal {
  width: 54px;
  margin-bottom: 38px;
  color: var(--accent);
}

.trust__facts {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust__fact {
  min-height: 52px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.45;
}

.trust__fact::before {
  display: inline-block;
  width: 22px;
  height: 7px;
  margin-right: 14px;
  border-top: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  content: "";
}

.trust__link {
  margin-top: 34px;
}

.trust__mist {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.trust__mist span {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.trust__mist span:first-child {
  top: -20%;
  right: -22%;
  width: 82vw;
  height: 64vh;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--platinum) 10%, transparent),
    transparent 72%
  );
  animation: trust-mist-one 134s linear infinite alternate;
}

.trust__mist span:last-child {
  bottom: -25%;
  left: -20%;
  width: 74vw;
  height: 60vh;
  background: radial-gradient(
    closest-side,
    color-mix(in srgb, var(--surface) 45%, transparent),
    transparent 74%
  );
  animation: trust-mist-two 102s linear infinite alternate;
}

@keyframes trust-mist-one {
  to {
    transform: translate(-13vw, 7vh);
  }
}

@keyframes trust-mist-two {
  to {
    transform: translate(11vw, -8vh);
  }
}

@media (max-width: 820px) {
  .trust {
    min-height: auto;
    padding-block: 108px;
  }

  .trust__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .trust__ledger {
    width: 100%;
    max-width: 560px;
  }
}
