@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  background: #0e1014;
  color: #d8d4cc;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px 32px 48px;
}

.doc-title {
  font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f0e4;
}

.meta {
  font-size: 0.85rem;
  color: #8f9189;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #2a3038;
}

h2 {
  font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  letter-spacing: 0.03em;
  color: #c4a24a;
}

h3 {
  font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #e8e4dc;
}

p {
  margin: 0 0 14px;
  font-size: 0.97rem;
  color: #c8c4bc;
}

a {
  color: #c4a24a;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 162, 74, 0.35);
}

a:hover {
  color: #e8cc6a;
  border-bottom-color: #e8cc6a;
}

em, .note {
  color: #8f9189;
  font-style: italic;
}

.note {
  display: block;
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 3px solid #c4a24a;
  background: rgba(196, 162, 74, 0.08);
  border-radius: 0 8px 8px 0;
}

.note p { margin: 0; }
