:root {
  --bg: #141412;
  --bg-elevated: #1B1B18;
  --border: #312F29;
  --border-soft: #242420;
  --accent: #A6E100;
  --text-primary: #F4F3EC;
  --text-secondary: #9C9A8E;
  --text-tertiary: #6C6A60;
  --mono: 'JetBrains Mono', monospace;
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.trust-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.trust-header {
  border-bottom: 1px solid var(--border-soft);
}

.trust-header-inner,
.trust-main,
.trust-footer-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-right: 32px;
  padding-left: 32px;
}

.trust-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.trust-logo img {
  width: 142px;
  height: auto;
}

.trust-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-secondary);
  font-size: 13px;
}

.trust-nav a,
.trust-footer a {
  transition: color .2s ease;
}

.trust-nav a:hover,
.trust-nav a:focus-visible,
.trust-footer a:hover,
.trust-footer a:focus-visible {
  color: var(--accent);
}

.trust-main {
  flex: 1;
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(80px, 10vw, 128px);
}

.trust-content {
  max-width: 780px;
  margin: 0 auto;
}

.trust-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-kicker::before,
.trust-kicker::after {
  width: 18px;
  height: 18px;
  flex: none;
  content: '';
  background: center / contain no-repeat;
}

.trust-kicker::before {
  background-image: url('/brand/kicker-left.svg');
}

.trust-kicker::after {
  background-image: url('/brand/kicker-right.svg');
}

.trust-content h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.trust-lede {
  max-width: 680px;
  margin: 0 0 52px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.65;
}

.trust-content h2 {
  margin: 52px 0 18px;
  color: var(--text-primary);
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.025em;
  line-height: 1.1;
}

.trust-content h2:first-of-type {
  margin-top: 0;
}

.trust-content p,
.trust-content li {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.trust-content p {
  margin: 0 0 20px;
}

.trust-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.trust-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.trust-content li::marker {
  color: var(--accent);
}

.trust-cta {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.trust-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
}

.trust-cta p {
  margin-bottom: 24px;
}

.trust-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  background: var(--accent);
  color: #101002;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.trust-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(166,225,0,.22);
}

.trust-button svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.trust-footer {
  border-top: 1px solid var(--border-soft);
  padding: 52px 0 30px;
}

.trust-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.trust-footer-brand {
  max-width: 280px;
}

.trust-footer-brand img {
  width: 142px;
}

.trust-footer-brand p {
  margin: 14px 0 0;
  color: var(--text-tertiary);
  font-size: 14px;
  line-height: 1.6;
}

.trust-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.trust-footer-col h2 {
  margin: 0 0 18px;
  color: var(--text-tertiary);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.trust-footer-col a {
  display: block;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 14.5px;
}

.trust-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-tertiary);
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .trust-header-inner,
  .trust-main,
  .trust-footer-inner {
    padding-right: 22px;
    padding-left: 22px;
  }

  .trust-header-inner {
    min-height: 68px;
  }

  .trust-logo img,
  .trust-footer-brand img {
    width: 126px;
  }

  .trust-nav {
    gap: 14px;
    font-size: 11px;
  }

  .trust-nav a:nth-child(n+2) {
    display: none;
  }

  .trust-main {
    padding-top: 72px;
    padding-bottom: 80px;
  }

  .trust-content h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .trust-lede {
    margin-bottom: 42px;
    font-size: 17px;
  }

  .trust-content p,
  .trust-content li {
    font-size: 15px;
  }

  .trust-cta {
    padding: 24px;
  }

  .trust-button {
    max-width: 100%;
    white-space: normal;
  }

  .trust-footer {
    padding-top: 42px;
  }

  .trust-footer-top {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .trust-footer-cols {
    gap: 32px 42px;
  }

  .trust-footer-bottom {
    flex-direction: column;
  }
}
