
  :root {
    --bg-deep: #050608;
    --bg-soft: #0a0c10;
    --bg-elev: #0f1218;
    --line: rgba(255,255,255,0.06);
    --line-strong: rgba(255,255,255,0.12);
    --text: #e8eaed;
    --text-dim: #8b8f96;
    --text-faint: #5a5e66;
    --accent: #4d7cff;
    --accent-glow: #6b8fff;
    --accent-deep: #1e3a8a;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-deep);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(77,124,255,0.12), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    backdrop-filter: blur(20px);
    background: rgba(5,6,8,0.7);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo-img { height: 39px; width: auto; display: block; }
  .nav-back {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }
  .nav-back:hover { color: var(--text); }

  .legal-hero {
    padding: 180px 0 60px;
    text-align: center;
  }
  .legal-meta {
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 24px;
  }
  h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
  }
  h1 em { font-style: italic; color: var(--accent-glow); }
  .legal-subtitle {
    color: var(--text-dim);
    font-size: 17px;
    max-width: 580px;
    margin: 0 auto 16px;
  }
  .legal-update {
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
    letter-spacing: 0.1em;
  }

  .legal-content {
    padding: 60px 0 140px;
  }

  .legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 56px 0 20px;
    color: var(--text);
  }
  .legal-content h2:first-of-type { margin-top: 0; }

  .legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin: 32px 0 14px;
    color: var(--text);
  }

  .legal-content p {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .legal-content p strong {
    color: var(--text);
    font-weight: 500;
  }

  .legal-content ul {
    list-style: none;
    margin: 18px 0;
    padding-left: 0;
  }
  .legal-content ul li {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
  }
  .legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 1px;
    background: var(--accent);
  }

  .legal-content a {
    color: var(--accent-glow);
    text-decoration: none;
    border-bottom: 1px solid rgba(107,143,255,0.3);
    transition: border-color 0.2s;
  }
  .legal-content a:hover {
    border-color: var(--accent-glow);
  }

  .legal-toc {
    background: rgba(15,18,24,0.5);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0 60px;
    backdrop-filter: blur(10px);
  }
  .legal-toc h4 {
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .legal-toc ol {
    list-style: none;
    counter-reset: toc;
    columns: 2;
    column-gap: 32px;
  }
  .legal-toc li {
    counter-increment: toc;
    padding: 6px 0 6px 28px;
    position: relative;
    break-inside: avoid;
  }
  .legal-toc li::before {
    content: counter(toc, decimal-leading-zero);
    position: absolute;
    left: 0;
    color: var(--text-faint);
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 11px;
    top: 9px;
  }
  .legal-toc a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    border-bottom: none;
  }
  .legal-toc a:hover { color: var(--text); }

  .info-box {
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: 28px 32px;
    margin: 32px 0;
    background: rgba(77,124,255,0.04);
  }
  .info-box h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text);
  }
  .info-box p {
    margin-bottom: 8px;
    font-size: 15px;
  }
  .info-box p:last-child { margin-bottom: 0; }

  footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
    text-align: center;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Geist Mono', 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--text-faint);
  }
  footer a {
    color: var(--text-faint);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.2s;
  }
  footer a:hover { color: var(--text); }

  @media (max-width: 700px) {
    .legal-toc ol { columns: 1; }
    .container { padding: 0 20px; }
  }
