/* =====================
   Shared Navigation CSS
   ===================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.85em;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-logo:hover {
  color: #00E5D0;
  text-decoration: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72em;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.14em;
  transition: color 0.2s ease;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #00E5D0;
  text-decoration: none;
}

.nav-cta {
  font-family: 'Space Mono', 'Courier New', monospace;
  font-size: 0.72em;
  color: #000000;
  background: #00E5D0;
  border: none;
  padding: 8px 18px;
  text-decoration: none;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border-radius: 0;
  font-weight: 700;
}

.nav-cta:hover {
  background: #7ffff4;
  color: #000000;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0, 229, 208, 0.4);
}

/* Shared layout */
.right-column {
  width: 100%;
  flex: 1;
  padding: 40px;
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; height: 50px; }
  .nav-logo { font-size: 0.75em; }
  .nav-right { gap: 12px; }
  .nav-link { font-size: 0.62em; }
  .nav-cta { font-size: 0.62em; padding: 5px 10px; }
  .right-column { padding: 20px; }
}
