nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px; height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 22px; width: auto; display: block; }
nav a.back { font-size: 14px; font-weight: 600; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
nav a.back:hover { color: var(--text); }

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 56px 80px;
}
.legal h1 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.legal .updated {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  margin-bottom: 48px;
}
.legal h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal p, .legal li {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.legal ul {
  list-style: none;
  padding-left: 0;
}
.legal ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.legal a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.legal a:hover {
  text-decoration: underline;
}

footer {
  padding: 22px 56px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; }
.footer-logo img { height: 22px; width: auto; display: block; }
.footer-copy { font-size: 14px; font-weight: 500; color: var(--text-dim); }

@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .legal { padding: 120px 28px 60px; }
  footer { padding: 20px 28px; flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0 18px; }
  .legal { padding: 108px 20px 48px; }
  footer { padding: 18px 20px; }
}
