/* ══════════════════════════════════
   NAVIGATION — ONTO NOTHING
══════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(236, 238, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

/* Logo */
.nav-logo {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #16161A;
  text-decoration: none;
  text-transform: none;
}
.nav-logo:hover { color: #5F5FFF; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444450;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #16161A;
  background: rgba(95,95,255,0.08);
}
.nav-links a.active {
  color: #5F5FFF;
  background: rgba(95,95,255,0.1);
}

/* CTA button */
.nav-cta {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  background: #5F5FFF !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  transition: all 0.18s !important;
}
.nav-cta:hover {
  background: #4a4ae8 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(95,95,255,0.3);
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #16161A;
  border-radius: 2px;
  transition: all 0.25s;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  position: relative;
  z-index: 10;
  background: #13131A;
  color: rgba(255,255,255,0.55);
}

/* — Top section: 3 columns — */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px 40px;
  padding: 56px 24px 48px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-brand {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
}
.footer-desc {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-col-title {
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links a:hover { color: #fff; }

/* — Bottom section — */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-copy-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-copy {
  font-family: "Courier Prime", monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}
.footer-neiry-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px;
}
.footer-neiry-badge:hover { opacity: 0.85; }
.footer-neiry-badge .badge-label {
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-neiry-badge .badge-name {
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.footer-disclaimer {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.25);
}
.footer-warning {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.2);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(236,238,242,0.97);
    backdrop-filter: blur(16px);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  .nav-links.open a { width: 100%; font-size: 1rem; padding: 10px 12px; }
  .nav-cta { margin-left: 0 !important; }
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}
