* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Satoshi', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #092222;
  color: #f2fafa;
  line-height: 1.7;
  min-height: 100vh;
  padding: 40px 24px 80px;
}
.wrap { max-width: 820px; margin: 0 auto; }

header.page-head {
  padding-bottom: 32px;
  border-bottom: 1px solid #1a3d36;
  margin-bottom: 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.brand {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 22px; font-weight: 600;
  background: linear-gradient(135deg, #88f7af, #57c396);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid #1a3d36;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: #c4ddd6;
  background: none; cursor: pointer;
  font-family: inherit;
}
.lang-toggle:hover { border-color: #88f7af; color: #88f7af; }
.lang-toggle #langCur { color: #88f7af; font-weight: 600; }

.eyebrow {
  display: inline-block;
  color: #88f7af;
  font-size: 12px; letter-spacing: 0.14em; font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.updated {
  color: #7a9d94;
  font-size: 13px;
  margin-bottom: 36px;
}
h2 {
  font-family: 'Clash Display', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0 14px;
  color: #88f7af;
}
h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f2fafa;
  margin: 22px 0 10px;
}
p {
  color: #c4ddd6;
  margin-bottom: 14px;
  font-size: 15px;
}
strong { color: #f2fafa; font-weight: 600; }
em { color: #d4e7e2; font-style: italic; }
a { color: #88f7af; text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #b8fbcd; }
ul, ol { color: #c4ddd6; padding-left: 22px; margin-bottom: 14px; }
ul li, ol li { margin-bottom: 6px; font-size: 15px; }

.callout {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 3px solid #88f7af;
  background: rgba(136, 247, 175, 0.05);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: #d4e7e2;
}

.lang-section { display: none; }
.lang-section.active { display: block; }

.legal-nav {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin: 48px 0 16px;
  padding-top: 28px;
  border-top: 1px solid #1a3d36;
  font-size: 13px;
}
.legal-nav a {
  color: #7a9d94;
  text-decoration: none;
}
.legal-nav a:hover { color: #88f7af; }
.legal-nav a.current { color: #88f7af; font-weight: 600; }

footer.page-foot {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #1a3d36;
  font-size: 13px;
  color: #7a9d94;
  line-height: 1.6;
}
footer.page-foot strong { color: #c4ddd6; }
footer.page-foot a { color: #c4ddd6; text-decoration: none; }
footer.page-foot a:hover { color: #88f7af; }
.addresses {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 14px;
}
@media (max-width: 600px) {
  .addresses { grid-template-columns: 1fr; }
  body { padding: 24px 16px 60px; }
}
