:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #101426;
  background: #f7f8ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 4%, rgba(112, 91, 255, .18), transparent 30rem),
    radial-gradient(circle at 88% 0%, rgba(44, 207, 190, .14), transparent 28rem),
    #f7f8ff;
}

a { color: inherit; }

.trust-header,
.trust-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.trust-header {
  padding: 28px 0;
}

.trust-brand {
  font-weight: 900;
  font-size: 1.25rem;
  text-decoration: none;
  letter-spacing: -.04em;
}

.trust-header nav,
.trust-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #596078;
  font-size: .95rem;
}

.trust-header a,
.trust-footer a {
  text-decoration: none;
}

.trust-main {
  width: min(880px, calc(100% - 40px));
  margin: 42px auto 72px;
}

.trust-kicker {
  color: #6658f0;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: .96;
  letter-spacing: -.08em;
}

.trust-intro {
  color: #596078;
  font-size: 1.18rem;
  line-height: 1.75;
  max-width: 760px;
}

.trust-card {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.trust-card section {
  padding: 28px;
  border: 1px solid rgba(110, 120, 160, .22);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 24px 60px rgba(55, 62, 92, .08);
}

.trust-card h2 {
  margin: 0 0 10px;
  letter-spacing: -.04em;
}

.trust-card p {
  margin: 0;
  color: #555d78;
  line-height: 1.72;
}

.trust-footer {
  padding: 24px 0 36px;
  color: #596078;
  border-top: 1px solid rgba(110, 120, 160, .18);
}

@media (max-width: 720px) {
  .trust-header,
  .trust-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-card section {
    padding: 22px;
    border-radius: 22px;
  }
}
