@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@500;600;700&display=swap');

:root {
  --rs-navy: #0d1b2a;
  --rs-navy-2: #143451;
  --rs-ocean: #2e6f95;
  --rs-gold: #d9a441;
  --rs-gold-dark: #ae7c20;
  --rs-sand: #e9ddc8;
  --rs-ivory: #f7f3ec;
  --rs-white: #ffffff;
  --rs-charcoal: #1a1a1a;
  --rs-muted: #5d6873;
  --rs-line: rgba(13, 27, 42, .13);
  --rs-shadow: 0 22px 70px rgba(13, 27, 42, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.trust-page {
  margin: 0;
  background: var(--rs-ivory);
  color: var(--rs-navy);
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.trust-page a { color: inherit; }
body.trust-page img { max-width: 100%; }
body.trust-page h1,
body.trust-page h2,
body.trust-page h3,
body.trust-page p { margin-top: 0; }
body.trust-page button,
body.trust-page input,
body.trust-page textarea,
body.trust-page select { font: inherit; }
body.trust-page :focus-visible { outline: 3px solid rgba(217, 164, 65, .75); outline-offset: 4px; }

.trust-shell { min-height: 100vh; }
.trust-container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.trust-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--rs-line);
  background: rgba(247, 243, 236, .95);
  backdrop-filter: blur(14px);
}
.trust-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: 15px;
}
.trust-logo {
  position: relative;
  width: 38px;
  height: 44px;
  display: inline-block;
}
.trust-logo::before {
  content: '';
  position: absolute;
  inset: 2px 2px 12px;
  border: 3px solid var(--rs-navy);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}
.trust-logo::after {
  content: '';
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 3px;
  height: 22px;
  background: repeating-linear-gradient(to bottom, var(--rs-ocean) 0 3px, transparent 3px 6px);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.trust-brand-dot {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 18px;
  border-radius: 50%;
  background: var(--rs-gold);
  transform: translate(-50%, -50%);
}
.trust-nav { display: flex; align-items: center; gap: 24px; }
.trust-nav a {
  text-decoration: none;
  color: var(--rs-navy);
  font-size: 13px;
  font-weight: 600;
}
.trust-nav a:hover { color: var(--rs-ocean); }
.trust-header-cta,
.trust-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: var(--rs-gold);
  color: var(--rs-navy);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}
.trust-header-cta:hover,
.trust-button:hover { background: #e2b252; }

.beta-banner {
  position: relative;
  z-index: 5;
  padding: 11px 20px;
  background: var(--rs-navy);
  color: var(--rs-white);
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
}
.beta-banner strong { color: #f3c568; }
.beta-banner a { color: #f3c568; font-weight: 700; }
.beta-chip {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 5px 8px;
  border: 1px solid rgba(217,164,65,.5);
  border-radius: 999px;
  background: rgba(217,164,65,.12);
  color: #8b6114;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  border-bottom: 1px solid var(--rs-line);
  background:
    radial-gradient(circle at 82% 22%, rgba(46, 111, 149, .18), transparent 34%),
    linear-gradient(135deg, #fffdf9, var(--rs-ivory));
}
.trust-hero::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 230px;
  right: -80px;
  bottom: -120px;
  opacity: .3;
  background: repeating-radial-gradient(ellipse at center, transparent 0 10px, rgba(46,111,149,.18) 11px 12px);
  transform: rotate(-8deg);
}
.trust-eyebrow {
  margin-bottom: 16px;
  color: var(--rs-gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.trust-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.trust-hero-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--rs-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.trust-status {
  display: inline-flex;
  margin-top: 28px;
  padding: 8px 12px;
  border: 1px solid rgba(217,164,65,.45);
  border-radius: 999px;
  background: rgba(217,164,65,.1);
  color: #7a5512;
  font-size: 12px;
  font-weight: 700;
}

.trust-main { padding: 64px 0 96px; }
.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 64px;
  align-items: start;
}
.trust-article {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--rs-line);
  border-radius: 14px;
  background: var(--rs-white);
  box-shadow: var(--rs-shadow);
}
.trust-article h2 {
  margin: 48px 0 16px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.trust-article h2:first-child { margin-top: 0; }
.trust-article h3 {
  margin: 30px 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  line-height: 1.3;
}
.trust-article p,
.trust-article li {
  color: #3f4d59;
  font-size: 16px;
  line-height: 1.75;
}
.trust-article ul,
.trust-article ol { padding-left: 22px; }
.trust-article li + li { margin-top: 8px; }
.trust-article a { color: var(--rs-ocean); font-weight: 650; }
.trust-callout {
  margin: 30px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--rs-gold);
  border-radius: 4px 10px 10px 4px;
  background: var(--rs-ivory);
}
.trust-callout strong { display: block; margin-bottom: 7px; color: var(--rs-navy); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.trust-card {
  padding: 22px;
  border: 1px solid var(--rs-line);
  border-radius: 10px;
  background: #fffdf9;
}
.trust-card h3 { margin-top: 0; }
.trust-card p:last-child { margin-bottom: 0; }
.trust-table-wrap { overflow-x: auto; margin: 26px 0; }
.trust-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.trust-table th,
.trust-table td { padding: 14px; border-bottom: 1px solid var(--rs-line); text-align: left; vertical-align: top; }
.trust-table th { background: var(--rs-ivory); color: var(--rs-navy); font-size: 13px; }
.trust-table td { color: #3f4d59; font-size: 14px; line-height: 1.55; }
.trust-code {
  overflow-x: auto;
  padding: 18px;
  border-radius: 8px;
  background: var(--rs-navy);
  color: #eef4f7;
  font: 13px/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.trust-sidebar {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--rs-line);
  border-radius: 12px;
  background: rgba(255,255,255,.74);
}
.trust-sidebar h2 {
  margin-bottom: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
}
.trust-sidebar > p { color: var(--rs-muted); font-size: 13px; line-height: 1.55; }
.trust-sidebar nav { display: grid; gap: 6px; margin-top: 18px; }
.trust-sidebar a {
  padding: 10px 11px;
  border-radius: 6px;
  text-decoration: none;
  color: #445361;
  font-size: 13px;
  font-weight: 600;
}
.trust-sidebar a:hover,
.trust-sidebar a[aria-current='page'] { background: var(--rs-navy); color: var(--rs-white); }

.trust-form { display: grid; gap: 18px; margin-top: 28px; }
.trust-form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.trust-form label { display: grid; gap: 8px; color: var(--rs-navy); font-size: 13px; font-weight: 700; }
.trust-form input,
.trust-form textarea,
.trust-form select {
  width: 100%;
  border: 1px solid rgba(13,27,42,.22);
  border-radius: 7px;
  background: var(--rs-white);
  color: var(--rs-charcoal);
  padding: 13px 14px;
}
.trust-form textarea { min-height: 150px; resize: vertical; }
.trust-form-note { color: var(--rs-muted); font-size: 12px !important; }

.trust-footer { padding: 54px 0; background: var(--rs-navy); color: var(--rs-white); }
.trust-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 42px; }
.trust-footer h2 { font-family: 'Sora', sans-serif; font-size: 22px; line-height: 1.35; }
.trust-footer h3 { margin-bottom: 15px; color: #dbe6ed; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.trust-footer a { display: block; margin: 9px 0; color: #c7d3dc; text-decoration: none; font-size: 13px; }
.trust-footer a:hover { color: var(--rs-gold); }
.trust-footer p { color: #9fb0bd; font-size: 12px; line-height: 1.6; }

@media (max-width: 900px) {
  .trust-nav { display: none; }
  .trust-layout { grid-template-columns: 1fr; gap: 30px; }
  .trust-sidebar { position: static; order: -1; }
  .trust-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .trust-container { width: min(100% - 28px, 1160px); }
  .trust-header-inner { min-height: 70px; }
  .trust-brand { font-size: 12px; letter-spacing: .12em; }
  .trust-logo { width: 31px; height: 37px; }
  .trust-header-cta { display: none; }
  .trust-hero { padding: 64px 0 54px; }
  .trust-main { padding: 34px 0 64px; }
  .trust-article { padding: 24px 20px; }
  .trust-grid,
  .trust-form-row,
  .trust-footer-grid { grid-template-columns: 1fr; }
  .trust-sidebar nav { grid-template-columns: 1fr; }
}
