.s-trust .l-base {
  position: absolute;
  inset: 0;
  background: hsl(222 22% 7%);
}

.s-trust .l-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 32px 32px;
}

.s-trust .l-bloom1 {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 400px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.06);
  filter: blur(140px);
  pointer-events: none;
}

.s-trust .l-bloom2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 400px;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.025);
  filter: blur(120px);
  pointer-events: none;
}

.s-trust .l-topfade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to bottom, hsl(222 24% 5%), transparent);
}

.s-trust .l-botfade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, hsl(222 24% 5%), transparent);
}

.trust-head {
  margin-bottom: 4rem;
  max-width: 36rem;
}

.trust-head h2 {
  margin-top: 0.75rem;
  line-height: 1.25;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-cell {
  position: relative;
  background: hsl(222 22% 7%);
  padding: 2rem;
  overflow: hidden;
  transition: background 0.3s ease;
}

.trust-cell:hover {
  background: hsl(222 22% 9%);
}

.trust-cell .ord {
  position: absolute;
  bottom: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.025);
  user-select: none;
  pointer-events: none;
  transition: color 0.3s ease;
}

.trust-cell:hover .ord {
  color: rgba(255, 255, 255, 0.04);
}

.trust-cell .glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 0% 100%, rgba(var(--glow), 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trust-cell:hover .glow {
  opacity: 1;
}

.trust-cell .body {
  position: relative;
}

.trust-cell .ic {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.trust-cell:hover .ic {
  background: hsl(var(--primary) / 0.15);
}

.trust-cell .ic .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.trust-cell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
}

.trust-cell p {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

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

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

