:root {
  color-scheme: dark;
  --trust-bg: #0a0805;
  --trust-panel: #17130e;
  --trust-panel-soft: #211b13;
  --trust-border: #4a3f2a;
  --trust-text: #e8dcc0;
  --trust-muted: #b7a982;
  --trust-gold: #f0d98a;
  --trust-focus: #ff8a72;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  min-width: 0;
  min-height: 100%;
  background: var(--trust-bg);
  color: var(--trust-text);
  font-family: "Segoe UI", "Microsoft JhengHei", sans-serif;
  overflow-x: hidden;
}

body { min-height: 100vh; }
a { color: var(--trust-gold); }
a:hover { color: #fff0b3; }
:focus-visible { outline: 2px solid var(--trust-focus); outline-offset: 3px; }

.trust-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.trust-header,
.trust-main,
.trust-footer {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding-inline: 24px;
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  border-bottom: 1px solid var(--trust-border);
}

.trust-brand {
  flex: 0 0 auto;
  color: var(--trust-text);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.trust-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 14px;
}

.trust-nav a,
.trust-footer__links a {
  color: var(--trust-muted);
  font-size: 13px;
  text-decoration: none;
}

.trust-nav a[aria-current="page"] { color: var(--trust-gold); font-weight: 700; }

.trust-language-toggle {
  flex: 0 0 auto;
  min-width: 44px;
  padding: 6px 10px;
  border: 1px solid var(--trust-border);
  border-radius: 5px;
  background: var(--trust-panel-soft);
  color: var(--trust-text);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.trust-language-toggle:hover { background: #382f1e; }

.trust-main {
  flex: 1 1 auto;
  padding-top: clamp(34px, 7vw, 76px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

.trust-eyebrow {
  margin: 0 0 8px;
  color: var(--trust-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.trust-main h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
}

.trust-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--trust-muted);
  font-size: clamp(16px, 2.3vw, 20px);
  line-height: 1.7;
}

.trust-content {
  max-width: 800px;
  margin-top: 34px;
}

.trust-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--trust-border);
}

.trust-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.trust-section h2 { margin: 0 0 12px; font-size: 21px; line-height: 1.35; }
.trust-section p,
.trust-section li {
  color: var(--trust-muted);
  font-size: 15px;
  line-height: 1.8;
}

.trust-section p { margin: 0 0 12px; }
.trust-section ul { margin: 10px 0 0; padding-left: 22px; }
.trust-section li + li { margin-top: 6px; }

.trust-notice,
.trust-contact-card {
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--trust-border);
  border-radius: 8px;
  background: var(--trust-panel-soft);
}

.trust-notice__label,
.trust-contact-card__label {
  margin: 0 0 8px;
  color: var(--trust-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-notice p,
.trust-contact-card p { margin: 0; color: var(--trust-muted); font-size: 14px; line-height: 1.7; }
.trust-notice p + p,
.trust-contact-card p + p { margin-top: 6px; }
.trust-contact-card__state { color: var(--trust-text) !important; font-weight: 700; }
.trust-contact-card__owner-action { color: var(--trust-gold) !important; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 12px !important; }

.trust-footer {
  padding-top: 18px;
  padding-bottom: calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--trust-border);
}

.trust-footer__links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.trust-footer__links a:hover { color: var(--trust-text); }
.trust-footer__notice { max-width: 800px; margin: 12px 0 0; color: var(--trust-muted); font-size: 12px; line-height: 1.6; }
.trust-footer__notice span { color: var(--trust-text); font-weight: 600; }

@media (max-width: 680px) {
  .trust-header,
  .trust-main,
  .trust-footer { padding-inline: 16px; }
  .trust-header { align-items: flex-start; flex-wrap: wrap; gap: 10px 14px; padding-top: 16px; padding-bottom: 14px; }
  .trust-brand { width: 100%; }
  .trust-nav { justify-content: flex-start; order: 3; width: 100%; }
  .trust-language-toggle { position: absolute; top: 15px; right: 16px; }
  .trust-main { padding-top: 34px; }
  .trust-section p,
  .trust-section li { font-size: 14px; }
}
