@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #16181d;
  --soft: #5b606b;
  --paper: #f5f4ef;
  --white: #ffffff;
  --line: #e6e4db;
  --accent: #c7f23d;
  --accent-press: #b6e22b;
  --maxw: 760px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
.legal-top {
  background: var(--ink);
  color: #fff;
  padding: 22px clamp(20px, 5vw, 48px);
}
.legal-top .inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-top .back {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 14px;
  color: var(--accent); display: inline-flex; align-items: center; gap: 8px;
}
.legal-top .back:hover { text-decoration: underline; }
.legal-top .brand { font-size: 13px; color: #9aa0ad; }

main { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 48px) 90px; }
.doc-kicker {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.doc-kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent-press); display: inline-block; }
h1 {
  font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; font-size: clamp(28px, 5vw, 42px); margin-bottom: 14px; text-wrap: balance;
}
.doc-meta { color: var(--soft); font-size: 14.5px; margin-bottom: 38px; }
h2 {
  font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(20px, 3vw, 25px); margin: 40px 0 14px; padding-top: 28px; border-top: 1px solid var(--line);
}
h2:first-of-type { border-top: none; padding-top: 0; }
h3 { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 18px; margin: 24px 0 8px; }
p { margin-bottom: 14px; text-wrap: pretty; }
ul, ol { margin: 0 0 16px 0; padding-left: 22px; }
li { margin-bottom: 9px; }
.lead-box {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px; margin-bottom: 36px;
}
.lead-box p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }
a.inline { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.req-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px; margin-top: 24px;
}
.req-card dl { display: grid; grid-template-columns: 1fr; gap: 10px; }
.req-card dt { font-family: "Manrope", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--soft); }
.req-card dd { font-size: 16px; }
@media (min-width: 560px) {
  .req-card dl { grid-template-columns: 200px 1fr; align-items: baseline; gap: 14px 20px; }
}
.legal-foot {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px) 60px;
  color: var(--soft); font-size: 13.5px;
}
.legal-foot a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
