footer.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  color: var(--fg-12);
  padding: 56px 0 28px;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer .foot-top { display: flex; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.site-footer .foot-brand { max-width: 340px; display: flex; flex-direction: column; gap: 14px; }
.site-footer .foot-logo { display: flex; align-items: center; gap: 12px; }
.site-footer .foot-logo img { width: 40px; height: 40px; display: block; border-radius: 11px; object-fit: cover; }
.site-footer .foot-brand .name { font-family: var(--head); font-size: 26px; font-weight: 700; letter-spacing: -1px; }
.site-footer .foot-brand .sub { font-size: 14px; line-height: 22px; color: var(--fg-11); }
.site-footer .foot-brand .access { display: flex; align-items: center; gap: 10px; margin-top: 4px; }
.site-footer .foot-brand .access .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.site-footer .foot-brand .access .text { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-11); text-transform: uppercase; }
.site-footer .foot-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.site-footer .foot-col { display: flex; flex-direction: column; gap: 10px; }
.site-footer .foot-col .h { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--green); margin-bottom: 2px; text-transform: uppercase; }
.site-footer .foot-col a { font-size: 14px; color: var(--fg-11); text-decoration: none; transition: color .2s; }
.site-footer .foot-col a:hover { color: var(--fg-12); }
.site-footer .foot-rule { height: 1px; background: var(--line); margin: 40px 0 0; }
.site-footer .foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--fg-10); text-transform: uppercase; }
.site-footer .foot-lang { min-width: 220px; }
.site-footer .foot-lang .lang-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
.site-footer .foot-lang .lang-grid a { font-size: 13px; line-height: 1.2; white-space: nowrap; }

nav.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header .inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 16px; }
.site-header .brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fg-12); text-decoration: none; }
.site-header .brand-mark { width: 32px; height: 32px; border-radius: 9px; display: block; object-fit: cover; }
.site-header .brand-word { font-family: var(--head); font-size: 22px; font-weight: 700; letter-spacing: -1px; white-space: nowrap; }
.site-header .brand .accent { color: var(--green-2); }
.site-header .links { display: flex; align-items: center; gap: 28px; }
.site-header .links a { color: var(--fg-11); font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.site-header .links a:hover { color: var(--fg-12); }
.site-header .header-actions { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.site-header .cta { display: inline-flex; align-items: center; justify-content: center; background: var(--green); border-radius: 999px; color: #000; font-size: 13px; font-weight: 700; min-height: 40px; padding: 0 20px; text-decoration: none; }
.site-header .cta:hover { background: var(--green-2); }
.site-header .cta.secondary { background: var(--bg-2); border: 1px solid var(--line-2); color: var(--fg-12); }
.site-header .cta.secondary:hover { background: var(--bg-1); border-color: rgba(0,0,0,0.22); }

@media (max-width: 860px) {
  .site-header .links { display: none; }
}

@media (max-width: 620px) {
  .site-header .header-actions { display: none; }
}