:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #17201f;
  background: #f3f7f6;
}

.trust-page {
  min-height: 100vh;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    radial-gradient(circle at 20% 10%, rgba(54, 215, 187, 0.18), transparent 34%),
    linear-gradient(160deg, #f8fbfa 0%, #edf5f3 100%);
}

.trust-card {
  width: min(680px, 100%);
  box-sizing: border-box;
  padding: 40px;
  border: 1px solid rgba(23, 93, 82, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(17, 72, 63, 0.1);
}

.trust-brand {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  color: #087866;
  background: #e3f7f2;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.trust-card h1 {
  margin: 22px 0 12px;
  font-size: clamp(27px, 5vw, 40px);
  line-height: 1.2;
}

.trust-card p {
  margin: 0;
  color: #52615f;
  font-size: 16px;
  line-height: 1.85;
}

.trust-facts {
  margin: 28px 0;
  border-top: 1px solid #e7eeec;
  border-bottom: 1px solid #e7eeec;
}

.trust-facts div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 15px 0;
}

.trust-facts div + div {
  border-top: 1px solid #edf2f1;
}

.trust-facts dt {
  color: #778481;
}

.trust-facts dd {
  margin: 0;
  font-weight: 600;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
}

.trust-links a,
.trust-card a {
  color: #087866;
  text-underline-offset: 4px;
}

/* 进相册首屏占位：与 React boot-loader 同形，避免先闪「展示服务 / 已暂停」文案 */
.boot-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.boot-loader__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(75, 224, 218, 0.18);
  border-top-color: #4be0da;
  animation: bootSpin 0.9s linear infinite;
}

@keyframes bootSpin {
  to { transform: rotate(360deg); }
}

.trust-status-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-top: 26px;
  border-radius: 50%;
  color: #996600;
  background: #fff3c7;
  font-size: 30px;
  font-weight: 800;
}

.trust-document {
  align-self: start;
  margin: 5vh auto;
}

.trust-document h2 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.trust-document ul {
  color: #52615f;
  line-height: 1.85;
}

@media (max-width: 560px) {
  .trust-page {
    place-items: start center;
    padding: 20px 12px;
  }

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

  .trust-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
