.trust__inner {
  display: grid;
  gap: 1.2rem;
}

.trust__header {
  display: grid;
  gap: 0.8rem;
  max-inline-size: 47rem;
}

.trust__title {
  font-size: clamp(1.55rem, 4.7vw, 2rem);
  line-height: 1.38;
}

.trust__description {
  color: var(--color-text-muted);
}

.trust__console {
  border-radius: var(--radius-large);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.25);
  box-shadow: var(--shadow-soft);
}

.trust-console {
  background: linear-gradient(180deg, #020617, #0f172a);
  color: #e5e7eb;
}

.trust-console__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.72rem 0.84rem;
  border-block-end: 1px solid rgba(148, 163, 184, 0.24);
}

.trust-console__lights {
  display: flex;
  gap: 0.34rem;
}

.trust-console__lights span {
  inline-size: 9px;
  block-size: 9px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.42);
}

.trust-console__lights span:first-child {
  background: rgba(245, 158, 11, 0.95);
}

.trust-console__lights span:nth-child(2) {
  background: rgba(34, 197, 94, 0.88);
}

.trust-console__lights span:nth-child(3) {
  background: rgba(14, 165, 233, 0.85);
}

.trust-console__title {
  font-size: 0.82rem;
  color: rgba(229, 231, 235, 0.78);
  direction: ltr;
}

.trust-console__body {
  min-block-size: 212px;
  max-block-size: 286px;
  overflow: hidden;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.79rem;
  line-height: 1.52;
  padding: 0.9rem 0.95rem 0.7rem;
  display: grid;
  align-content: start;
  gap: 0.44rem;
}

.trust-console__line {
  opacity: 0;
  transform: translateY(8px);
  color: rgba(229, 231, 235, 0.9);
  transition: opacity 300ms ease, transform 300ms ease;
}

.trust-console__line--visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-console__line--ok {
  color: #86efac;
}

.trust-console__line--warn {
  color: #fcd34d;
}

.trust-console__line--info {
  color: #93c5fd;
}

.trust-console__loader {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.66rem 0.8rem 0.92rem;
}

.trust-console__loader span {
  inline-size: 7px;
  block-size: 7px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.7);
  animation: trust-loader 1.2s ease-in-out infinite;
}

.trust-console__loader span:nth-child(2) {
  animation-delay: 160ms;
}

.trust-console__loader span:nth-child(3) {
  animation-delay: 320ms;
}

.trust-console__loader--hidden {
  opacity: 0;
}

.trust__stats {
  display: grid;
  gap: 0.7rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 580ms ease, transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
}

.trust__stats--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.trust-stat {
  border-radius: var(--radius-medium);
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #ffffff;
  padding: 0.9rem;
  box-shadow: var(--shadow-soft-sm);
  display: grid;
  gap: 0.4rem;
}

.trust-stat__value {
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 700;
  color: #4f2ca2;
  direction: ltr;
  text-align: right;
}

.trust-stat__label {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

@keyframes trust-loader {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}

@media (min-width: 40rem) {
  .trust__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .trust__inner {
    gap: 1.4rem;
  }

  .trust-console__body {
    min-block-size: 230px;
  }

  .trust-stat {
    min-block-size: 120px;
    align-content: center;
  }
}
