.site-nav { display: flex; gap: 32px; }
.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--accent); }

.footer-nav-link {
  color: var(--muted);
  text-decoration: none;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav-link:hover { color: var(--accent); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-logo { font-size: 22px; }
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 15, 17, 0.98);
  backdrop-filter: blur(12px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 0 24px;
}
.mobile-menu nav a {
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu nav a:first-child { border-top: 1px solid var(--border); }
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu .mobile-cta {
  margin-top: 32px;
  padding: 0 24px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mobile-menu .mobile-cta a {
  display: inline-block;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  font-size: 14px;
  padding: 12px 32px;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu .mobile-cta a:hover {
  background: var(--accent);
  color: #0e0f11;
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .burger-btn { display: flex; }
  .mobile-menu { display: flex; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-nav { gap: 16px; }
}

/* ── Cookie consent ── */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-consent--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent--hide {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.cookie-consent-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  background: var(--surface, #16181c);
  border: 1px solid var(--border, #2a2d35);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.cookie-consent-text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted, #a0aab4);
}
.cookie-consent-btn {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--accent, #f0c040);
  background: var(--accent, #f0c040);
  color: #0e0f11;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.cookie-consent-btn:hover {
  box-shadow: 0 10px 28px -10px rgba(240, 192, 64, 0.55);
  transform: translateY(-1px);
}
.cookie-consent-btn:focus-visible {
  outline: 2px solid var(--accent, #f0c040);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .cookie-consent { padding: 12px; }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
  }
  .cookie-consent-btn { width: 100%; }
}
