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

    :root {
      --bg:        #0a0b11;
      --surface:   #141520;
      --surface2:  #1a1b26;
      --border:    #252636;
      --accent:    #8b5cf6;
      --text:      #e8e8ed;
      --muted:     #5a5a6e;
      --label:     #8a8a9e;
      --radius:    12px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--bg);
      border-bottom: 1px solid rgba(37, 38, 54, 0.4);
    }
    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      height: 56px;
      padding: 0 16px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 44px;
      width: auto;
      border-radius: 50%;
    }
    .nav-links {
      display: flex;
      align-items: center;
      justify-self: center;
      gap: 20px;
    }
    .nav-link {
      font-size: 14px;
      color: var(--label);
      text-decoration: none;
      font-weight: 500;
      padding: 6px 12px;
      border-radius: 6px;
      transition: color 0.15s;
    }
    .nav-link:hover,
    .nav-link.active { color: var(--text); }
    .nav-right {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 7px;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.15s, background 0.15s;
      border: none;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--accent);
      color: #fff;
    }
    .btn-primary:hover { opacity: 0.9; }
    .btn-ghost {
      background: transparent;
      color: var(--label);
      border: 1px solid var(--border);
    }
    .btn-ghost:hover { color: var(--text); border-color: #4a4a5a; }

    .trust-page {
      padding: 80px 0 100px;
      max-width: 860px;
      margin: 0 auto;
    }
    .eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }
    .trust-page h1 {
      font-size: clamp(34px, 6vw, 56px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-bottom: 18px;
    }
    .lead {
      font-size: 18px;
      color: var(--label);
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .scope-note {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 36px;
    }
    .toc {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 16px;
      padding: 20px;
      margin: 36px 0 52px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--surface);
    }
    .toc a {
      color: var(--label);
      font-size: 14px;
      text-decoration: none;
    }
    .toc a:hover { color: var(--text); }
    .trust-page h2 {
      font-size: 22px;
      font-weight: 600;
      margin-top: 44px;
      margin-bottom: 14px;
      color: var(--text);
    }
    .trust-page p,
    .trust-page li {
      font-size: 15px;
      color: var(--label);
      line-height: 1.78;
      margin-bottom: 16px;
    }
    .trust-page ul {
      padding-left: 24px;
      margin-bottom: 16px;
    }
    .trust-page li { margin-bottom: 8px; }
    .trust-page a {
      color: var(--accent);
      text-decoration: none;
    }
    .trust-page a:hover { text-decoration: underline; }
    .trust-page strong {
      color: var(--text);
      font-weight: 600;
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 28px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-logo { font-size: 15px; font-weight: 700; color: var(--text); text-decoration: none; }
    .footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
    .footer-link { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.15s; }
    .footer-link:hover { color: var(--label); }
    .footer-copy { font-size: 12px; color: var(--muted); }

    @media (max-width: 768px) {
      .trust-page { padding: 52px 0 72px; }
      .nav-inner { display: flex; justify-content: space-between; }
      .nav-links { display: none; }
      .nav-right { gap: 8px; }
      .nav-right .btn-ghost { display: none; }
      .toc { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
