:root {
  --emerald: #FF6A00; --emerald-dk: #E05300;
  --ink: #222222; --ink-soft: #717171; --beige: #DDDDDD;
  --radius: 12px;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: #f7f7f7; color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.wrap { max-width: 820px; margin: 0 auto; padding-inline: 24px; width: 100%; }
.nav { background: rgba(255,255,255,.98); border-bottom: 1px solid var(--beige); position: sticky; top: 0; z-index: 10; }
.nav .wrap { max-width: 1200px; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo { font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 9px; text-decoration: none; }
.logo span { font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 1.45rem; line-height: 1; text-transform: lowercase; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; padding: 10px 20px; border-radius: var(--radius); text-decoration: none; background: var(--emerald); color: #fff; }
.btn:hover { background: var(--emerald-dk); }
.doc { background: #fff; border: 1px solid var(--beige); border-radius: 20px; padding: clamp(28px, 5vw, 56px); margin: 40px 0 64px; }
.doc-head { border-bottom: 1px solid var(--beige); padding-bottom: 24px; margin-bottom: 32px; }
.doc-head h1 { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.3rem); font-weight: 800; line-height: 1.2; }
.doc-head .updated { color: var(--ink-soft); font-size: .92rem; margin-top: 10px; }
.doc h2 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 800; margin: 36px 0 12px; scroll-margin-top: 90px; }
.doc h3 { font-size: 1.02rem; font-weight: 700; margin: 22px 0 8px; }
.doc p, .doc li { color: #3a3a3a; font-size: .98rem; }
.doc p { margin-bottom: 14px; }
.doc ul, .doc ol { margin: 0 0 16px 22px; }
.doc li { margin-bottom: 7px; }
.doc a { color: var(--emerald-dk); }
.doc strong { color: var(--ink); }
.toc { background: #faf8f6; border: 1px solid var(--beige); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 8px; }
.toc p { font-weight: 700; margin-bottom: 8px; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.toc ol { margin: 0 0 0 18px; }
.toc li { margin-bottom: 4px; font-size: .93rem; }
.callout { background: #fff6f0; border-left: 3px solid var(--emerald); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 18px 0; }
.callout p:last-child { margin-bottom: 0; }
table.data { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: .93rem; }
table.data th, table.data td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--beige); vertical-align: top; }
table.data th { background: #faf8f6; font-weight: 700; }
.foot { border-top: 1px solid var(--beige); margin-top: 40px; padding-top: 24px; color: var(--ink-soft); font-size: .9rem; }
.foot a { color: var(--emerald-dk); }
@media (max-width: 640px) { table.data, table.data tbody, table.data tr, table.data td, table.data th { display: block; } table.data th { border: none; } table.data td { border-bottom: none; padding-top: 0; } table.data tr { border-bottom: 1px solid var(--beige); padding: 8px 0; } }
