:root {
  --ink: #172033;
  --muted: #667085;
  --subtle: #8b95a7;
  --line: #e3e7ed;
  --paper: #f7f8fa;
  --card: #ffffff;
  --accent: #4965d8;
  --accent-soft: #eef1ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
.trust-shell, .trust-header { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.trust-header { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 850; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 9px; background: var(--ink); color: white; font-size: 10px; letter-spacing: -.08em; }
.trust-header nav { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 13px; }
.trust-header nav a:hover { color: var(--accent); }
.header-cta { padding: 8px 12px; border: 1px solid #cfd6ec; border-radius: 8px; color: var(--accent); font-weight: 800; }
.trust-hero { padding: 82px 0 78px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 10px; color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .03em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; word-break: keep-all; }
h1 { max-width: 780px; margin-bottom: 20px; font-size: clamp(38px, 5vw, 62px); line-height: 1.14; letter-spacing: -.065em; }
h1 em { color: var(--accent); font-style: normal; }
.trust-lead { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.85; }
.trust-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.trust-meta span { padding: 6px 10px; border: 1px solid #d8ddea; border-radius: 999px; color: var(--muted); font-size: 11px; }
.trust-section { padding: 74px 0; border-bottom: 1px solid var(--line); }
.trust-section-heading { max-width: 660px; margin-bottom: 28px; }
.trust-section-heading h2 { margin-bottom: 9px; font-size: clamp(25px, 3vw, 36px); line-height: 1.3; letter-spacing: -.05em; }
.trust-section-heading p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-card { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.trust-card.is-accent { border-color: #cbd4fa; background: var(--accent-soft); }
.trust-card .card-number { display: block; margin-bottom: 28px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .04em; }
.trust-card h3 { margin-bottom: 8px; font-size: 17px; letter-spacing: -.035em; }
.trust-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.trust-prose { max-width: 780px; }
.trust-prose h3 { margin: 31px 0 8px; font-size: 18px; }
.trust-prose h3:first-child { margin-top: 0; }
.trust-prose p { color: var(--muted); font-size: 14px; }
.trust-prose ul, .trust-prose ol { margin: 0; padding-left: 20px; color: var(--muted); font-size: 14px; }
.trust-prose li + li { margin-top: 8px; }
.trust-callout { margin-top: 25px; padding: 18px 20px; border-left: 3px solid var(--accent); background: var(--accent-soft); color: var(--muted); font-size: 13px; }
.trust-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--card); }
.trust-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 13px; }
.trust-table th, .trust-table td { padding: 15px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.trust-table th { color: var(--subtle); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.trust-table td { color: var(--muted); }
.trust-table tr:last-child td { border-bottom: 0; }
.trust-table strong { color: var(--ink); }
.trust-link { color: var(--accent); font-weight: 800; }
.trust-link:hover { color: var(--ink); }
.trust-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 17px; border-radius: 9px; font-size: 13px; font-weight: 850; }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: var(--accent); }
.button-secondary { border: 1px solid #cfd6ec; color: var(--accent); }
.button-secondary:hover { border-color: var(--accent); }
.trust-footer { display: flex; justify-content: space-between; gap: 18px; padding: 28px 0 35px; color: var(--subtle); font-size: 11px; }
.trust-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-footer a:hover { color: var(--accent); }
:where(a, summary):focus-visible { outline: 3px solid #91a3e9; outline-offset: 4px; }
@media (max-width: 820px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 21px; }
}
@media (max-width: 640px) {
  .trust-shell, .trust-header { width: min(100% - 28px, 1120px); }
  .trust-header nav { gap: 11px; font-size: 12px; }
  .trust-header nav a:first-child { display: none; }
  .trust-hero { padding: 57px 0 58px; }
  h1 { font-size: 41px; }
  .trust-lead { font-size: 15px; }
  .trust-section { padding: 58px 0; }
  .trust-footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
