
:root {
  --bg: #f4f1ea;
  --card: #fffefd;
  --ink: #20242f;
  --muted: #657084;
  --line: #ded8cd;
  --blue: #3155dc;
  --green: #1fa46a;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.62; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(1040px, calc(100% - 36px)); margin: 0 auto; }
.nav { background: rgba(244,241,234,.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; backdrop-filter: blur(12px); z-index: 5; }
.nav-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: #20242f; color: #fff; font-size: 11px; letter-spacing: .04em; }
.back { font-weight: 600; color: var(--muted); }
.legal { padding: 54px 0 70px; }
.legal .wrap { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: clamp(26px, 4vw, 54px); box-shadow: 0 22px 70px rgba(31,36,48,.08); }
.eyebrow { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.04; margin: 0 0 18px; letter-spacing: -.035em; }
h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; margin: 42px 0 14px; letter-spacing: -.02em; }
p { margin: 0 0 12px; }
.lead { font-size: 18px; color: var(--muted); max-width: 820px; margin-bottom: 24px; }
.meta { background: #f8f6f1; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 26px 0 34px; }
.meta p { margin-bottom: 6px; }
ul { margin: 10px 0 18px; padding-left: 22px; }
li { margin-bottom: 8px; }
code { background: #f1eee7; border: 1px solid var(--line); border-radius: 6px; padding: 1px 5px; }
.foot { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.links { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 640px) { .nav-inner { height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; } .legal { padding-top: 28px; } .legal .wrap { padding: 22px; border-radius: 16px; } }
