:root {
  color-scheme: light;
  --red: #e50914;
  --blue: #0047ab;
  --green: #063b2e;
  --paper: #f7f8fb;
  --white: #ffffff;
  --ink: #090909;
  --muted: rgba(9, 9, 9, 0.66);
  --line: rgba(9, 9, 9, 0.14);
  --shell: min(940px, calc(100vw - 40px));
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.98), rgba(247,248,251,.9) 55%, rgba(255,255,255,.98)),
    linear-gradient(145deg, rgba(229,9,20,.07), transparent 32%, rgba(0,71,171,.07) 72%, rgba(6,59,46,.05));
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration-color: rgba(229, 9, 20, 0.38);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--red);
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.trust-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(9, 9, 9, 0.08);
  background: rgba(247, 248, 251, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-nav,
.trust-footer-inner {
  width: var(--shell);
  margin: 0 auto;
}

.trust-nav {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.trust-brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}

.trust-main {
  width: var(--shell);
  margin: 0 auto;
  padding: 72px 0 92px;
}

.trust-hero {
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
}

.lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65;
}

.updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-content {
  display: grid;
  gap: 14px;
  padding-top: 38px;
}

.trust-content section,
.contact-card,
.notice {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 56px rgba(12, 19, 32, 0.07);
}

.trust-content h2 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.16;
}

.trust-content h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.trust-content p,
.trust-content ul {
  margin: 10px 0 0;
  color: var(--muted);
}

.trust-content strong {
  color: var(--ink);
}

.trust-content li + li {
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 38px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-card h2,
.contact-card p {
  margin: 0;
}

.contact-card a {
  overflow-wrap: anywhere;
  color: var(--red);
  font-weight: 800;
}

.notice {
  margin-top: 14px;
  border-color: rgba(0, 71, 171, 0.18);
}

.trust-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.trust-footer-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trust-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

@media (max-width: 700px) {
  .trust-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .trust-links {
    justify-content: flex-start;
  }

  .trust-main {
    padding: 52px 0 70px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-content section,
  .contact-card,
  .notice {
    padding: 22px;
  }

  .trust-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 0;
  }

  .trust-footer nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
