:root {
  --blue: #278ff0;
  --ink: #090909;
  --muted: #5f6266;
  --line: #e8e9eb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fcfcfc;
  color: #1a1a1a;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
a { color: inherit; }
.site-container {
  width: min(1664px, calc(100% - 48px));
  margin: 0 auto;
}
.site-header {
  height: 90px;
  border-bottom: 1px solid #e9e9e9;
  box-shadow: 0 2px 8px rgba(0,0,0,.035);
  background: rgba(255,255,255,.98);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: none;
  color: #0a0a0a;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.7px;
  cursor: pointer;
  text-decoration: none;
}
.legal-page {
  padding: 51px 0 90px;
  max-width: 820px;
}
.legal-page h1 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.legal-updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 14px;
}
.legal-page h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  font-weight: 800;
}
.legal-page p,
.legal-page li {
  color: #4f5862;
  font-size: 16px;
  line-height: 1.65;
}
.legal-page ul,
.legal-page ol {
  margin: 12px 0;
  padding-left: 24px;
}
.legal-page li + li { margin-top: 8px; }
.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}
.site-footer {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 13px;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 20px;
}
.footer-legal-links a {
  color: #5f6266;
  font-size: 14px;
  text-decoration: underline;
}
.footer-requisites {
  margin-bottom: 16px;
  color: #777;
  line-height: 1.7;
}
.footer-requisites p { margin: 0; }
.footer-disclaimer { margin: 0; color: #999; line-height: 1.55; }

@media (max-width: 700px) {
  .site-container { width: calc(100% - 36px); }
  .site-header { height: 68px; }
  .brand { font-size: 24px; }
  .legal-page { padding: 30px 0 55px; }
  .legal-page h1 { font-size: 28px; }
}
