:root {
  --bg: #0a0a0a;
  --card: #1a1a1a;
  --stroke: #2a2a2a;
  --text: #ffffff;
  --muted: #b3b3b3;
  --muted-2: #7a7a7a;
  --gold: #f2b84b;
  --gold-grad: linear-gradient(135deg, #f7cf6e 0%, #eaa92f 100%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(600px 400px at 75% -5%, rgba(242,184,75,0.12), transparent 70%);
}
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav {
  max-width: 860px; margin: 0 auto; padding: 0 24px;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -0.02em; }
.brand:hover { text-decoration: none; }
.logo {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--gold-grad); display: grid; place-items: center;
  color: #1a1300; font-weight: 900; font-size: 20px;
  box-shadow: 0 6px 20px rgba(242,184,75,0.35);
}
.back { color: var(--muted); font-weight: 500; font-size: 15px; }
.back:hover { color: var(--text); text-decoration: none; }

main {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; padding: 60px 24px 100px;
}
.doc-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,184,75,0.12); color: var(--gold);
  border: 1px solid rgba(242,184,75,0.25);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 22px;
}
h1 { font-size: clamp(34px, 5vw, 50px); letter-spacing: -0.03em; font-weight: 800; margin-bottom: 12px; }
.updated { color: var(--muted-2); font-size: 15px; margin-bottom: 44px; }
h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  margin: 44px 0 14px; padding-top: 10px;
}
h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; color: #f0f0f0; }
p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
ul { color: var(--muted); font-size: 16px; margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 9px; }
strong { color: var(--text); font-weight: 600; }
.intro { color: var(--muted); font-size: 17px; }
hr { border: none; border-top: 1px solid var(--stroke); margin: 40px 0; }
.contact-card {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: 18px; padding: 24px 26px; margin-top: 14px;
}
.contact-card p { margin-bottom: 8px; }
.copyright { color: var(--muted-2); font-size: 14px; margin-top: 50px; }

footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05); padding: 34px 0; text-align: center;
}
footer .links { display: flex; gap: 24px; justify-content: center; margin-bottom: 14px; flex-wrap: wrap; }
footer .links a { color: var(--muted); font-size: 15px; }
footer .links a:hover { color: var(--gold); text-decoration: none; }
footer .cr { color: var(--muted-2); font-size: 14px; }
