.topbar,
.trust-main,
.trust-footer {
  width: min(calc(100% - 48px), var(--max));
  margin-right: auto;
  margin-left: auto;
}

.trust-main {
  display: grid;
  gap: 70px;
  padding-top: 34px;
}

.trust-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(44px, 7vw, 88px);
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 20%, rgba(23, 200, 239, .2), transparent 25rem),
    linear-gradient(135deg, rgba(105, 85, 255, .17), transparent 56%),
    var(--surface);
  box-shadow: var(--shadow);
}

.trust-hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -180px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(105, 85, 255, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(105, 85, 255, .035), 0 0 0 108px rgba(23, 200, 239, .025);
  pointer-events: none;
}

.trust-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trust-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0;
  font: 800 clamp(50px, 7vw, 92px)/1 "Manrope", sans-serif;
  letter-spacing: -.06em;
}

.trust-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.trust-panel {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-panel.wide { grid-column: 1 / -1; }

.trust-panel h2 {
  margin: 0 0 15px;
  font: 800 clamp(28px, 3.4vw, 46px)/1.1 "Manrope", sans-serif;
  letter-spacing: -.045em;
}

.trust-panel h3 {
  margin: 0 0 10px;
  font: 800 25px/1.2 "Manrope", sans-serif;
}

.trust-panel p {
  max-width: 900px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.principle-card {
  min-height: 230px;
  transition: transform .25s ease, border-color .25s ease;
}

.principle-card:hover { transform: translateY(-5px); border-color: rgba(105, 85, 255, .45); }
.principle-number { display: block; margin-bottom: 58px; color: var(--violet); font-size: 13px; font-weight: 850; }

.vision-panel {
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(105, 85, 255, .35), transparent 25rem),
    linear-gradient(135deg, #11131d, #20233a);
}
.vision-panel p { color: #bec2d1; }

.explore-tools-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 15px 21px;
  border-radius: 15px;
  color: #fff;
  background: var(--violet);
  box-shadow: 0 14px 30px rgba(105, 85, 255, .28);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.explore-tools-link:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(105, 85, 255, .36); }

.policy-stack { display: grid; gap: 0; }
.policy-section { padding: 30px 0; }
.policy-section + .policy-section { border-top: 1px solid var(--line); }
.policy-section h2 { font-size: clamp(24px, 2.8vw, 36px); }
.contact-link { color: var(--violet); font-weight: 800; }

.trust-footer { margin-top: 70px; }
.trust-footer > div { display: grid; gap: 5px; }
.trust-footer > div small,
.trust-footer > span { color: var(--muted); font-size: 13px; }
.trust-footer > span { justify-self: end; }
.trust-footer .footer-links { flex-wrap: wrap; justify-content: center; }

@media (max-width: 920px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-panel.wide { grid-column: auto; }
  .principle-card { min-height: auto; }
  .principle-number { margin-bottom: 30px; }
}

@media (max-width: 760px) {
  .trust-main { padding-top: 18px; }
  .trust-hero { min-height: 300px; padding: 38px 26px; border-radius: 28px; }
  .trust-panel { padding: 28px 24px; border-radius: 24px; }
  .trust-footer { align-items: flex-start; }
}
