:root { --bg: #f4f1ec; --paper: #fff; --ink: #14171c; --ink-2: #454a52; --muted: #7a7f87; --line: #e3ded5; --accent: #ff5b1f; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.65 'Onest', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; }
.wrap { max-width: 860px; margin: 0 auto; padding: 24px 16px 64px; }
.top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14px; }
.top a { color: var(--ink); font-weight: 600; text-decoration: none; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .08em; }
.brand i { width: 22px; height: 22px; border: 3px solid var(--ink); position: relative; }
.brand i::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 9px; height: 9px; background: var(--accent); }
.doc { background: var(--paper); border-radius: 20px; border: 1px solid var(--line); padding: clamp(20px, 5vw, 52px); }
h1 { font-size: clamp(26px, 4vw, 36px); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 8px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.note { background: #fff4ec; border: 1px solid #ffd2bd; border-radius: 12px; padding: 12px 16px; font-size: 14px; color: var(--ink-2); margin-bottom: 24px; }
h2 { font-size: 20px; margin: 32px 0 10px; }
p, li { color: var(--ink-2); }
p { margin: 0 0 10px; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 6px; }
a { color: var(--accent); }
table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 8px 0 16px; }
th, td { text-align: left; padding: 10px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
th { color: var(--ink); }
.table-wrap { overflow-x: auto; }
.req { display: grid; grid-template-columns: max-content 1fr; gap: 6px 18px; font-size: 14px; }
.req dt { color: var(--muted); }
.req dd { margin: 0; }
.sign { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; font-size: 14px; }
.sign div { border-top: 1px solid var(--line); padding-top: 12px; }
.foot { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
@media (max-width: 560px) { .sign { grid-template-columns: 1fr; } }
@media print { body { background: #fff; } .top, .note, .foot { display: none; } .doc { border: 0; padding: 0; } }
