:root {
  --trust-bg: #06060e;
  --trust-panel: #0e0e14;
  --trust-panel-strong: #14141c;
  --trust-line: rgba(255, 255, 255, 0.1);
  --trust-line-strong: rgba(255, 255, 255, 0.17);
  --trust-text: #ffffff;
  --trust-muted: rgba(255, 255, 255, 0.68);
  --trust-faint: rgba(255, 255, 255, 0.42);
  --trust-accent: #ffffff;
  --trust-green: #68e2a7;
  --trust-display: 'Plus Jakarta Sans', sans-serif;
  --trust-body: 'DM Sans', sans-serif;
  --trust-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--trust-bg);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.055), transparent 34rem),
    var(--trust-bg);
  color: var(--trust-text);
  font-family: var(--trust-body);
}

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

button,
summary {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--trust-accent);
  outline-offset: 4px;
}

.trust-grid {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 18%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 18%, black 20%, transparent 80%);
}

main,
.trust-footer {
  position: relative;
  z-index: 1;
}

.trust-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  padding: 16px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(11, 11, 16, 0.92), rgba(11, 11, 16, 0.55));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-12px);
  animation: trustNavIn 0.7s var(--trust-ease) 0.15s forwards;
}

@keyframes trustNavIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
}

.trust-logo img {
  display: block;
  width: auto;
  height: 28px;
  object-fit: contain;
}

.trust-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-nav a {
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease;
}

.trust-nav a:hover,
.trust-nav a.is-active {
  color: var(--trust-text);
}

.trust-nav a.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  content: '';
}

.trust-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--trust-text);
  color: #08080d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    transform 180ms var(--trust-ease),
    box-shadow 180ms ease;
}

.trust-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(255, 255, 255, 0.15);
}

.trust-menu-button,
.trust-mobile-menu {
  display: none;
}

.trust-hero {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  padding: 168px 24px 112px;
  overflow: hidden;
  border-bottom: 1px solid var(--trust-line);
}

.trust-hero::before {
  position: absolute;
  top: 7%;
  left: 50%;
  width: min(900px, 88vw);
  height: min(900px, 88vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.07) 0,
    rgba(255, 255, 255, 0.025) 36%,
    transparent 67%
  );
  filter: blur(4px);
  content: '';
  transform: translateX(-50%);
}

.trust-hero-orbit {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
}

.trust-hero-orbit-one {
  top: 110px;
  width: min(720px, 84vw);
  height: min(720px, 84vw);
}

.trust-hero-orbit-two {
  top: 24px;
  width: min(960px, 112vw);
  height: min(960px, 112vw);
  border-color: rgba(255, 255, 255, 0.055);
}

.trust-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
}

.trust-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(104, 226, 167, 0.23);
  border-radius: 999px;
  background: rgba(104, 226, 167, 0.055);
  color: rgba(215, 255, 234, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.trust-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--trust-green);
  box-shadow: 0 0 12px rgba(104, 226, 167, 0.85);
}

.trust-eyebrow {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.trust-hero h1 {
  margin-top: 20px;
  font-family: var(--trust-display);
  font-size: clamp(58px, 8.6vw, 112px);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.trust-hero h1 em {
  background: linear-gradient(125deg, #ffffff 10%, #dedee3 55%, #a8a8b0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: inherit;
  font-style: normal;
}

.trust-hero-copy {
  max-width: 690px;
  margin: 30px auto 0;
  color: var(--trust-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.trust-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.trust-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms var(--trust-ease),
    background 180ms ease,
    border-color 180ms ease;
}

.trust-button:hover {
  transform: translateY(-2px);
}

.trust-button-primary {
  background: var(--trust-text);
  color: #08080d;
}

.trust-button-secondary {
  border-color: var(--trust-line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--trust-text);
}

.trust-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: -48px auto 0;
  border: 1px solid var(--trust-line);
  border-radius: 20px;
  background: rgba(13, 13, 22, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.trust-stat {
  min-height: 194px;
  padding: 29px 28px;
  border-right: 1px solid var(--trust-line);
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat p {
  color: var(--trust-faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.trust-stat strong {
  display: block;
  margin-top: 20px;
  font-family: var(--trust-display);
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.trust-stat span {
  display: block;
  margin-top: 10px;
  color: var(--trust-muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 144px 24px 0;
}

.trust-section-heading {
  max-width: 680px;
}

.trust-section-heading h2,
.trust-faq-heading h2,
.trust-pack-cta h2 {
  margin-top: 17px;
  font-family: var(--trust-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.trust-section-heading > p:last-child,
.trust-faq-heading > p:last-child,
.trust-pack-cta > div > p:last-child {
  margin-top: 20px;
  color: var(--trust-muted);
  font-size: 17px;
  line-height: 1.65;
}

.trust-document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--trust-line);
  border-radius: 20px;
}

.trust-document-card {
  position: relative;
  min-height: 312px;
  padding: 30px;
  border-right: 1px solid var(--trust-line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.035), transparent 55%),
    var(--trust-panel);
  transition:
    background 220ms ease,
    transform 220ms var(--trust-ease);
}

.trust-document-card:last-child {
  border-right: 0;
}

.trust-document-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: '';
  opacity: 0;
  transition: opacity 220ms ease;
}

.trust-document-card:hover {
  z-index: 2;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 58%),
    var(--trust-panel-strong);
}

.trust-document-card:hover::after {
  opacity: 1;
}

.trust-document-card > span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid var(--trust-line);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-document-card h3 {
  margin-top: 30px;
  font-family: var(--trust-display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.trust-document-card p {
  margin-top: 13px;
  color: var(--trust-muted);
  font-size: 14px;
  line-height: 1.58;
}

.trust-document-card strong {
  position: absolute;
  bottom: 28px;
  left: 30px;
  color: var(--trust-text);
  font-size: 13px;
  font-weight: 600;
}

.trust-document-card strong span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms var(--trust-ease);
}

.trust-document-card:hover strong span {
  transform: translate(2px, -2px);
}

.trust-faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
  max-width: none;
  padding: 130px max(24px, calc((100vw - 1192px) / 2));
  border-top: 1px solid var(--trust-line);
  border-bottom: 1px solid var(--trust-line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-faq-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.trust-faq-heading h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.trust-faq-list {
  border-top: 1px solid var(--trust-line-strong);
}

.trust-faq-item {
  border-bottom: 1px solid var(--trust-line-strong);
}

.trust-faq-item summary {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  color: var(--trust-text);
  cursor: pointer;
  font-family: var(--trust-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  list-style: none;
}

.trust-faq-item summary::-webkit-details-marker {
  display: none;
}

.trust-faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
}

.trust-faq-plus::before,
.trust-faq-plus::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  background: var(--trust-muted);
  content: '';
  transition: transform 180ms ease;
}

.trust-faq-plus::after {
  transform: rotate(90deg);
}

.trust-faq-item[open] .trust-faq-plus::after {
  transform: rotate(0);
}

.trust-faq-item > div {
  padding: 0 45px 24px 0;
}

.trust-faq-item p {
  color: var(--trust-muted);
  font-size: 15px;
  line-height: 1.7;
}

.trust-pack-cta {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  max-width: 1192px;
  margin: 130px auto 0;
  padding: 60px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--trust-panel);
}

.trust-pack-cta h2 {
  max-width: 620px;
  font-size: clamp(36px, 4.3vw, 58px);
}

.trust-pack-contact {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 42px;
  border-left: 1px solid var(--trust-line-strong);
}

.trust-pack-contact span {
  color: var(--trust-faint);
  font-size: 13px;
}

.trust-pack-contact strong {
  margin-top: 18px;
  font-family: var(--trust-display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.trust-pack-contact strong + span {
  margin-top: 4px;
}

.trust-pack-contact a {
  margin-top: 25px;
  color: var(--trust-text);
  font-size: 14px;
  font-weight: 700;
}

.trust-disclaimer {
  max-width: 1192px;
  margin: 24px auto 120px;
  color: var(--trust-faint);
  font-size: 12px;
  text-align: center;
}

.legal-hero {
  padding: 156px 24px 76px;
  border-bottom: 1px solid var(--trust-line);
}

.legal-hero-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 60px;
  color: var(--trust-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color 160ms ease;
}

.legal-back:hover {
  color: var(--trust-text);
}

.legal-hero h1 {
  max-width: 880px;
  margin-top: 17px;
  font-family: var(--trust-display);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 1;
}

.legal-intro {
  max-width: 760px;
  margin-top: 25px;
  color: var(--trust-muted);
  font-size: 19px;
  line-height: 1.68;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  margin-top: 32px;
  color: var(--trust-faint);
  font-size: 12px;
}

.legal-meta button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--trust-muted);
  cursor: pointer;
}

.legal-meta button:hover {
  color: var(--trust-text);
}

.legal-hero-notice {
  max-width: 790px;
  margin-top: 38px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 78px 24px 130px;
}

.legal-toc {
  position: sticky;
  top: 108px;
  align-self: start;
  max-height: calc(100vh - 140px);
  overflow: auto;
}

.legal-toc > p {
  margin-bottom: 15px;
  color: var(--trust-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc ol,
.legal-toc-mobile ol {
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.legal-toc a,
.legal-toc-mobile a {
  display: block;
  padding: 7px 0;
  color: var(--trust-faint);
  font-size: 12px;
  line-height: 1.42;
  transition: color 150ms ease;
}

.legal-toc a:hover,
.legal-toc-mobile a:hover {
  color: var(--trust-text);
}

.legal-toc-mobile {
  display: none;
}

.legal-document {
  min-width: 0;
}

.legal-section {
  padding-bottom: 41px;
  border-bottom: 1px solid var(--trust-line);
}

.legal-section + .legal-section {
  padding-top: 50px;
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 22px;
  font-family: var(--trust-display);
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-section h3 {
  margin: 28px 0 12px;
  font-family: var(--trust-display);
  font-size: 18px;
  font-weight: 650;
}

.legal-section p,
.legal-section li,
.legal-section dd {
  color: var(--trust-muted);
  font-size: 15.5px;
  line-height: 1.76;
}

.legal-section p + p {
  margin-top: 16px;
}

.legal-section ul,
.legal-section ol {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 17px;
  padding-left: 22px;
}

.legal-section p + ul,
.legal-section p + ol {
  margin-top: 15px;
}

.legal-section li::marker {
  color: rgba(255, 255, 255, 0.62);
}

.legal-section strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.legal-section em {
  color: rgba(255, 255, 255, 0.84);
}

.legal-section a,
.legal-callout a,
.legal-end-note a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.legal-section a:hover,
.legal-callout a:hover,
.legal-end-note a:hover {
  text-decoration-color: currentColor;
}

.legal-callout {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--trust-muted);
  font-size: 14px;
  line-height: 1.62;
}

.legal-callout > strong {
  color: var(--trust-text);
}

.legal-callout p {
  margin-top: 8px;
}

.legal-emphasis {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.65);
}

.legal-definitions {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 19px 24px;
}

.legal-definitions dt {
  color: var(--trust-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.legal-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--trust-line);
  border-radius: 12px;
}

.legal-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table-wrap th,
.legal-table-wrap td {
  min-width: 150px;
  padding: 15px 16px;
  border-right: 1px solid var(--trust-line);
  border-bottom: 1px solid var(--trust-line);
  color: var(--trust-muted);
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  width: 185px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--trust-text);
  font-weight: 600;
}

.legal-table-wrap thead th {
  width: auto;
  min-width: 145px;
  color: var(--trust-text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-table-wrap tr:last-child th,
.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-table-wrap th:last-child,
.legal-table-wrap td:last-child {
  border-right: 0;
}

.legal-table-wide {
  width: calc(100vw - 350px);
  max-width: 1000px;
}

.legal-checklist {
  padding-left: 0 !important;
  list-style: none;
}

.legal-checklist li {
  position: relative;
  padding-left: 24px;
}

.legal-checklist li::before {
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.28);
  content: '';
}

.legal-end-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1020px;
  margin: -48px auto 110px;
  padding: 27px 30px;
  border: 1px solid var(--trust-line);
  border-radius: 14px;
  background: var(--trust-panel);
}

.legal-end-note p {
  max-width: 760px;
  color: var(--trust-muted);
  font-size: 13px;
  line-height: 1.6;
}

.legal-end-note a {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
}

.trust-footer {
  padding: 72px max(24px, calc((100vw - 1192px) / 2)) 32px;
  border-top: 1px solid var(--trust-line);
  background: rgba(0, 0, 0, 0.27);
}

.trust-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--trust-line);
}

.trust-footer-brand img {
  display: block;
  width: auto;
  height: 30px;
}

.trust-footer-brand p {
  max-width: 290px;
  margin-top: 17px;
  color: var(--trust-faint);
  font-size: 14px;
  line-height: 1.55;
}

.trust-footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-footer h2 {
  margin-bottom: 5px;
  color: var(--trust-text);
  font-family: var(--trust-display);
  font-size: 13px;
  font-weight: 650;
}

.trust-footer-grid a,
.trust-footer-bottom {
  color: var(--trust-faint);
  font-size: 13px;
}

.trust-footer-grid a:hover,
.trust-footer-bottom a:hover {
  color: var(--trust-text);
}

.trust-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
}

@media (max-width: 1050px) {
  .trust-stats {
    max-width: calc(100vw - 48px);
  }

  .trust-document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-document-card:nth-child(2) {
    border-right: 0;
  }

  .trust-document-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--trust-line);
  }

  .trust-faq-section {
    gap: 55px;
  }

  .trust-pack-cta {
    max-width: calc(100vw - 48px);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .trust-header {
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    padding: 10px 14px 10px 18px;
    gap: 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(11, 11, 16, 0.95), rgba(11, 11, 16, 0.75));
    transform: translateY(0);
  }

  .trust-logo {
    margin-right: 0;
  }

  .trust-logo img {
    height: 24px;
  }

  .trust-nav,
  .trust-header-cta {
    display: none;
  }

  .trust-menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .trust-menu-button span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--trust-text);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .trust-menu-button[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .trust-menu-button[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .trust-menu-button[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .trust-mobile-menu {
    position: fixed;
    z-index: 99;
    top: 56px;
    right: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(8, 8, 14, 0.92);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 240ms var(--trust-ease),
      transform 240ms var(--trust-ease);
  }

  .trust-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .trust-mobile-menu a {
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }

  .trust-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--trust-text);
  }

  .trust-mobile-menu a.is-active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--trust-text);
  }

  .trust-mobile-menu .trust-mobile-cta {
    margin-top: 4px;
    padding: 14px 16px;
    background: var(--trust-text);
    color: #08080d;
    font-weight: 700;
    letter-spacing: 0.005em;
    text-align: center;
  }

  .trust-hero {
    min-height: 680px;
    padding-top: 135px;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -35px;
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--trust-line);
  }

  .trust-section {
    padding-top: 110px;
  }

  .trust-faq-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .trust-faq-heading {
    position: static;
  }

  .trust-pack-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 100px;
    padding: 40px;
  }

  .trust-pack-contact {
    padding-top: 35px;
    padding-left: 0;
    border-top: 1px solid var(--trust-line-strong);
    border-left: 0;
  }

  .legal-hero {
    padding-top: 125px;
  }

  .legal-layout {
    display: block;
    padding-top: 40px;
  }

  .legal-toc {
    display: none;
  }

  .legal-toc-mobile {
    display: block;
    margin-bottom: 48px;
    padding: 15px 17px;
    border: 1px solid var(--trust-line);
    border-radius: 12px;
    background: var(--trust-panel);
  }

  .legal-toc-mobile summary {
    color: var(--trust-text);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
  }

  .legal-toc-mobile ol {
    margin-top: 14px;
  }

  .legal-table-wide {
    width: 100%;
  }

  .trust-footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .trust-logo img {
    height: 24px;
  }

  .trust-hero {
    min-height: 640px;
    padding: 122px 20px 96px;
  }

  .trust-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }

  .trust-hero-copy {
    font-size: 16px;
  }

  .trust-hero-actions {
    flex-direction: column;
  }

  .trust-button {
    width: 100%;
  }

  .trust-stats {
    max-width: calc(100vw - 28px);
    border-radius: 16px;
  }

  .trust-stat {
    min-height: 173px;
    padding: 23px 20px;
  }

  .trust-stat strong {
    font-size: 23px;
  }

  .trust-stat span {
    font-size: 12.5px;
  }

  .trust-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust-document-grid {
    grid-template-columns: 1fr;
  }

  .trust-document-card {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid var(--trust-line);
  }

  .trust-document-card:nth-child(3) {
    border-bottom: 1px solid var(--trust-line);
  }

  .trust-document-card:last-child {
    border-bottom: 0;
  }

  .trust-faq-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .trust-faq-item summary {
    font-size: 15px;
  }

  .trust-pack-cta {
    max-width: calc(100vw - 28px);
    padding: 30px 24px;
    border-radius: 18px;
  }

  .trust-disclaimer {
    padding: 0 20px;
  }

  .legal-hero {
    padding: 112px 20px 55px;
  }

  .legal-back {
    margin-bottom: 42px;
  }

  .legal-intro {
    font-size: 16px;
  }

  .legal-layout {
    padding: 28px 20px 110px;
  }

  .legal-section h2 {
    font-size: 23px;
  }

  .legal-section p,
  .legal-section li,
  .legal-section dd {
    font-size: 15px;
  }

  .legal-definitions {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .legal-definitions dd + dt {
    margin-top: 14px;
  }

  .legal-end-note {
    display: block;
    margin: -62px 16px 80px;
  }

  .legal-end-note a {
    display: inline-block;
    margin-top: 15px;
  }

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

  .trust-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .trust-footer-brand {
    grid-column: 1 / -1;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    --trust-text: #111;
    --trust-muted: #333;
    --trust-faint: #555;
    --trust-line: #ddd;
  }

  body {
    background: #fff;
    color: #111;
  }

  .trust-grid,
  .trust-header,
  .trust-footer,
  .legal-back,
  .legal-meta button,
  .legal-toc,
  .legal-toc-mobile,
  .legal-end-note {
    display: none !important;
  }

  .legal-hero {
    padding: 20px 0 35px;
    border-bottom: 1px solid #ddd;
  }

  .legal-hero h1,
  .legal-section h2,
  .legal-section h3,
  .legal-section strong,
  .legal-section em,
  .legal-definitions dt,
  .legal-table-wrap th {
    color: #111;
  }

  .legal-layout {
    display: block;
    max-width: none;
    padding: 35px 0;
  }

  .legal-section {
    break-inside: avoid;
  }

  .legal-section p,
  .legal-section li,
  .legal-section dd,
  .legal-table-wrap td {
    color: #333;
  }

  .legal-callout {
    border-color: #bbb;
    background: #f5f5f5;
  }

  .legal-table-wrap,
  .legal-table-wrap th,
  .legal-table-wrap td {
    border-color: #bbb;
  }

  .legal-table-wide {
    width: 100%;
  }

  a {
    color: #111 !important;
    text-decoration: none !important;
  }
}
