:root {
  --bg-0: #020617;
  --bg-1: #0F172A;
  --bg-2: #1E293B;
  --line: #334155;
  --text: #FFFFFF;
  --muted: #94A3B8;
  --dim: #64748B;
  --brand: #2A6CF1;
  --brand-soft: rgba(42,108,241,0.12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg-0);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(2,6,23,0.85);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1120px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); }
.logo:hover { text-decoration: none; }
.logo-dot { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; display: grid; place-items: center; }
.logo-dot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.back { color: var(--muted); font-size: 14px; }

.wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.legal { padding: 48px 0 80px; }
.legal h1 { font-size: 34px; line-height: 1.15; margin: 0 0 8px; letter-spacing: -0.01em; }
.legal .updated { color: var(--dim); font-size: 14px; margin: 0 0 32px; }
.legal-text { white-space: pre-wrap; color: #E2E8F0; font-size: 15px; line-height: 1.7; }
.legal hr.div { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
.legal .toplink { display: inline-block; margin-top: 36px; font-weight: 600; }

footer { border-top: 1px solid var(--line); padding: 32px 0; color: var(--dim); font-size: 14px; }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

@media (max-width: 600px) { .legal h1 { font-size: 26px; } }
