/* Правовые страницы REWORK (/legal/*) — публичные, статика, ноль запросов на бэк.
   Тёмная тема лендинга: фон #08111C, акцент #8B5CF6 → #EC4899, шрифт Inter. */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(180deg, #0D1B2A 0%, #08111C 100%);
  color: #E2E8F0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }

header.top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.brand { font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.85); text-decoration: none; }
.back { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.back:hover { color: #F9A8D4; }

h1 { margin: 36px 0 6px; font-size: 30px; line-height: 1.2; font-weight: 700; color: #F1F5F9; }
.rev { margin: 0 0 32px; font-size: 13px; color: rgba(255,255,255,0.4); }
h2 { margin: 38px 0 12px; font-size: 18px; font-weight: 600; color: #F1F5F9; }
p, li { color: rgba(226,232,240,0.82); }
p { margin: 0 0 12px; }
ol.doc { counter-reset: sec; list-style: none; margin: 0; padding: 0; }
ul { margin: 0 0 12px; padding-left: 20px; }
li { margin: 0 0 8px; }
a { color: #F9A8D4; }
strong { color: #F1F5F9; font-weight: 600; }

.note {
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.note p:last-child { margin-bottom: 0; }

.req { margin-top: 40px; padding: 22px 24px; border-radius: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.req dl { display: grid; grid-template-columns: 200px 1fr; gap: 8px 20px; margin: 0; }
.req dt { color: rgba(255,255,255,0.45); font-size: 13px; }
.req dd { margin: 0; color: #F1F5F9; }

footer.bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; gap: 24px; flex-wrap: wrap; }
footer.bottom a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: rgba(255,255,255,0.5); text-decoration: none; }
footer.bottom a:hover { color: #F9A8D4; }

@media (max-width: 640px) {
  .wrap { padding: 28px 18px 60px; }
  h1 { font-size: 25px; }
  .req dl { grid-template-columns: 1fr; gap: 2px 0; }
  .req dd { margin-bottom: 10px; }
}
