/* Общий стиль юридических страниц. Палитра и типографика — те же, что
   на лендинге и в кабинете: документ должен читаться как часть продукта,
   а не как чужая простыня. Цвета проверены на контраст (≥4.5:1). */
*,*::before,*::after{ box-sizing:border-box; }
:root{
  --cream:#f6f1e8; --card:#fbf7ef; --deep:#efe6d8;
  --ink:#1a1a1a; --text-2:#5c584f; --faint:#87837a;
  --clay:#b66b5c; --clay-text:#8a4d41; --line:rgba(26,26,26,.12);
}
body{ margin:0; background:var(--cream); color:var(--ink);
  font-family:Inter,-apple-system,'Segoe UI',Roboto,Arial,sans-serif;
  font-size:16px; line-height:1.65; -webkit-font-smoothing:antialiased; }
a{ color:var(--clay-text); }

.nav{ position:sticky; top:0; z-index:10; background:rgba(246,241,232,.93);
  backdrop-filter:saturate(140%) blur(10px); border-bottom:1px solid var(--line); }
.nav-in{ max-width:820px; margin:0 auto; padding:14px 24px; display:flex; align-items:center; gap:10px; }
.nav-in a.brand{ display:inline-flex; align-items:center; gap:9px; color:var(--ink);
  font-weight:800; font-size:19px; letter-spacing:-.03em; text-decoration:none; }
.nav-in .sp{ flex:1; }
.nav-in a.back{ font-size:14px; font-weight:500; text-decoration:none; color:var(--text-2); }
.nav-in a.back:hover{ color:var(--ink); }

.wrap{ max-width:820px; margin:0 auto; padding:44px 24px 80px; }
.kicker{ font-family:'JetBrains Mono',ui-monospace,monospace; font-size:11px; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase; color:var(--faint); }
h1{ font-family:Fraunces,Georgia,serif; font-weight:530; letter-spacing:-.025em;
  font-size:clamp(30px,4.4vw,44px); line-height:1.12; margin:10px 0 8px; }
.lead{ color:var(--text-2); font-size:17px; margin:0 0 6px; }
.date{ color:var(--faint); font-size:14px; margin:0 0 34px; }

section{ margin:0 0 30px; }
h2{ font-family:Fraunces,Georgia,serif; font-weight:530; letter-spacing:-.02em;
  font-size:22px; margin:0 0 10px; display:flex; align-items:baseline; gap:11px; }
h2 .n{ font-family:'JetBrains Mono',monospace; font-size:12px; color:var(--clay);
  font-weight:500; flex-shrink:0; }
p{ margin:0 0 11px; }
ul{ margin:0 0 11px; padding-left:22px; }
li{ margin-bottom:7px; }
.muted{ color:var(--text-2); }

.card{ background:var(--card); border:1px solid var(--line); border-radius:20px; padding:22px 24px; }
.req{ display:grid; grid-template-columns:190px 1fr; gap:10px 18px; }
.req dt{ color:var(--text-2); font-size:14px; }
.req dd{ margin:0; font-weight:600; }
@media (max-width:600px){ .req{ grid-template-columns:1fr; gap:2px 0; } .req dd{ margin-bottom:12px; } }

.foot{ border-top:1px solid var(--line); margin-top:44px; padding-top:22px;
  display:flex; flex-wrap:wrap; gap:8px 22px; font-size:14px; }
.foot a{ text-decoration:none; color:var(--text-2); }
.foot a:hover{ color:var(--ink); }
.foot .who{ width:100%; color:var(--faint); font-size:13px; margin-top:10px; }
